diff --git a/Cantera/Makefile.in b/Cantera/Makefile.in deleted file mode 100755 index 1d0500e66..000000000 --- a/Cantera/Makefile.in +++ /dev/null @@ -1,57 +0,0 @@ -#/bin/sh -############################################################### -# $Author: hkmoffa $ -# $Date: 2007/05/06 17:16:43 $ -# $Revision: 1.8 $ -# -# Copyright 2001 California Institute of Technology -# See file License.txt for licensing information -# -############################################################### - -build_f90=@BUILD_F90@ -build_python=@BUILD_PYTHON@ -build_matlab = @BUILD_MATLAB@ - -all: - cd src; @MAKE@ - cd cxx; @MAKE@ - cd clib/src; @MAKE@ -ifeq ($(build_f90),1) - cd fortran/src; @MAKE@ -endif - cd user; @MAKE@ - -clean: - cd src; @MAKE@ clean - cd cxx; @MAKE@ clean - cd clib/src; $(RM) .depends ; @MAKE@ clean - cd python; @MAKE@ clean -ifeq ($(build_f90),1) - cd fortran/src; $(RM) .depends ; @MAKE@ clean -endif - cd user; $(RM) .depends ; @MAKE@ clean - -depends: - cd src; @MAKE@ depends - cd cxx/src; @MAKE@ depends - cd clib/src; @MAKE@ depends -ifeq ($(build_f90),1) - cd fortran/src; @MAKE@ depends -endif -ifeq ($(build_matlab),1) - cd matlab; @MAKE@ depends -endif - cd user; @MAKE@ depends - -install: - cd src; @MAKE@ install - cd cxx/src; @MAKE@ install - cd clib/src; @MAKE@ install -ifeq ($(build_f90),1) - cd fortran/src; @MAKE@ install -endif - cd user; @MAKE@ install - -# end of file - diff --git a/Cantera/clib/src/Makefile.in b/Cantera/clib/src/Makefile.in deleted file mode 100755 index d42de7845..000000000 --- a/Cantera/clib/src/Makefile.in +++ /dev/null @@ -1,120 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2001 California Institute of Technology -# -############################################################### - - -.SUFFIXES : -.SUFFIXES : .cpp .d .o - -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -OBJS = ct.o Storage.o ctsurf.o ctrpath.o \ - ctreactor.o ctfunc.o ctxml.o ctonedim.o ctmultiphase.o -CLIB_H= Cabinet.h ctreactor.h clib_defs.h ctfunc.h \ - ctnum.h ctsurf.h ct.h ctrpath.h Storage.h \ - ctbdry.h ctonedim.h ctxml.h ctmultiphase.h ctstagn.h - -DEPENDS = $(OBJS:.o=.d) - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -shared_ctlib = @SHARED_CTLIB@ - -# the C++ compiler -CXX = @CXX@ - -# external libraries -EXT_LIBS = -lzeroD -loneD @LOCAL_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ -# ../../../lib -LIB_DEPS = $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libequil.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libzeroD.a \ - $(CANTERA_LIBDIR)/liboneD.a - -# the directory where Cantera include files may be found. -CXX_INCLUDES = -I../../src/base -I../../src/thermo -I../../src/kinetics -I../../src/transport -I../../src/numerics -I../../src/oneD -I../../src/zeroD -I../../src/equil -I../../src/converters @CXX_INCLUDES@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(CXX_INCLUDES) $(CXX_FLAGS) - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -LIB_NAME=lib@CT_SHARED_LIB@ - -ifeq ($(shared_ctlib),1) -CTLIB = @buildlib@/$(LIB_NAME)@SO@ -else -CTLIB = @buildlib@/$(LIB_NAME).a -endif - -all: $(CTLIB) .depends - -$(CTLIB): $(OBJS) $(LIB_DEPS) - $(RM) $(CTLIB) -ifeq ($(shared_ctlib),1) - $(PURIFY) $(CXX) -o $(CTLIB) $(OBJS) $(LCXX_FLAGS)\ - @SHARED@ $(LINK_OPTIONS) \ - $(EXT_LIBS) @LIBS@ $(FORT_LIBS) -else - @ARCHIVE@ $(CTLIB) $(OBJS) -ifeq ($(do_ranlib),1) - @RANLIB@ $(CTLIB) -endif -endif - -clean: - $(RM) $(OBJS) *.d $(CTLIB) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -install: - @INSTALL@ -d @ct_libdir@ - @INSTALL@ -c -m 644 $(CTLIB) @ct_libdir@ -ifeq ($(do_ranlib),1) -ifeq ($(shared_ctlib),0) - @RANLIB@ @ct_libdir@/$(LIB_NAME).a -endif -endif - - -win-install: - @INSTALL@ -c ../../../lib/clib.lib @prefix@/lib/cantera - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif diff --git a/Cantera/cxx/Makefile.in b/Cantera/cxx/Makefile.in deleted file mode 100644 index b142632e9..000000000 --- a/Cantera/cxx/Makefile.in +++ /dev/null @@ -1,57 +0,0 @@ -#/bin/sh -############################################################### -# $Author: hkmoffa $ -# $Date: 2009/04/04 03:27:43 $ -# $Revision: 1.14 $ -# -# Copyright 2001 California Institute of Technology -# See file License.txt for licensing information -# -############################################################### - -build_f90=@BUILD_F90@ -build_python=@BUILD_PYTHON@ - -INCDIR = ../../build/include/cantera -INSTALL_TSC = ../../../bin/install_tsc - -CXX_H = Cantera.h equilibrium.h IncompressibleSolid.h \ - kinetics.h onedim.h surface.h GRI30.h integrators.h \ - Metal.h PureFluid.h transport.h Edge.h \ - IdealGasMix.h Interface.h numerics.h \ - reactionpaths.h zerodim.h importPhase.h thermo.h \ - radiation.h spectra.h electrolyteThermo.h Cantera.mak Cantera_bt.mak - -all: - @(cd include ; \ - for lh in $(CXX_H) ; do \ - $(INSTALL_TSC) "$${lh}" "../"$(INCDIR) ; \ - done) - cd src; @MAKE@ -# cd demos; @MAKE@ - -clean: - @(for lh in $(CXX_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - cd src; $(RM) .depends ; @MAKE@ clean - cd demos; $(RM) .depends ; @MAKE@ clean - -depends: - cd src; @MAKE@ depends -# cd demos; @MAKE@ depends - -install: - cd src; @MAKE@ install - cd demos; @MAKE@ install - -demos: - cd demos; @MAKE@ - - -# end of file - diff --git a/Cantera/cxx/demos/Makefile.in b/Cantera/cxx/demos/Makefile.in deleted file mode 100644 index 15f25eb54..000000000 --- a/Cantera/cxx/demos/Makefile.in +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -all: - cd combustor; @MAKE@ - cd kinetics1; @MAKE@ - cd flamespeed; @MAKE@ - cd NASA_coeffs; @MAKE@ - -test: - cd combustor; @MAKE@ -s test - cd kinetics1; @MAKE@ -s test - cd NASA_coeffs; @MAKE@ -s test - cd flamespeed; @MAKE@ -s test - -install: - @INSTALL@ -d @ct_demodir@/cxx - @INSTALL@ -m ug+rw,o+r Makefile @ct_demodir@/cxx - cd combustor; @MAKE@ install - cd flamespeed; @MAKE@ install - cd kinetics1; @MAKE@ install - cd NASA_coeffs; @MAKE@ install - -depends: - cd combustor; @MAKE@ depends - cd kinetics1; @MAKE@ depends - cd flamespeed; @MAKE@ depends - cd NASA_coeffs; @MAKE@ depends - - -clean: - cd combustor; @MAKE@ clean - cd kinetics1; @MAKE@ clean - cd flamespeed; @MAKE@ clean - cd NASA_coeffs; @MAKE@ clean - - diff --git a/Cantera/cxx/demos/Makefile.win b/Cantera/cxx/demos/Makefile.win deleted file mode 100644 index 9186ccc85..000000000 --- a/Cantera/cxx/demos/Makefile.win +++ /dev/null @@ -1,22 +0,0 @@ -############################################################################ -# -# Makefile to run vc++ test programs under cygwin -# on the pc -# -############################################################################# - -all: - -test: - cd combustor; make -s test - cd kinetics1; make -s test - cd NASA_coeffs; make -s test - cd flamespeed; make -s test - -clean: - cd combustor; make clean - cd kinetics1; make clean - cd NASA_coeffs; make clean - cd flamespeed; make clean - - diff --git a/Cantera/cxx/demos/NASA_coeffs/Makefile.in b/Cantera/cxx/demos/NASA_coeffs/Makefile.in deleted file mode 100644 index 4038fa2b5..000000000 --- a/Cantera/cxx/demos/NASA_coeffs/Makefile.in +++ /dev/null @@ -1,118 +0,0 @@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# -.SUFFIXES : -.SUFFIXES : .cpp .d .o .d .h - - -# the name of the executable program to be created -PROG_NAME = NASA_coeffs - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = NASA_coeffs.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# -# True if we are in the source directory tree -srcdirtree=1 - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# Purify options -PURIFY=@PURIFY@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -ltpx -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = - -# Depends -ifeq ($srcdirtree, 1) - LOCAL_DEFNS = -DSRCDIRTREE -else - LOCAL_DEFNS = -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) - -# how to create a dependency file -.@CXX_EXT@.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) $*.cpp > $*.d - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -test: - @MAKE@ $(PROGRAM) - ./runtest - -INSTALL_DIR=@ct_demodir@/cxx/NASA_coeffs - -install: - @INSTALL@ -d $(INSTALL_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile.install $(INSTALL_DIR)/Makefile - @(for ihhh in *.cpp *blessed* ; do \ - @INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR) ; \ - echo "@INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR)" ; \ - done ) - @INSTALL@ runtest $(INSTALL_DIR) ; - - -depends: $(DEPENDS) - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -clean: - $(RM) $(OBJS) $(PROGRAM) .depends *.d - $(RM) ct2ctml.log diff* output_0.txt transport_log.xml \ - NASA_coeffs.csv - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/cxx/demos/NASA_coeffs/Makefile.install.in b/Cantera/cxx/demos/NASA_coeffs/Makefile.install.in deleted file mode 100644 index a912da213..000000000 --- a/Cantera/cxx/demos/NASA_coeffs/Makefile.install.in +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = NASA_coeffs - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = NASA_coeffs.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -############################################################################# -# These links are to Cantera's install space -CANTERA_INCROOT = @ct_incroot@ -# -# Bring in the Cantera includes through the .mak file -# -include $(CANTERA_INCROOT)/cantera/Cantera.mak - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ -# -# The directory where Cantera include files may be found. -# -INCLUDE_DIRS = -I../../src -I$(CANTERA_INCROOT) -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(INCLUDE_DIRS) -DUSE_VCSNONIDEAL -# -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ - -# How to compile C++ source files to object files -.cpp.o: - $(CXX) $(CXX_FLAGS) -c $< - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_CORE_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_TOTAL_LIBS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - diff --git a/Cantera/cxx/demos/NASA_coeffs/Makefile.win b/Cantera/cxx/demos/NASA_coeffs/Makefile.win deleted file mode 100644 index a81fabbc5..000000000 --- a/Cantera/cxx/demos/NASA_coeffs/Makefile.win +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -PROG_NAME=NASA_coeffs -EXE_EXT=.exe - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - diff --git a/Cantera/cxx/demos/combustor/Makefile.in b/Cantera/cxx/demos/combustor/Makefile.in deleted file mode 100644 index 1a4607055..000000000 --- a/Cantera/cxx/demos/combustor/Makefile.in +++ /dev/null @@ -1,117 +0,0 @@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -# the name of the executable program to be created -PROG_NAME = combustor - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = combustor.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# -# True if we are in the source directory tree -srcdirtree=1 - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# Purify options -PURIFY=@PURIFY@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -ltpx -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = - -# Depends -ifeq ($srcdirtree, 1) - LOCAL_DEFNS = -DSRCDIRTREE -else - LOCAL_DEFNS = -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) - -# how to create a dependency file -.@CXX_EXT@.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) $*.cpp > $*.d - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -test: - @MAKE@ $(PROGRAM) - ./runtest - -INSTALL_DIR=@ct_demodir@/cxx/combustor - -install: - @INSTALL@ -d $(INSTALL_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile.install $(INSTALL_DIR)/Makefile - @(for ihhh in *.cpp *blessed* ; do \ - @INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR) ; \ - echo "@INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR)" ; \ - done ) - @INSTALL@ runtest $(INSTALL_DIR) ; - - -depends: $(DEPENDS) - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -clean: - $(RM) $(OBJS) $(PROGRAM) .depends *.d - $(RM) ct2ctml.log diff* output_0.txt transport_log.xml \ - combustor_cxx.csv - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/cxx/demos/combustor/Makefile.install.in b/Cantera/cxx/demos/combustor/Makefile.install.in deleted file mode 100644 index da8cdbb96..000000000 --- a/Cantera/cxx/demos/combustor/Makefile.install.in +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = combustor - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = combustor.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -############################################################################# -# These links are to Cantera's install space -CANTERA_INCROOT = @ct_incroot@ -# -# Bring in the Cantera includes through the .mak file -# -include $(CANTERA_INCROOT)/cantera/Cantera.mak - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ -# -# The directory where Cantera include files may be found. -# -INCLUDE_DIRS = -I../../src -I$(CANTERA_INCROOT) -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(INCLUDE_DIRS) -DUSE_VCSNONIDEAL -# -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ - -# How to compile C++ source files to object files -.cpp.o: - $(CXX) $(CXX_FLAGS) -c $< - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_CORE_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_TOTAL_LIBS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - diff --git a/Cantera/cxx/demos/combustor/Makefile.win b/Cantera/cxx/demos/combustor/Makefile.win deleted file mode 100644 index 8c71c8e0e..000000000 --- a/Cantera/cxx/demos/combustor/Makefile.win +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -PROG_NAME=combustor -EXE_EXT=.exe - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - diff --git a/Cantera/cxx/demos/flamespeed/Makefile.in b/Cantera/cxx/demos/flamespeed/Makefile.in deleted file mode 100644 index 4d4bfc9bd..000000000 --- a/Cantera/cxx/demos/flamespeed/Makefile.in +++ /dev/null @@ -1,119 +0,0 @@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# -.SUFFIXES : -.SUFFIXES : .cpp .d .o .d .h - - -# the name of the executable program to be created -PROG_NAME = flamespeed - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = flamespeed.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# -# True if we are in the source directory tree -srcdirtree=1 - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# Purify options -PURIFY=@PURIFY@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -ltpx -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = - -# Depends -ifeq ($srcdirtree, 1) - LOCAL_DEFNS = -DSRCDIRTREE -else - LOCAL_DEFNS = -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) - -# how to create a dependency file -.@CXX_EXT@.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) $*.cpp > $*.d - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -test: - @MAKE@ $(PROGRAM) - ./runtest - -INSTALL_DIR=@ct_demodir@/cxx/flamespeed - -install: - @INSTALL@ -d $(INSTALL_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile.install $(INSTALL_DIR)/Makefile - @(for ihhh in *.cpp *blessed* ; do \ - @INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR) ; \ - echo "@INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR)" ; \ - done ) - @INSTALL@ runtest $(INSTALL_DIR) ; - @INSTALL@ phi_input.txt $(INSTALL_DIR) ; - - -depends: $(DEPENDS) - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -clean: - $(RM) $(OBJS) $(PROGRAM) .depends *.d - $(RM) ct2ctml.log diff* output_0.txt transport_log.xml \ - flamespeed.csv - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/cxx/demos/flamespeed/Makefile.install.in b/Cantera/cxx/demos/flamespeed/Makefile.install.in deleted file mode 100644 index 70b32bc5d..000000000 --- a/Cantera/cxx/demos/flamespeed/Makefile.install.in +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = flamespeed - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = flamespeed.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -############################################################################# -# These links are to Cantera's install space -CANTERA_INCROOT = @ct_incroot@ -# -# Bring in the Cantera includes through the .mak file -# -include $(CANTERA_INCROOT)/cantera/Cantera.mak - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ -# -# The directory where Cantera include files may be found. -# -INCLUDE_DIRS = -I../../src -I$(CANTERA_INCROOT) -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(INCLUDE_DIRS) -DUSE_VCSNONIDEAL -# -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ - -# How to compile C++ source files to object files -.cpp.o: - $(CXX) $(CXX_FLAGS) -c $< - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_CORE_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_TOTAL_LIBS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - diff --git a/Cantera/cxx/demos/flamespeed/Makefile.win b/Cantera/cxx/demos/flamespeed/Makefile.win deleted file mode 100644 index 8409fdd32..000000000 --- a/Cantera/cxx/demos/flamespeed/Makefile.win +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -PROG_NAME=flamespeed -EXE_EXT=.exe - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - diff --git a/Cantera/cxx/demos/kinetics1/Makefile.in b/Cantera/cxx/demos/kinetics1/Makefile.in deleted file mode 100644 index 336a2eb92..000000000 --- a/Cantera/cxx/demos/kinetics1/Makefile.in +++ /dev/null @@ -1,118 +0,0 @@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# -.SUFFIXES : -.SUFFIXES : .cpp .d .o .d .h - - -# the name of the executable program to be created -PROG_NAME = kinetics1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = kinetics1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# -# True if we are in the source directory tree -srcdirtree=1 - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# Purify options -PURIFY=@PURIFY@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -ltpx -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = - -# Depends -ifeq ($srcdirtree, 1) - LOCAL_DEFNS = -DSRCDIRTREE -else - LOCAL_DEFNS = -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) - -# how to create a dependency file -.@CXX_EXT@.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) $*.cpp > $*.d - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -test: - @MAKE@ $(PROGRAM) - ./runtest - -INSTALL_DIR=@ct_demodir@/cxx/kinetics1 - -install: - @INSTALL@ -d $(INSTALL_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile.install $(INSTALL_DIR)/Makefile - @(for ihhh in *.cpp *.h *blessed* ; do \ - @INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR) ; \ - echo "@INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR)" ; \ - done ) - @INSTALL@ runtest $(INSTALL_DIR) ; - - -depends: $(DEPENDS) - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -clean: - $(RM) $(OBJS) $(PROGRAM) .depends *.d - $(RM) ct2ctml.log diff* output_0.txt transport_log.xml \ - kinetics1.csv - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/cxx/demos/kinetics1/Makefile.install.in b/Cantera/cxx/demos/kinetics1/Makefile.install.in deleted file mode 100644 index d52bc9a2f..000000000 --- a/Cantera/cxx/demos/kinetics1/Makefile.install.in +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = kinetics1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = kinetics1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -############################################################################# -# These links are to Cantera's install space -CANTERA_INCROOT = @ct_incroot@ -# -# Bring in the Cantera includes through the .mak file -# -include $(CANTERA_INCROOT)/cantera/Cantera.mak - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ -# -# The directory where Cantera include files may be found. -# -INCLUDE_DIRS = -I../../src -I$(CANTERA_INCROOT) -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(INCLUDE_DIRS) -DUSE_VCSNONIDEAL -# -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ - -# How to compile C++ source files to object files -.cpp.o: - $(CXX) $(CXX_FLAGS) -c $< - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_CORE_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_TOTAL_LIBS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - diff --git a/Cantera/cxx/demos/kinetics1/Makefile.win b/Cantera/cxx/demos/kinetics1/Makefile.win deleted file mode 100644 index bdb1191d1..000000000 --- a/Cantera/cxx/demos/kinetics1/Makefile.win +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -PROG_NAME=kinetics1 -EXE_EXT=.exe - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - diff --git a/Cantera/cxx/demos/rankine/Makefile.in b/Cantera/cxx/demos/rankine/Makefile.in deleted file mode 100644 index 05d776af6..000000000 --- a/Cantera/cxx/demos/rankine/Makefile.in +++ /dev/null @@ -1,117 +0,0 @@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# -.SUFFIXES : -.SUFFIXES : .cpp .d .o .d .h - - -# the name of the executable program to be created -PROG_NAME = rankine - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = rankine.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# -# True if we are in the source directory tree -srcdirtree=1 - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# Purify options -PURIFY=@PURIFY@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -ltpx -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = - -# Depends -ifeq ($srcdirtree, 1) - LOCAL_DEFNS = -DSRCDIRTREE -else - LOCAL_DEFNS = -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) - -# how to create a dependency file -.@CXX_EXT@.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) $*.cpp > $*.d - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -test: - @MAKE@ $(PROGRAM) - ./runtest - -INSTALL_DIR=@ct_demodir@/cxx/rankine - -install: - @INSTALL@ -d $(INSTALL_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile.install $(INSTALL_DIR)/Makefile - @(for ihhh in *.cpp *blessed* ; do \ - @INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR) ; \ - echo "@INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR)" ; \ - done ) - @INSTALL@ runtest $(INSTALL_DIR) ; - - -depends: $(DEPENDS) - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -clean: - $(RM) $(OBJS) $(PROGRAM) .depends *.d - $(RM) ct2ctml.log diff* output_0.txt transport_log.xml - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/cxx/demos/rankine/Makefile.install.in b/Cantera/cxx/demos/rankine/Makefile.install.in deleted file mode 100644 index 7e155dd6e..000000000 --- a/Cantera/cxx/demos/rankine/Makefile.install.in +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = rankine - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = rankine.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -############################################################################# -# These links are to Cantera's install space -CANTERA_INCROOT = @ct_incroot@ -# -# Bring in the Cantera includes through the .mak file -# -include $(CANTERA_INCROOT)/cantera/Cantera.mak - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ -# -# The directory where Cantera include files may be found. -# -INCLUDE_DIRS = -I../../src -I$(CANTERA_INCROOT) -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(INCLUDE_DIRS) -DUSE_VCSNONIDEAL -# -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ - -# How to compile C++ source files to object files -.cpp.o: - $(CXX) $(CXX_FLAGS) -c $< - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_CORE_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_TOTAL_LIBS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - diff --git a/Cantera/cxx/demos/rankine/Makefile.win b/Cantera/cxx/demos/rankine/Makefile.win deleted file mode 100644 index 32f5cee69..000000000 --- a/Cantera/cxx/demos/rankine/Makefile.win +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -PROG_NAME=rankine -EXE_EXT=.exe - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: - ./runtest - -clean: - $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends - diff --git a/Cantera/cxx/include/Cantera.mak.in b/Cantera/cxx/include/Cantera.mak.in deleted file mode 100644 index 29d63639f..000000000 --- a/Cantera/cxx/include/Cantera.mak.in +++ /dev/null @@ -1,150 +0,0 @@ -####################################################################### -# Include Snipet for Makefiles -# -# To create Cantera C++ applications from the install environment -# include this file into your Makefile environment -# -# Main Variables: -# -# CANTERA_INCLUDES = Variable containing the include path -# -# -# CANTERA_LIBS = List of libraries to include on the link line -# -# CANTERA_LIBS_DEP = dependency line for Cantera libs -# -# -##################################################################### -# $Id: Cantera.mak.in,v 1.5 2009/01/09 23:26:41 hkmoffa Exp $ -# -# -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -# -in_CanteraBuildTree = 0 - -CANTERA_VERSION=@ctversion@ - -############################################################################### -# CANTERA CORE -############################################################################### -# -# The directory where Cantera include files may be found. -# Include files in application programs should start with: -# #include "cantera/thermo.h" -# #include "cantera/kernel/HMWSoln.h" -# -CANTERA_INCROOTDIR= @ct_incroot@ - -CANTERA_CORE_INCLUDES=-I$(CANTERA_INCROOTDIR) -# -# Library location -# -CANTERA_LIBSDIR= @ct_libdir@ - -# -# Required Cantera libraries -# -CANTERA_CORE_LIBS= -L$(CANTERA_LIBSDIR) @CANTERA_CORE_LIBS@ -lctcxx - -# -# Cantera Core Lib Dependencies -# -CANTERA_CORE_LIBS_DEP= @CANTERA_CORE_LIBS_DEP@ $(CANTERA_LIBSDIR)/libctcxx.a - -##################################################################### -# BOOST -#################################################################### -# -# Cantera Boost Include -# -CANTERA_BOOST_INCLUDES=@BOOST_INCLUDE@ -# -# Location of the boost library that Cantera linked against -# -CANTERA_BOOST_LIB_DIR=@BOOST_LIB_DIR@ -# -# Linkage extras for linking against boost -# -ifeq ("x$(CANTERA_BOOST_LIB_DIR)","x") -CANTERA_BOOST_LIBS= -else -CANTERA_BOOST_LIBS= -L$(CANTERA_BOOST_LIB_DIR) -l@BOOST_LIB@ -endif - -##################################################################### -# CVODE/SUNDIALS LINKAGE -#################################################################### -# -CANTERA_use_sundials = @use_sundials@ -# -# Includes for Sundials - none for cvode -# -CANTERA_CVODE_INCLUDE=@sundials_include@ -CANTERA_SUNDIALS_LIB_DIR=@sundials_lib_dir@ -# -# Link line for cvode and sundials -# -ifeq ($(CANTERA_use_sundials), 1) -CANTERA_CVODE_LIBS=-L$(CANTERA_SUNDIALS_LIB_DIR) @CVODE_LIBS@ -CANTERA_CVODE_LIBS_DEP=@sundials_lib_dep@ -else -CANTERA_CVODE_LIBS= -L$(CANTERA_LIBSDIR) -lcvode -CANTERA_CVODE_LIBS_DEP=$(CANTERA_LIBSDIR)/libcvode.a -endif -# -####################################################################### -# BLAS LAPACK LINKAGE -####################################################################### -# -CANTERA_build_lapack= @build_lapack@ -CANTERA_build_blas= @build_blas@ - -CANTERA_BLAS_LAPACK_DIR= @ct_libdir@ - -CANTERA_BLAS_LAPACK_LIBS = -L$(CANTERA_BLAS_LAPACK_DIR) @BLAS_LAPACK_LIBS@ -CANTERA_BLAS_LAPACK_LIBS_DEP= -# -####################################################################### -# CANTERA's F2C Linkage -####################################################################### -# -CANTERA_build_with_f2c= @build_with_f2c@ -CANTERA_build_f2c_lib= @build_f2c_lib@ - -ifeq ($(CANTERA_build_f2c_lib), 1) -CANTERA_F2C_LIBS= -L$(CANTERA_LIBSDIR) -lctf2c -else -CANTERA_F2C_LIBS= @F2C_SYSTEMLIB@ -endif -# -##################################################################### -# COMBINATIONS OF INCLUDES AND LIBS -#################################################################### -# -CANTERA_TOTAL_INCLUDES= $(CANTERA_CORE_INCLUDES) $(CANTERA_BOOST_INCLUDES) $(CANTERA_CVODE_INCLUDE) -# -# You can add this into the compilation environment to identify the version number -# -CANTERA_DEFINES = -DCANTERA_VERSION=@ctversion@ -# -# LIBS and LIBS should be the same ... -# -CANTERA_TOTAL_LIBS2 = -L$(CANTERA_LIBSDIR) @LOCAL_LIBS@ -# -CANTERA_TOTAL_LIBS= $(CANTERA_CORE_LIBS) $(CANTERA_BOOST_LIBS) \ - $(CANTERA_CVODE_LIBS) $(CANTERA_BLAS_LAPACK_LIBS) \ - $(CANTERA_F2C_LIBS) -# -CANTERA_TOTAL_LIBS_DEP= $(CANTERA_CORE_LIBS_DEP) \ - $(CANTERA_CVODE_LIBS_DEP) \ - $(CANTERA_BLAS_LAPACK_LIBS_DEP) -# -# -# Dependency Line -# -CANTERA_LIBS_DEP= @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -# -##################################################################### -# END -#################################################################### diff --git a/Cantera/cxx/include/Cantera_bt.mak.in b/Cantera/cxx/include/Cantera_bt.mak.in deleted file mode 100644 index b98df72c3..000000000 --- a/Cantera/cxx/include/Cantera_bt.mak.in +++ /dev/null @@ -1,137 +0,0 @@ -####################################################################### -# Include Snipet for Makefiles -# -# To create Cantera C++ applications from the build tree environment -# include this file into your Makefile environment -# -# Main Variables: -# -# CANTERA_INCLUDES = Variable containing the include path -# -# -# CANTERA_LIBS = List of libraries to include on the link line -# -# CANTERA_LIBS_DEP = dependency line for Cantera libs -# -# -##################################################################### -# $Id: Cantera_bt.mak.in,v 1.2 2008/01/21 21:17:52 hkmoffa Exp $ -# -# -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -# -in_CanteraBuildTree = 0 - -CANTERA_VERSION=@ctversion@ - -############################################################################### -# CANTERA CORE -############################################################################### -# -# The directory where Cantera include files may be found. -# Include files in application programs should start with: -# #include "cantera/thermo.h" -# #include "cantera/kernel/HMWSoln.h" -# -CANTERA_INCROOTDIR= @ct_incroot@ - -CANTERA_CORE_INCLUDES=-I$(CANTERA_INCROOTDIR) -# -# Library location -# -CANTERA_LIBSDIR= @ct_libdir@ - -# -# Required Cantera libraries -# -CANTERA_CORE_LIBS= -L$(CANTERA_LIBSDIR) @CANTERA_CORE_LIBS@ -lctcxx - -# -# Cantera Core Lib Dependencies -# -CANTERA_CORE_LIBS_DEP= @CANTERA_CORE_LIBS_DEP@ $(CANTERA_LIBSDIR)/libctcxx.a - -##################################################################### -# BOOST -#################################################################### -# -# Cantera Boost Include -# -CANTERA_BOOST_INCLUDES= @BOOST_INCLUDE@ -# -# Location of the boost library that Cantera linked against -# -CANTERA_BOOST_LIB_DIR= @BOOST_LIB_DIR@ -# -# Linkage extras for linking against boost -# -ifeq ("x$(CANTERA_BOOST_LIB_DIR)","x") -CANTERA_BOOST_LIBS= -else -CANTERA_BOOST_LIBS= -L$(CANTERA_BOOST_LIB_DIR) -l@BOOST_LIB@ -endif - -##################################################################### -# CVODE/SUNDIALS LINKAGE -#################################################################### -CANTERA_use_sundials = @use_sundials@ - -# -# Includes for Sundials - none for cvode -# -CANTERA_CVODE_INCLUDE=@sundials_include@ -# -# Link line for cvode and sundials -# -ifeq ($(CANTERA_user_sundials), 1) - -else -CANTERA_CVODE_LIBS= -L$(CANTERA_LIBSDIR) @CVODE_LIBS@ -endif - - -####################################################################### -# BLAS LAPACK LINKAGE -####################################################################### -CANTERA_build_lapack= @build_lapack@ -CANTERA_build_blas= @build_blas@ - -CANTERA_BLAS_LAPACK_DIR= @BLAS_LAPACK_DIR@ - -CANTERA_BLAS_LAPACK_LIBS = -L$(CANTERA_BLAS_LAPACK_DIR) @BLAS_LAPACK_LIBS@ - -####################################################################### -# CANTERA's F2C Linkage -####################################################################### -CANTERA_build_with_f2c= @build_with_f2c@ -CANTERA_build_f2c_lib= @build_f2c_lib@ - -ifeq ($(CANTERA_build_f2c_lib), 1) -CANTERA_F2C_LIBS= -L$(CANTERA_LIBSDIR) -lctf2c -else -CANTERA_F2C_LIBS= @F2C_SYSTEMLIB@ -endif - - -##################################################################### -# COMBINATIONS OF INCLUDES AND LIBS -#################################################################### - -CANTERA_TOTAL_INCLUDES= $(CANTERA_CORE_INCLUDES) $(CANTERA_BOOST_INCLUDES) $(CANTERA_CVODE_INCLUDE) -# -# You can add this into the compilation environment to identify the version number -# -CANTERA_DEFINES = -DCANTERA_VERSION=@ctversion@ - -CANTERA_TOTAL_LIBS2 = @LOCAL_LIB_DIRS@ @LOCAL_LIBS@ - -CANTERA_TOTAL_LIBS= $(CANTERA_CORE_LIBS) $(CANTERA_BOOST_LIBS) \ - $(CANTERA_CVODE_LIBS) $(CANTERA_BLAS_LAPACK_LIBS) \ - $(CANTERA_F2C_LIBS) - -# -# Dependency Line -# -CANTERA_LIBS_DEP= @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - diff --git a/Cantera/cxx/src/Makefile.in b/Cantera/cxx/src/Makefile.in deleted file mode 100644 index 01e78a4ac..000000000 --- a/Cantera/cxx/src/Makefile.in +++ /dev/null @@ -1,65 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2001 California Institute of Technology -# -############################################################### - - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -OBJS = importPhase.o - -DEPENDS = $(OBJS:.o=.d) - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - - -# the directory where Cantera include files may be found. -CXX_INCLUDES = -I../../src/base -I../../src/thermo @CXX_INCLUDES@ - -# how to compile C++ source files to object files -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_INCLUDES) $(CXX_FLAGS) - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -LIB_NAME=libctcxx -CXXLIB=@buildlib@/$(LIB_NAME).a - -all: .depends $(CXXLIB) - -$(CXXLIB): $(OBJS) - @ARCHIVE@ $(CXXLIB) $(OBJS) - -clean: - $(RM) $(OBJS) *.d $(CXXLIB) - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -install: - @INSTALL@ $(CXXLIB) @prefix@/lib/cantera - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif diff --git a/Cantera/fortran/f77demos/Makefile.in b/Cantera/fortran/f77demos/Makefile.in deleted file mode 100644 index d99410041..000000000 --- a/Cantera/fortran/f77demos/Makefile.in +++ /dev/null @@ -1,116 +0,0 @@ -#!/bin/sh - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h .f - - -# the object files to be linked together. -OBJS = demo_ftnlib.o isentropic.o ctlib.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - - -# the Fortran compiler -FORT = @F77@ - -# Fortran compile flags -FORT_FLAGS = @FFLAGS@ - -# Fortran libraries -FORT_LIBS = @LCXX_FLIBS@ @LCXX_END_LIBS@ @FLIBS@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# how to create a dependency file -.@CXX_EXT@.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $(LOCAL_DEFNS) $*.cpp > $*.d - - -# how to compile Fortran source files to object files -.@F77_EXT@.@OBJ_EXT@: - $(FORT) -c $< $(FORT_FLAGS) - -.f.d: - @echo "$*.o: $*.f" | cat > $*.d - - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: isentropic ctlib - -demo_ftnlib.o: @ctroot@/tools/templates/f77/demo_ftnlib.cpp - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -demo_ftnlib.d: @ctroot@/tools/templates/f77/demo_ftnlib.cpp - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $< > $*.d - -isentropic: isentropic.o demo_ftnlib.o - $(CXX) -o isentropic isentropic.o demo_ftnlib.o $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) - -ctlib: ctlib.o demo_ftnlib.o - $(CXX) -o ctlib ctlib.o demo_ftnlib.o $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) - -test: - @MAKE@ - ./runtest - -INSTALL_DIR=@ct_demodir@/f77 - -install: - @INSTALL@ -d $(INSTALL_DIR) - @INSTALL@ -c -m ug+rw,o+r f77demos.mak $(INSTALL_DIR)/Makefile - @INSTALL@ -c -m ug+rw,o+r @ctroot@/tools/templates/f77/demo_ftnlib.cpp $(INSTALL_DIR) - @(for ihhh in *.f *blessed* README.txt ; do \ - @INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR) ; \ - echo "@INSTALL@ $${ihhh} -m ug+rw,o+r $(INSTALL_DIR)" ; \ - done ) - @INSTALL@ runtest $(INSTALL_DIR) ; - - - - -clean: - $(RM) $(OBJS) isentropic ctlib *.d .depends \ - diff* output_0.txt output_1.txt gri30.xml ct2ctml.log \ - isentropic.dsp - -depends: - $(MAKE) .depends - - -.depends: $(DEPENDS) - cat *.d > .depends - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/fortran/f77demos/f77demos.mak.in b/Cantera/fortran/f77demos/f77demos.mak.in deleted file mode 100644 index 4777e788e..000000000 --- a/Cantera/fortran/f77demos/f77demos.mak.in +++ /dev/null @@ -1,98 +0,0 @@ -#!/bin/sh - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h .f - - -# the object files to be linked together. -OBJS = isentropic.o ctlib.o demo_ftnlib.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -#--------------------------------------------------------------------------- -# You probably don't need to edit anything below. - - -# the Fortran compiler -FORT = @F77@ - -# Fortran compile flags -FORT_FLAGS = @FFLAGS@ - -# Fortran libraries -FORT_LIBS = @LCXX_FLIBS@ @FLIBS@ @LCXX_END_LIBS@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@ct_libdir@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ct_incroot@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# how to compile Fortran source files to object files -.@F77_EXT@.@OBJ_EXT@: - $(FORT) -c $< $(FORT_FLAGS) - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: isentropic ctlib - -isentropic: isentropic.o demo_ftnlib.o - $(CXX) -o isentropic isentropic.o demo_ftnlib.o $(LCXX_FLAGS) $(CANTERA_LIBS) $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) - -ctlib: ctlib.o demo_ftnlib.o - $(CXX) -o ctlib ctlib.o demo_ftnlib.o $(LCXX_FLAGS) $(CANTERA_LIBS) $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) - -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -.f.d: - @echo "$*.o: $*.f" | cat > $*.d - - -clean: - $(RM) $(OBJS) isentropic ctlib *.d .depends \ - diff* output_0.txt output_1.txt gri30.xml ct2ctml.log \ - isentropic.dsp - -test: - @MAKE@ - ./runtest - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - - diff --git a/Cantera/fortran/src/Makefile.in b/Cantera/fortran/src/Makefile.in deleted file mode 100644 index 15f80f708..000000000 --- a/Cantera/fortran/src/Makefile.in +++ /dev/null @@ -1,124 +0,0 @@ -#/bin/sh -############################################################### -# $Author: hkmoffa $ -# $Date: 2009/04/04 03:23:32 $ -# $Revision: 1.21 $ -# -# Copyright 2001 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .f90 .mod - -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) -FORT_FLAGS = @F90BUILDFLAGS@ - -PURIFY=@PURIFY@ - -CXX_OBJS = fct.o fctxml.o - -BUILDINCDIR = ../../../build/include/cantera - -INTERFACE_MODULE_OBJS = fct_interface.o fctxml_interface.o - -USER_MODULE_OBJS = cantera_xml.o cantera_thermo.o cantera_kinetics.o \ - cantera_transport.o cantera_iface.o cantera_funcs.o cantera.o - -MODULES = $(INTERFACE_MODULE_OBJS:_interface.o=.mod) $(USER_MODULE_OBJS) -OBJS = $(CXX_OBJS) $(USER_MODULE_OBJS) - -DEPENDS = $(CXX_OBJS:.o=.d) -MODFILES = $(MODULES:.o=.mod) - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ - -# the Fortran 90/95 compiler -F90 = @F90@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -LIB_DEPS = $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libequil.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libzeroD.a \ - $(CANTERA_LIBDIR)/liboneD.a - -# the directory where module .mod files should be put -MODULE_DIR = @buildinc@/cantera - -CXX_INCLUDES = -I../../src/base -I../../src/thermo -I../../src/kinetics -I../../src/transport -I../../src/numerics -I../../src/oneD -I../../src/zeroD -I../../src/equil -I../../src/converters @CXX_INCLUDES@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @CXXFLAGS@ - -# how to compile C++ source files to object files -%.o : %.cpp - $(PURIFY) $(CXX) -c $< $(CXX_INCLUDES) $(CXX_FLAGS) - -%.o : %.f90 - $(PURIFY) $(F90) -c $< $(FORT_FLAGS) - -%.mod : %_interface.f90 - $(PURIFY) $(F90) -c $< $(FORT_FLAGS) - -%.mod : %.f90 - $(PURIFY) $(F90) -c $< $(FORT_FLAGS) - -LIB_NAME=libfct.a - -FTLIB = @buildlib@/$(LIB_NAME) - -all: $(FTLIB) - -$(FTLIB): $(MODFILES) $(USER_MODULE_OBJS) $(CXX_OBJS) $(LIB_DEPS) - $(RM) $(FTLIB) - @ARCHIVE@ $(FTLIB) $(OBJS) - -clean: - $(RM) $(OBJS) $(FTLIB) $(MODFILES) *~ - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - @(for lh in $(MODFILES); do \ - th=$(BUILDINCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - - -install: - @INSTALL@ -m ug+rw,o+r $(FTLIB) @ct_libdir@ - @INSTALL@ -m ug+rw,o+r $(MODFILES) @ct_incdir@ - -win-install: - @INSTALL@ -m ug+rw,o+r ../../../lib/fct.lib @ct_libdir@ - -%.d: %.cpp - @CXX_DEPENDS@ $(CXX_INCLUDES) $*.cpp > $*.d - -depends: - $(MAKE) .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -cantera_thermo.o: fct.mod cantera_xml.mod cantera_thermo.f90 -fct.mod: fct_interface.f90 -fctxml.mod: fctxml_interface.f90 - -ifeq ($(wildcard .depends), .depends) -include .depends -endif diff --git a/Cantera/matlab/Makefile.in b/Cantera/matlab/Makefile.in deleted file mode 100644 index fa4000812..000000000 --- a/Cantera/matlab/Makefile.in +++ /dev/null @@ -1,209 +0,0 @@ -#/bin/sh -############################################################### -# $Author: hkmoffa $ -# $Date: 2009/07/06 23:52:40 $ -# $Revision: 1.33 $ -# -# Copyright 2001-2004 California Institute of Technology -# See file License.txt for licensing information -# -############################################################### - -LIBS = @LOCAL_LIBS@ @LIBS@ @FLIBS@ -SRCS = cantera/private/ctmethods.cpp \ - cantera/private/ctfunctions.cpp \ - cantera/private/xmlmethods.cpp \ - cantera/private/phasemethods.cpp \ - cantera/private/thermomethods.cpp \ - cantera/private/mixturemethods.cpp \ - cantera/private/kineticsmethods.cpp \ - cantera/private/transportmethods.cpp \ - cantera/private/reactormethods.cpp \ - cantera/private/reactornetmethods.cpp \ - cantera/private/wallmethods.cpp \ - cantera/private/flowdevicemethods.cpp \ - cantera/private/onedimmethods.cpp \ - cantera/private/surfmethods.cpp \ - cantera/private/funcmethods.cpp - - -CANTERA_LIBDIR=@buildlib@ -os_is_win=@OS_IS_WIN@ - -ifeq ($(os_is_win),0) -LIB_DEPS = $(CANTERA_LIBDIR)/libcantera.a $(CANTERA_LIBDIR)/libzeroD.a \ - $(CANTERA_LIBDIR)/liboneD.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libclib.a \ - $(CANTERA_LIBDIR)/libconverters.a -else -LIB_DEPS = $(CANTERA_LIBDIR)/cantera.lib $(CANTERA_LIBDIR)/zeroD.lib \ - $(CANTERA_LIBDIR)/oneD.lib \ - $(CANTERA_LIBDIR)/transport.lib -endif - -DEPENDS = $(SRCS:.cpp=.d) - -.cpp.d: - @CXX_DEPENDS@ $(CXX_INCLUDES) $*.cpp > $*.d - -all: cantera/ctmethods.@mex_ext@ - -cantera/ctmethods.@mex_ext@: $(SRCS) $(LIBDEPS) Makefile -ifeq ($(os_is_win),0) - @PYTHON_CMD@ setup_matlab.py @prefix@/bin @buildlib@ @CT_SHARED_LIB@ '$(LIBS)' -else - @PYTHON_CMD@ setup_winmatlab.py -endif - (@MATLAB_CMD@ -nojvm -nosplash -r setup) - rm -f setup.m - -install: - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera-demos - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@ThermoPhase/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@Mixture/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@Kinetics/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@Transport/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@Interface/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@Solution - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@XML_Node/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@Reactor/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@ReactorNet/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@Wall/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@FlowDevice/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/@Func/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/1D - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/1D/@Domain1D/private - @INSTALL_abs@ -d @prefix@/matlab/toolbox/cantera/cantera/1D/@Stack/private - cd cantera; \ - ( for iddd in *.m ctmethods*; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera; done ) - cd cantera/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/private; done ) - cd cantera/examples; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera-demos; done ) - cd cantera/@ThermoPhase; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@ThermoPhase; done ) - cd cantera/@ThermoPhase/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@ThermoPhase/private; done ) - cd cantera/@Kinetics; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Kinetics; done ) - cd cantera/@Kinetics/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Kinetics/private; done ) - cd cantera/@Solution; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Solution; done ) - cd cantera/@Transport; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Transport; done ) - cd cantera/@Transport/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Transport/private; done ) - cd cantera/@Interface; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Interface; done ) - cd cantera/@Interface/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Interface/private; done ) - cd cantera/@Mixture; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Mixture; done ) - cd cantera/@Mixture/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Mixture/private; done ) - cd cantera/@XML_Node; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@XML_Node; done ) - cd cantera/@Reactor; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Reactor; done ) - cd cantera/@Reactor/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Reactor/private; done ) - cd cantera/@ReactorNet; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@ReactorNet; done ) - cd cantera/@ReactorNet/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@ReactorNet/private; done ) - cd cantera/@Wall; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Wall; done ) - cd cantera/@Wall/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Wall/private; done ) - cd cantera/@FlowDevice; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@FlowDevice; done ) - cd cantera/@FlowDevice/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@FlowDevice/private; done ) - cd cantera/@Func; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Func; done ) - cd cantera/@Func/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/@Func/private; done ) - cd cantera/1D; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/1D; done ) - cd cantera/1D/@Domain1D; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/1D/@Domain1D; done ) - cd cantera/1D/@Domain1D/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/1D/@Domain1D/private; done ) - cd cantera/1D/@Stack; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/1D/@Stack; done ) - cd cantera/1D/@Stack/private; \ - ( for iddd in *.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera/1D/@Stack/private; done ) - @INSTALL@ -d @prefix@/matlab/toolbox/cantera/cantera-tutorials - ( for iddd in cantera/tutorial/*.m ; do \ - @INSTALL_abs@ -c $${iddd} @prefix@/matlab/toolbox/cantera/cantera-tutorials; done ) - @INSTALL_abs@ -d @ct_demodir@/matlab - ( for iddd in cantera/examples/*.m ; do \ - @INSTALL_abs@ -c $${iddd} @ct_demodir@/matlab; done ) - @INSTALL@ -d @ct_tutdir@/matlab - ( for iddd in cantera/tutorial/*.m ; do \ - @INSTALL_abs@ -c $${iddd} @ct_tutdir@/matlab; done ) - chown -R @username@ @ct_demodir@/matlab - chown -R @username@ @ct_tutdir@/matlab - -clean: - rm -f cantera/private/*.o - rm -f cantera/ctmethods.@mex_ext@ - -#depends: $(DEPENDS) -# cat *.d > .depends -# $(RM) $(DEPENDS) - -depends: - echo "-" - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - -run-demo: - (cd @ct_dir@; matlab -nojvm -nosplash -r cantera_demos) - -test-demo: - (cd @ct_dir@/demos/matlab; matlab -nojvm -nosplash -r test_demos) - -# end of file - - - diff --git a/Cantera/matlab/setup_matlab.py.in b/Cantera/matlab/setup_matlab.py.in deleted file mode 100644 index 51c326558..000000000 --- a/Cantera/matlab/setup_matlab.py.in +++ /dev/null @@ -1,45 +0,0 @@ - -import sys - -###################################################################### -# System Notes: -# -# HKM solaris 64: -# On this system matlab is built with gcc. Therefore, you will have to -# strip the "-lCrun -lCstd -lfsu" library commands from libs. They -# will cause a link error. because they are only applicable to -# sun's native CC compiler. -# -###################################################################### - -bindir = '@ct_bindir@' -libdir = '-L@buildlib@ @LOCAL_LIB_DIRS@' -incdir = '@buildinc@' -libs = '-lclib @LOCAL_LIBS@ @LIBS@ @FLIBS@ @LCXX_END_LIBS@' - -f = open('setup.m','w') -f.write('cd cantera\nbuildux\nexit\n') -f.close() - -fb = open('cantera/buildux.m','w') -fb.write(""" -disp('building Cantera..'); -mex -cxx -v private/ctmethods.cpp private/ctfunctions.cpp ... - private/xmlmethods.cpp private/phasemethods.cpp ... - private/thermomethods.cpp private/kineticsmethods.cpp ... - private/mixturemethods.cpp ... - private/transportmethods.cpp private/reactormethods.cpp ... - private/reactornetmethods.cpp ... - private/wallmethods.cpp private/flowdevicemethods.cpp ... - private/funcmethods.cpp ... - private/onedimmethods.cpp private/surfmethods.cpp ... -"""+'-I'+incdir+' '+libdir+' '+libs+'\n'+"""disp('done.'); -""") -fb.close() - -fp = open('cantera/ctbin.m','w') -fp.write("""function path = ctbin -path = '"""+bindir+"""'; -""") -fp.close() - diff --git a/Cantera/matlab/setup_winmatlab.py b/Cantera/matlab/setup_winmatlab.py deleted file mode 100644 index 6207f9815..000000000 --- a/Cantera/matlab/setup_winmatlab.py +++ /dev/null @@ -1,93 +0,0 @@ -# -# python script to create a few key files for the windows build -# -# $Id: setup_winmatlab.py,v 1.29 2009/07/20 19:38:53 hkmoffa Exp $ -# -import sys -import os -import os.path - -# -# We are currently in the CanteraRoot/Cantera/matlab directory -CurrDir=os.getcwd() -# -# Get a list of path + 'matlab' -# -CantDir=os.path.split(CurrDir) -# -# Get a list of CanteraRoot + 'Cantera' -# -CantRootList=os.path.split(CantDir[0]) -# -# CanteraRoot will contain the absolute path name -# of the development root directory -# -CanteraRoot=CantRootList[0] - -bindir = CanteraRoot + '/bin' -libdir = CanteraRoot + '/build/lib/i686-pc-win32' -incdir = CanteraRoot + '/build/include' -dflibdir = '' - -bllibstr = "-lctlapack -lctblas" -bllibs = bllibstr.replace('-l',' ') -bllist = bllibs.split() - -bldir = libdir - -libs = ['clib'] -# -# setup.m file -# This is a utility matlab file that tells matlab to -# jump down a directory and execute build_cantera.m -# -f = open('setup.m','w') -f.write('cd cantera\nbuild_cantera\nexit\n') -f.close() -# -# cantera/build_Cantera.m -# -# Here we create the file cantera/build_Cantera.m -# This file contains the command which is executed from within matlab -# to build the cantera extension -# -fb = open('cantera/build_cantera.m','w') -fb.write(""" -disp('building Cantera..'); -mex -v -I"""+incdir+""" private/ctmethods.cpp private/ctfunctions.cpp ... - private/xmlmethods.cpp private/phasemethods.cpp ... - private/thermomethods.cpp private/kineticsmethods.cpp ... - private/transportmethods.cpp private/reactormethods.cpp ... - private/reactornetmethods.cpp ... - private/wallmethods.cpp private/flowdevicemethods.cpp ... - private/funcmethods.cpp ... - private/mixturemethods.cpp ... - private/onedimmethods.cpp private/surfmethods.cpp ... -""") -s = '' -for lib in libs: - s += ' '+libdir+'/'+lib+'.lib ...\n' -fb.write(s) -if bllist: - s = '' - for lib in bllist: - s += ' '+bldir+'/'+lib+'.lib ...\n' - fb.write(s) -# fb.write(' "'+dflibdir+'/dformd.lib" ...\n') -# fb.write(' "'+dflibdir+'/dfconsol.lib" ...\n') -# fb.write(' "'+dflibdir+'/dfport.lib" \n') -fb.write(' \n') -fb.close() -# -# Here we create the file ctbin.m. -# This is a matlab command which specified the ctbin directory -# within matlab. However we have a problem. This refers to the -# development computer, while we may be on the target computer. -# Don't know how to resolve this atm. -# -fp = open('cantera/ctbin.m','w') -fp.write("""function path = ctbin -path = '"""+bindir+"""'; -""") -fp.close() - diff --git a/Cantera/matlab/setup_winmatlab_d.py b/Cantera/matlab/setup_winmatlab_d.py deleted file mode 100644 index 0a82286eb..000000000 --- a/Cantera/matlab/setup_winmatlab_d.py +++ /dev/null @@ -1,94 +0,0 @@ -# -# python script to create a few key files for the windows build -# -# $Id: setup_winmatlab.py,v 1.29 2009/07/20 19:38:53 hkmoffa Exp $ -# -import sys -import os -import os.path - -# -# We are currently in the CanteraRoot/Cantera/matlab directory -CurrDir=os.getcwd() -# -# Get a list of path + 'matlab' -# -CantDir=os.path.split(CurrDir) -# -# Get a list of CanteraRoot + 'Cantera' -# -CantRootList=os.path.split(CantDir[0]) -# -# CanteraRoot will contain the absolute path name -# of the development root directory -# -CanteraRoot=CantRootList[0] - -bindir = CanteraRoot + '/bin' -libdir = CanteraRoot + '/build/lib/i686-pc-win32' -incdir = CanteraRoot + '/build/include' -dflibdir = '' - -bllibstr = "-lctlapack_d -lctblas_d" -bllibs = bllibstr.replace('-l',' ') -bllist = bllibs.split() - -bldir = libdir - -libs = ['clib_d'] -# -# setup.m file -# This is a utility matlab file that tells matlab to -# jump down a directory and execute build_cantera.m -# -f = open('setup.m','w') -# f.write('cd cantera\nbuild_cantera\nexit\n') -f.write('cd cantera\nbuild_cantera\n') -f.close() -# -# cantera/build_Cantera.m -# -# Here we create the file cantera/build_Cantera.m -# This file contains the command which is executed from within matlab -# to build the cantera extension -# -fb = open('cantera/build_cantera.m','w') -fb.write(""" -disp('building Cantera..'); -mex -v -I"""+incdir+""" private/ctmethods.cpp private/ctfunctions.cpp ... - private/xmlmethods.cpp private/phasemethods.cpp ... - private/thermomethods.cpp private/kineticsmethods.cpp ... - private/transportmethods.cpp private/reactormethods.cpp ... - private/reactornetmethods.cpp ... - private/wallmethods.cpp private/flowdevicemethods.cpp ... - private/funcmethods.cpp ... - private/mixturemethods.cpp ... - private/onedimmethods.cpp private/surfmethods.cpp ... -""") -s = '' -for lib in libs: - s += ' '+libdir+'/'+lib+'.lib ...\n' -fb.write(s) -if bllist: - s = '' - for lib in bllist: - s += ' '+bldir+'/'+lib+'.lib ...\n' - fb.write(s) -# fb.write(' "'+dflibdir+'/dformd.lib" ...\n') -# fb.write(' "'+dflibdir+'/dfconsol.lib" ...\n') -# fb.write(' "'+dflibdir+'/dfport.lib" \n') -fb.write(' \n') -fb.close() -# -# Here we create the file ctbin.m. -# This is a matlab command which specified the ctbin directory -# within matlab. However we have a problem. This refers to the -# development computer, while we may be on the target computer. -# Don't know how to resolve this atm. -# -fp = open('cantera/ctbin.m','w') -fp.write("""function path = ctbin -path = '"""+bindir+"""'; -""") -fp.close() - diff --git a/Cantera/matlab/setup_winmatlab_static.py b/Cantera/matlab/setup_winmatlab_static.py deleted file mode 100755 index a0c860588..000000000 --- a/Cantera/matlab/setup_winmatlab_static.py +++ /dev/null @@ -1,56 +0,0 @@ - -import sys - -bindir = 'C:/cygwin/usr/local/cantera/bin' -libdir = 'c:/vc_env/cant17/build/lib/i686-pc-win32' -incdir = 'c:/vc_env/cant17/build/include' -dflibdir = '' - -bllibstr = "-lctlapack -lctblas" -bllibs = bllibstr.replace('-l',' ') -bllist = bllibs.split() - -bldir = "c:/vc_env/cant17/build/lib/i686-pc-win32" - -libs = ['clib', 'oneD', 'zeroD', 'transport', 'equil', 'kinetics', 'thermo', 'numerics', 'converters', 'base', - 'ctcxx', 'tpx', 'NVEC_SER', 'CVODES', 'SUNDIALS_SHARED', 'ctmath', 'ctlapack', 'ctblas', 'ctf2c'] - -f = open('setup.m','w') -f.write('cd cantera\nbuild_cantera\nexit\n') -f.close() - -fb = open('cantera/build_cantera.m','w') -fb.write(""" -disp('building Cantera..'); -mex -v -I"""+incdir+""" private/ctmethods.cpp private/ctfunctions.cpp ... - private/xmlmethods.cpp private/phasemethods.cpp ... - private/thermomethods.cpp private/kineticsmethods.cpp ... - private/transportmethods.cpp private/reactormethods.cpp ... - private/reactornetmethods.cpp ... - private/wallmethods.cpp private/flowdevicemethods.cpp ... - private/funcmethods.cpp ... - private/mixturemethods.cpp ... - private/onedimmethods.cpp private/surfmethods.cpp ... -""") -s = '' -for lib in libs: - s += ' '+libdir+'/'+lib+'.lib ...\n' -fb.write(s) -if bllist: - s = '' - for lib in bllist: - s += ' '+bldir+'/'+lib+'.lib ...\n' - fb.write(s) -# fb.write(' "'+dflibdir+'/dformd.lib" ...\n') -# fb.write(' "'+dflibdir+'/dfconsol.lib" ...\n') -# fb.write(' "'+dflibdir+'/dfport.lib" \n') -fb.write(' \n') - -fb.close() - -fp = open('cantera/ctbin.m','w') -fp.write("""function path = ctbin -path = '"""+bindir+"""'; -""") -fp.close() - diff --git a/Cantera/matlab/setup_winmatlab_static.py.in b/Cantera/matlab/setup_winmatlab_static.py.in deleted file mode 100755 index a0c860588..000000000 --- a/Cantera/matlab/setup_winmatlab_static.py.in +++ /dev/null @@ -1,56 +0,0 @@ - -import sys - -bindir = 'C:/cygwin/usr/local/cantera/bin' -libdir = 'c:/vc_env/cant17/build/lib/i686-pc-win32' -incdir = 'c:/vc_env/cant17/build/include' -dflibdir = '' - -bllibstr = "-lctlapack -lctblas" -bllibs = bllibstr.replace('-l',' ') -bllist = bllibs.split() - -bldir = "c:/vc_env/cant17/build/lib/i686-pc-win32" - -libs = ['clib', 'oneD', 'zeroD', 'transport', 'equil', 'kinetics', 'thermo', 'numerics', 'converters', 'base', - 'ctcxx', 'tpx', 'NVEC_SER', 'CVODES', 'SUNDIALS_SHARED', 'ctmath', 'ctlapack', 'ctblas', 'ctf2c'] - -f = open('setup.m','w') -f.write('cd cantera\nbuild_cantera\nexit\n') -f.close() - -fb = open('cantera/build_cantera.m','w') -fb.write(""" -disp('building Cantera..'); -mex -v -I"""+incdir+""" private/ctmethods.cpp private/ctfunctions.cpp ... - private/xmlmethods.cpp private/phasemethods.cpp ... - private/thermomethods.cpp private/kineticsmethods.cpp ... - private/transportmethods.cpp private/reactormethods.cpp ... - private/reactornetmethods.cpp ... - private/wallmethods.cpp private/flowdevicemethods.cpp ... - private/funcmethods.cpp ... - private/mixturemethods.cpp ... - private/onedimmethods.cpp private/surfmethods.cpp ... -""") -s = '' -for lib in libs: - s += ' '+libdir+'/'+lib+'.lib ...\n' -fb.write(s) -if bllist: - s = '' - for lib in bllist: - s += ' '+bldir+'/'+lib+'.lib ...\n' - fb.write(s) -# fb.write(' "'+dflibdir+'/dformd.lib" ...\n') -# fb.write(' "'+dflibdir+'/dfconsol.lib" ...\n') -# fb.write(' "'+dflibdir+'/dfport.lib" \n') -fb.write(' \n') - -fb.close() - -fp = open('cantera/ctbin.m','w') -fp.write("""function path = ctbin -path = '"""+bindir+"""'; -""") -fp.close() - diff --git a/Cantera/python/Makefile.in b/Cantera/python/Makefile.in deleted file mode 100755 index bec87b2dc..000000000 --- a/Cantera/python/Makefile.in +++ /dev/null @@ -1,108 +0,0 @@ -#/bin/sh -############################################################### -# $Author: hkmoffa $ -# $Date: 2009/04/19 21:11:51 $ -# $Revision: 1.31 $ -# -# Copyright 2001 California Institute of Technology -# See file License.txt for licensing information -# -############################################################### - -have_python_site_package_topdir=@local_python_inst@ -python_site_package_topdir=@python_prefix@ - -CANTERA_LIBDIR= @buildlib@ -LIB_DEPS = @LOCAL_LIBS_DEP@ - -WIN_LIB_DEPS = $(CANTERA_LIBDIR)/cantera.lib $(CANTERA_LIBDIR)/zeroD.lib \ - $(CANTERA_LIBDIR)/oneD.lib \ - $(CANTERA_LIBDIR)/transport.lib -SRCS = src/ctphase_methods.cpp \ - src/ctthermo_methods.cpp \ - src/ctkinetics_methods.cpp \ - src/cttransport_methods.cpp \ - src/ctxml_methods.cpp \ - src/ctfuncs.cpp \ - src/ctsurf_methods.cpp \ - src/ctbndry_methods.cpp \ - src/ctrpath_methods.cpp \ - src/ctreactor_methods.cpp \ - src/ctfunc_methods.cpp \ - src/ctonedim_methods.cpp \ - src/methods.h - -os_is_win = @OS_IS_WIN@ -use_clib_dll = @USE_CLIB_DLL@ - -#LOCAL_DEFS=-DDEBUG_MODE -PIC_FLAG=@PIC@ - -CXX_FLAGS= @CXXFLAGS@ $(LOCAL_DEFS) $(PIC_FLAG) - -all: _build - -win: _winbuild - -# -# HKM -> Python seems to want to compile C++ code with the CC compiler. -# The fix is to assign the CC compiler to the CXX compiler. -# the double quotes are needed if the CXX variable is multi-token. -# -_build: $(SRCS) $(LIB_DEPS) Makefile setup.py - touch src/pycantera.cpp - /bin/rm -f _build - (CXX="@CXX@"; export CXX; CC="@CXX@"; export CC; CFLAGS="$(CXX_FLAGS)"; export CFLAGS; PURIFY="@PURIFY@"; export PURIFY; @PYTHON_CMD@ setup.py build) - echo 'ok' > _build - -# -# HKM -> If clib is built as a dll, it needs to be copied by hand to the -# site package directory. -# -ifeq ($(use_clib_dll), 1) -CLIB_DLL=../../build/lib/i686-pc-win32/clib.dll -CLIB_EXP=../../build/lib/i686-pc-win32/clib.exp -else -CLIB_DLL= -CLIB_EXP= -endif - -_winbuild: $(SRCS) $(WIN_LIB_DEPS) $(CLIB_DLL) - touch src/pycantera.cpp - (@PYTHON_CMD@ setup.py build) -ifeq ($(use_clib_dll), 1) -ifeq ($(have_python_site_package_topdir), 1) - (@INSTALL@ -m 755 $(CLIB_DLL) $(CLIB_EXP) \ - $(python_site_package_topdir)/lib/site-packages/Cantera) -endif -endif - echo 'ok' > _winbuild - -minbuild: - (@PYTHON_CMD@ setup.py build) - -install: -ifeq (@local_python_inst@,1) - (@PYTHON_CMD@ setup.py install --prefix="@python_win_prefix@") -else - (@PYTHON_CMD@ setup.py install) -endif - -clean: - @PYTHON_CMD@ setup.py clean - rm -f _build; rm -f _winbuild - (if test -d build ; then cd build; rm -fR * ; fi) - cd src; rm -f *.o - -depends: - echo '-' - -test: - cd examples; @PYTHON_CMD@ reactor1.py &> reactor1.out - cd examples; @PYTHON_CMD@ flame1.py &> flame1.out - cd examples; @PYTHON_CMD@ diamond.py &> diamond.out - cd examples; @PYTHON_CMD@ critProperties.py &> critProperties.out - -# end of file - - diff --git a/Cantera/python/examples/Makefile.in b/Cantera/python/examples/Makefile.in deleted file mode 100644 index 7d75e7a45..000000000 --- a/Cantera/python/examples/Makefile.in +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \ - misc reactors surface_chemistry transport fuel_cells -MAKE = @MAKE@ -all: - @(for d in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${d}..."; \ - (cd $${d}; $(MAKE)) ; \ - done) - -run: - @(for d in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${d}..."; \ - (cd $${d}; $(MAKE) run) ; \ - done) - -test: - @(for d in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${d}..."; \ - (cd $${d}; $(MAKE) test) ; \ - done) - -install: - @INSTALL@ -d @ct_demodir@/python - @INSTALL@ -c -m ug+rw,o+r Makefile @ct_demodir@/python - @INSTALL@ -c -m ug+rw,o+r run_examples.py @ct_demodir@/python - @(for d in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${d}..."; \ - (cd $${d}; $(MAKE) install) ; \ - done) - - -clean: - @(for dd in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${dd}..."; \ - (cd $${dd}; $(MAKE) -i clean; cd ..) ; \ - done) - -# end of file - - diff --git a/Cantera/python/examples/Makefile.win b/Cantera/python/examples/Makefile.win deleted file mode 100644 index 5bc5c0079..000000000 --- a/Cantera/python/examples/Makefile.win +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh - -PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \ - misc reactors surface_chemistry transport fuel_cells -MAKE = make -all: - @(for d in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${d}..."; \ - (cd $${d}; $(MAKE)) ; \ - done) - -run: - @(for d in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${d}..."; \ - (cd $${d}; $(MAKE) run) ; \ - done) - -test: - @(for d in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${d}..."; \ - (cd $${d}; $(MAKE) test) ; \ - done) - - -clean: - @(for dd in $(PY_DEMO_DIRS) ; do \ - echo "entering directory $${dd}..."; \ - (cd $${dd}; $(MAKE) -i clean; cd ..) ; \ - done) - -# end of file - - diff --git a/Cantera/python/examples/equilibrium/Makefile.in b/Cantera/python/examples/equilibrium/Makefile.in deleted file mode 100644 index 44a478a40..000000000 --- a/Cantera/python/examples/equilibrium/Makefile.in +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/equilibrium - -PY_DEMOS = simple_test stoich_flame adiabatic_flame multiphase_plasma -MAKE = @MAKE@ - -all: - $(MAKE) run - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - cd "$${py}"; \ - $(MAKE) run ; \ - cd .. ; \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py} test"; \ - cd "$${py}"; \ - $(MAKE) test ; \ - cd .. ; \ - done) - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r plotting.py $(INST_DIR) - @(for d in $(PY_DEMOS) ; do \ - echo "entering directory $${d}..."; \ - (cd $${d}; $(MAKE) install) ; \ - done) - - -clean: - @(for py in $(PY_DEMOS) ; do \ - cd "$${py}"; \ - $(MAKE) clean ; \ - cd .. ; \ - done) - -# end of file - diff --git a/Cantera/python/examples/equilibrium/Makefile.win b/Cantera/python/examples/equilibrium/Makefile.win deleted file mode 100644 index b0c1002e0..000000000 --- a/Cantera/python/examples/equilibrium/Makefile.win +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh - - -PY_DEMOS = simple_test stoich_flame adiabatic_flame multiphase_plasma -MAKE = make - -all: - $(MAKE) run - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - cd "$${py}"; \ - $(MAKE) run ; \ - cd .. ; \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py} test"; \ - cd "$${py}"; \ - $(MAKE) test ; \ - cd .. ; \ - done) - - -clean: - @(for py in $(PY_DEMOS) ; do \ - cd "$${py}"; \ - $(MAKE) clean ; \ - cd .. ; \ - done) - -# end of file - diff --git a/Cantera/python/examples/equilibrium/adiabatic_flame/Makefile.in b/Cantera/python/examples/equilibrium/adiabatic_flame/Makefile.in deleted file mode 100644 index c60fa97ef..000000000 --- a/Cantera/python/examples/equilibrium/adiabatic_flame/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/equilibrium/adiabatic_flame - - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) adiabatic.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r adiabatic.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r adiabatic_blessed_0.csv $(INST_DIR) - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/equilibrium/adiabatic_flame/Makefile.win b/Cantera/python/examples/equilibrium/adiabatic_flame/Makefile.win deleted file mode 100644 index 262335669..000000000 --- a/Cantera/python/examples/equilibrium/adiabatic_flame/Makefile.win +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/equilibrium/adiabatic_flame - - -run: - $(PYTHON_CMD) adiabatic.py - -test: - ./runtest - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/equilibrium/multiphase_plasma/Makefile.in b/Cantera/python/examples/equilibrium/multiphase_plasma/Makefile.in deleted file mode 100644 index 504689591..000000000 --- a/Cantera/python/examples/equilibrium/multiphase_plasma/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/equilibrium/multiphase_plasma - - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) multiphase_plasma.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r multiphase_plasma.py $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r equil_koh_blessed_0.csv $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/equilibrium/multiphase_plasma/Makefile.win b/Cantera/python/examples/equilibrium/multiphase_plasma/Makefile.win deleted file mode 100644 index 67e51e147..000000000 --- a/Cantera/python/examples/equilibrium/multiphase_plasma/Makefile.win +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -run: - $(PYTHON_CMD) multiphase_plasma.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/equilibrium/simple_test/Makefile.in b/Cantera/python/examples/equilibrium/simple_test/Makefile.in deleted file mode 100644 index faffa5a3b..000000000 --- a/Cantera/python/examples/equilibrium/simple_test/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/equilibrium/simple_test - -PYTHON_CMD = @PYTHON_CMD@ -all: - -run: - $(PYTHON_CMD) simple.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r simple.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - - -clean: - rm -f *.log *.csv *.xml - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/equilibrium/simple_test/Makefile.win b/Cantera/python/examples/equilibrium/simple_test/Makefile.win deleted file mode 100644 index 8cd1a84ba..000000000 --- a/Cantera/python/examples/equilibrium/simple_test/Makefile.win +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - - -all: - -run: - $(PYTHON_CMD) simple.py - -test: - ./runtest - - -clean: - rm -f *.log *.csv *.xml - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/equilibrium/stoich_flame/Makefile.in b/Cantera/python/examples/equilibrium/stoich_flame/Makefile.in deleted file mode 100644 index 99cae4d16..000000000 --- a/Cantera/python/examples/equilibrium/stoich_flame/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/equilibrium/stoich_flame - - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) stoich.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r stoich.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - - -clean: - rm -f *.log *.csv *.xml - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/equilibrium/stoich_flame/Makefile.win b/Cantera/python/examples/equilibrium/stoich_flame/Makefile.win deleted file mode 100644 index c3ed48ca5..000000000 --- a/Cantera/python/examples/equilibrium/stoich_flame/Makefile.win +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - - - -run: - $(PYTHON_CMD) stoich.py - -test: - ./runtest - - -clean: - rm -f *.log *.csv *.xml - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/Makefile.in b/Cantera/python/examples/flames/Makefile.in deleted file mode 100644 index 81be219df..000000000 --- a/Cantera/python/examples/flames/Makefile.in +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/flames - -PY_DEMOS = flame1 flame2 stflame1 npflame1 free_h2_air \ - adiabatic_flame flame_fixed_T -PYTHON_CMD = @PYTHON_CMD@ - -all: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; @MAKE@ ) \ - done) - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; @MAKE@ run ) \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; @MAKE@ test ) \ - done) - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; @MAKE@ install ) \ - done) - - -clean: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; @MAKE@ clean ) \ - done) - - -# end of file - diff --git a/Cantera/python/examples/flames/Makefile.win b/Cantera/python/examples/flames/Makefile.win deleted file mode 100644 index da6398e61..000000000 --- a/Cantera/python/examples/flames/Makefile.win +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - - -PY_DEMOS = flame1 flame2 stflame1 npflame1 free_h2_air \ - adiabatic_flame flame_fixed_T - -all: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; make) \ - done) - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; make run ) \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; make test ) \ - done) - - -clean: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; make clean ) \ - done) - - -# end of file - diff --git a/Cantera/python/examples/flames/adiabatic_flame/Makefile.in b/Cantera/python/examples/flames/adiabatic_flame/Makefile.in deleted file mode 100644 index 138ad0963..000000000 --- a/Cantera/python/examples/flames/adiabatic_flame/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/flames/adiabatic_flame - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) adiabatic_flame.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @@INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r adiabatic_flame.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r adiabatic_flame_blessed_0.csv $(INST_DIR) - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/adiabatic_flame/Makefile.win b/Cantera/python/examples/flames/adiabatic_flame/Makefile.win deleted file mode 100644 index cbda2e80e..000000000 --- a/Cantera/python/examples/flames/adiabatic_flame/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -run: - $(PYTHON_CMD) adiabatic_flame.py - -test: - ./runtest - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/flame1/Makefile.in b/Cantera/python/examples/flames/flame1/Makefile.in deleted file mode 100644 index 2830f3830..000000000 --- a/Cantera/python/examples/flames/flame1/Makefile.in +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/flames/flame1 - - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) catcomb.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r flame1.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r flame1_blessed_0.csv $(INST_DIR) - - - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/flame1/Makefile.win b/Cantera/python/examples/flames/flame1/Makefile.win deleted file mode 100644 index 4f29d36bf..000000000 --- a/Cantera/python/examples/flames/flame1/Makefile.win +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -run: - $(PYTHON_CMD) catcomb.py - -test: - ./runtest - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/flame2/Makefile.in b/Cantera/python/examples/flames/flame2/Makefile.in deleted file mode 100644 index c18a27d1e..000000000 --- a/Cantera/python/examples/flames/flame2/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/flames/flame2 - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) flame2.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r flame2.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r flame2_blessed_0.csv $(INST_DIR) - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/flame2/Makefile.win b/Cantera/python/examples/flames/flame2/Makefile.win deleted file mode 100644 index 9a1c75587..000000000 --- a/Cantera/python/examples/flames/flame2/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) flame2.py - -test: - ./runtest - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/flame_fixed_T/Makefile.in b/Cantera/python/examples/flames/flame_fixed_T/Makefile.in deleted file mode 100644 index cabc8cd07..000000000 --- a/Cantera/python/examples/flames/flame_fixed_T/Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/flames/flame_fixed_T - - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) flame_fixed_T.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r flame_fixed_T.py $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r tdata.dat $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r flame_fixed_T_blessed_0.csv $(INST_DIR) - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/flame_fixed_T/Makefile.win b/Cantera/python/examples/flames/flame_fixed_T/Makefile.win deleted file mode 100644 index b8876ebea..000000000 --- a/Cantera/python/examples/flames/flame_fixed_T/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -run: - $(PYTHON_CMD) flame_fixed_T.py - -test: - ./runtest - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/free_h2_air/Makefile.in b/Cantera/python/examples/flames/free_h2_air/Makefile.in deleted file mode 100644 index e76d1b671..000000000 --- a/Cantera/python/examples/flames/free_h2_air/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/flames/free_h2_air - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) free_h2_air.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r free_h2_air.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r freeflame1_blessed_0.csv $(INST_DIR) - -clean: - rm -f *.log output_0.txt freeflame1.csv freeflame1.xml - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/free_h2_air/Makefile.win b/Cantera/python/examples/flames/free_h2_air/Makefile.win deleted file mode 100644 index 2c8661e52..000000000 --- a/Cantera/python/examples/flames/free_h2_air/Makefile.win +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) free_h2_air.py - -test: - ./runtest - - -clean: - rm -f *.log output_0.txt freeflame1.csv freeflame1.xml - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/npflame1/Makefile.in b/Cantera/python/examples/flames/npflame1/Makefile.in deleted file mode 100644 index 555b7546c..000000000 --- a/Cantera/python/examples/flames/npflame1/Makefile.in +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/flames/npflame1 - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) npflame1.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r npflame1.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r npflame1_blessed_0.csv $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/npflame1/Makefile.win b/Cantera/python/examples/flames/npflame1/Makefile.win deleted file mode 100644 index c5905aa03..000000000 --- a/Cantera/python/examples/flames/npflame1/Makefile.win +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -run: - $(PYTHON_CMD) npflame1.py - -test: - ./runtest - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/stflame1/Makefile.in b/Cantera/python/examples/flames/stflame1/Makefile.in deleted file mode 100644 index 245033e39..000000000 --- a/Cantera/python/examples/flames/stflame1/Makefile.in +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/flames/stflame1 - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) stflame1.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r stflame1.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r stflame1_1_blessed_0.csv $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/flames/stflame1/Makefile.win b/Cantera/python/examples/flames/stflame1/Makefile.win deleted file mode 100644 index da96f7576..000000000 --- a/Cantera/python/examples/flames/stflame1/Makefile.win +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) stflame1.py - -test: - ./runtest - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/fuel_cells/Makefile.in b/Cantera/python/examples/fuel_cells/Makefile.in deleted file mode 100644 index 7ef05807f..000000000 --- a/Cantera/python/examples/fuel_cells/Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/fuel_cells - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) sofc.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r sofc.py $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r sofc.cti $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r sofc_blessed_0.csv $(INST_DIR) - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/fuel_cells/Makefile.win b/Cantera/python/examples/fuel_cells/Makefile.win deleted file mode 100644 index 6761a80b2..000000000 --- a/Cantera/python/examples/fuel_cells/Makefile.win +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) sofc.py - -test: - ./runtest - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/gasdynamics/Makefile.in b/Cantera/python/examples/gasdynamics/Makefile.in deleted file mode 100644 index eb0c6c0b8..000000000 --- a/Cantera/python/examples/gasdynamics/Makefile.in +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/gasdynamics - -PY_DEMOS = isentropic soundSpeed - - -all: - @(for py in $(PY_DEMOS) ; do \ - (cd $${py} ; @MAKE@ ) \ - done) - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; @MAKE@ run ) \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py}..."; \ - (cd $${py} ; @MAKE@ test ) \ - done) - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @(for py in $(PY_DEMOS) ; do \ - echo "install $${py}..."; \ - (cd $${py} ; @MAKE@ install ) \ - done) - - -clean: - @(for py in $(PY_DEMOS) ; do \ - echo "cleaning $${py}..."; \ - (cd $${py} ; @MAKE@ clean ) \ - done) - - - -# end of file - diff --git a/Cantera/python/examples/gasdynamics/Makefile.win b/Cantera/python/examples/gasdynamics/Makefile.win deleted file mode 100644 index cfc017e92..000000000 --- a/Cantera/python/examples/gasdynamics/Makefile.win +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh - - -PY_DEMOS = isentropic soundSpeed - - -all: - @(for py in $(PY_DEMOS) ; do \ - (cd $${py} ; make ) \ - done) - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; make run ) \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py}..."; \ - (cd $${py} ; make test ) \ - done) - -clean: - @(for py in $(PY_DEMOS) ; do \ - echo "cleaning $${py}..."; \ - (cd $${py} ; make clean ) \ - done) - - - -# end of file - diff --git a/Cantera/python/examples/gasdynamics/isentropic/Makefile.in b/Cantera/python/examples/gasdynamics/isentropic/Makefile.in deleted file mode 100644 index a5e659719..000000000 --- a/Cantera/python/examples/gasdynamics/isentropic/Makefile.in +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/gasdynamics/isentropic - - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) isentropic.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r isentropic.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/gasdynamics/isentropic/Makefile.win b/Cantera/python/examples/gasdynamics/isentropic/Makefile.win deleted file mode 100644 index 73da4547c..000000000 --- a/Cantera/python/examples/gasdynamics/isentropic/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - - - -run: - $(PYTHON_CMD) isentropic.py - -test: - ./runtest - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/gasdynamics/soundSpeed/Makefile.in b/Cantera/python/examples/gasdynamics/soundSpeed/Makefile.in deleted file mode 100644 index f5c42cda0..000000000 --- a/Cantera/python/examples/gasdynamics/soundSpeed/Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/gasdynamics/soundSpeed - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) soundSpeed.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r soundSpeed.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/gasdynamics/soundSpeed/Makefile.win b/Cantera/python/examples/gasdynamics/soundSpeed/Makefile.win deleted file mode 100644 index 319605bab..000000000 --- a/Cantera/python/examples/gasdynamics/soundSpeed/Makefile.win +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) soundSpeed.py - -test: - ./runtest - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/kinetics/Makefile.in b/Cantera/python/examples/kinetics/Makefile.in deleted file mode 100644 index 799420043..000000000 --- a/Cantera/python/examples/kinetics/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/kinetics - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) sofc.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r ratecoeffs.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - - -clean: - rm -f *.log *.csv *.xml - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/kinetics/Makefile.win b/Cantera/python/examples/kinetics/Makefile.win deleted file mode 100644 index e6a1106d8..000000000 --- a/Cantera/python/examples/kinetics/Makefile.win +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -run: - $(PYTHON_CMD) sofc.py - -test: - ./runtest - -clean: - rm -f *.log *.csv *.xml - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/liquid_vapor/Makefile.in b/Cantera/python/examples/liquid_vapor/Makefile.in deleted file mode 100644 index 09aad18ee..000000000 --- a/Cantera/python/examples/liquid_vapor/Makefile.in +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/liquid_vapor - -PY_DEMOS = critProperties rankine - -all: - @(for py in $(PY_DEMOS) ; do \ - (cd $${py} ; @MAKE@ ) \ - done) - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; @MAKE@ run ) \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py}..."; \ - (cd $${py} ; @MAKE@ test) \ - done) - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @(for py in $(PY_DEMOS) ; do \ - echo "installing $${py}..."; \ - (cd $${py} ; @MAKE@ install) \ - done) - - -clean: - @(for py in $(PY_DEMOS) ; do \ - echo "cleaning $${py}..."; \ - (cd $${py} ; @MAKE@ clean) \ - done) - - - -# end of file - diff --git a/Cantera/python/examples/liquid_vapor/Makefile.win b/Cantera/python/examples/liquid_vapor/Makefile.win deleted file mode 100644 index 3b6405d64..000000000 --- a/Cantera/python/examples/liquid_vapor/Makefile.win +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh - - -PY_DEMOS = critProperties rankine - -all: - @(for py in $(PY_DEMOS) ; do \ - (cd $${py} ; make ) \ - done) - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd $${py} ; make run ) \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py}..."; \ - (cd $${py} ; make test) \ - done) - - -clean: - @(for py in $(PY_DEMOS) ; do \ - echo "cleaning $${py}..."; \ - (cd $${py} ; make clean) \ - done) - - - -# end of file - diff --git a/Cantera/python/examples/liquid_vapor/critProperties/Makefile.in b/Cantera/python/examples/liquid_vapor/critProperties/Makefile.in deleted file mode 100644 index bfdd85d00..000000000 --- a/Cantera/python/examples/liquid_vapor/critProperties/Makefile.in +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/liquid_vapor/critProperties - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) critProperties.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r critProperties.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/liquid_vapor/critProperties/Makefile.win b/Cantera/python/examples/liquid_vapor/critProperties/Makefile.win deleted file mode 100644 index 19dc5772a..000000000 --- a/Cantera/python/examples/liquid_vapor/critProperties/Makefile.win +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -run: - $(PYTHON_CMD) critProperties.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/liquid_vapor/rankine/Makefile.in b/Cantera/python/examples/liquid_vapor/rankine/Makefile.in deleted file mode 100644 index 24fd3080d..000000000 --- a/Cantera/python/examples/liquid_vapor/rankine/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/liquid_vapor/rankine - - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) rankine.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r rankine.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/liquid_vapor/rankine/Makefile.win b/Cantera/python/examples/liquid_vapor/rankine/Makefile.win deleted file mode 100644 index 6c48d8d6b..000000000 --- a/Cantera/python/examples/liquid_vapor/rankine/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) rankine.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/misc/Makefile.in b/Cantera/python/examples/misc/Makefile.in deleted file mode 100644 index c1b96cf52..000000000 --- a/Cantera/python/examples/misc/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/misc - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) rxnpath1.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r rxnpath1.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r rp_blessed_0.txt $(INST_DIR) - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/misc/Makefile.win b/Cantera/python/examples/misc/Makefile.win deleted file mode 100644 index 1976b1af3..000000000 --- a/Cantera/python/examples/misc/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) rxnpath1.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/Makefile.in b/Cantera/python/examples/reactors/Makefile.in deleted file mode 100644 index dfa3fa372..000000000 --- a/Cantera/python/examples/reactors/Makefile.in +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors - -PY_DEMOS = combustor_sim functors_sim mix1_sim mix2_sim piston_sim reactor1_sim \ - reactor2_sim sensitivity_sim surf_pfr_sim - -all: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd "$${py}"; @MAKE@ ) ; \ - done) - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd "$${py}"; @MAKE@ run ) ; \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py}..."; \ - (cd "$${py}"; @MAKE@ test ) ; \ - done) - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @(for py in $(PY_DEMOS) ; do \ - echo "installing $${py}..."; \ - (cd "$${py}"; @MAKE@ install ) ; \ - done) - - - - -clean: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py}..."; \ - (cd "$${py}"; @MAKE@ clean ) ; \ - done) - rm -f *.log *.csv *.xml - -# end of file - diff --git a/Cantera/python/examples/reactors/Makefile.win b/Cantera/python/examples/reactors/Makefile.win deleted file mode 100644 index 5a9854366..000000000 --- a/Cantera/python/examples/reactors/Makefile.win +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh - -PY_DEMOS = combustor_sim functors_sim mix1_sim mix2_sim piston_sim reactor1_sim \ - reactor2_sim sensitivity_sim surf_pfr_sim - -all: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd "$${py}"; make ) ; \ - done) - -run: - @(for py in $(PY_DEMOS) ; do \ - echo "running $${py}..."; \ - (cd "$${py}"; make run ) ; \ - done) - -test: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py}..."; \ - (cd "$${py}"; make test ) ; \ - done) - - -clean: - @(for py in $(PY_DEMOS) ; do \ - echo "testing $${py}..."; \ - (cd "$${py}"; make clean ) ; \ - done) - rm -f *.log *.csv *.xml - -# end of file - diff --git a/Cantera/python/examples/reactors/combustor_sim/Makefile.in b/Cantera/python/examples/reactors/combustor_sim/Makefile.in deleted file mode 100644 index 370c3b99f..000000000 --- a/Cantera/python/examples/reactors/combustor_sim/Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/combustor_sim - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) combustor.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r combustor.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r combustor_blessed_0.csv $(INST_DIR) - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/combustor_sim/Makefile.win b/Cantera/python/examples/reactors/combustor_sim/Makefile.win deleted file mode 100644 index a3b151bbb..000000000 --- a/Cantera/python/examples/reactors/combustor_sim/Makefile.win +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - - -all: - -run: - $(PYTHON_CMD) combustor.py - -test: - ./runtest - - -clean: - rm -f *.log - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/functors_sim/Makefile.in b/Cantera/python/examples/reactors/functors_sim/Makefile.in deleted file mode 100644 index 59f8a49ca..000000000 --- a/Cantera/python/examples/reactors/functors_sim/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/functors_sim - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) functors.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r functors.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/functors_sim/Makefile.win b/Cantera/python/examples/reactors/functors_sim/Makefile.win deleted file mode 100644 index 99f541ec4..000000000 --- a/Cantera/python/examples/reactors/functors_sim/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -all: - -run: - $(PYTHON_CMD) functors.py - -test: - ./runtest - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/mix1_sim/Makefile.in b/Cantera/python/examples/reactors/mix1_sim/Makefile.in deleted file mode 100644 index 7c529b596..000000000 --- a/Cantera/python/examples/reactors/mix1_sim/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/mix1_sim - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) mix1.py - -test: - ./runtest - - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r mix1.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/mix1_sim/Makefile.win b/Cantera/python/examples/reactors/mix1_sim/Makefile.win deleted file mode 100644 index 42c6042e5..000000000 --- a/Cantera/python/examples/reactors/mix1_sim/Makefile.win +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -all: - -run: - $(PYTHON_CMD) mix1.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/mix2_sim/Makefile.in b/Cantera/python/examples/reactors/mix2_sim/Makefile.in deleted file mode 100644 index 98f75afbf..000000000 --- a/Cantera/python/examples/reactors/mix2_sim/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/mix2_sim - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) mix2.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r mix2.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/mix2_sim/Makefile.win b/Cantera/python/examples/reactors/mix2_sim/Makefile.win deleted file mode 100644 index 94501b4d0..000000000 --- a/Cantera/python/examples/reactors/mix2_sim/Makefile.win +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - - -all: - -run: - $(PYTHON_CMD) mix2.py - -test: - ./runtest - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/piston_sim/Makefile.in b/Cantera/python/examples/reactors/piston_sim/Makefile.in deleted file mode 100644 index 50e1ed1da..000000000 --- a/Cantera/python/examples/reactors/piston_sim/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/piston_sim - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) piston.py - -test: - ./runtest - - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r piston.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/piston_sim/Makefile.win b/Cantera/python/examples/reactors/piston_sim/Makefile.win deleted file mode 100644 index 211d4b200..000000000 --- a/Cantera/python/examples/reactors/piston_sim/Makefile.win +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -run: - $(PYTHON_CMD) piston.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/reactor1_sim/Makefile.in b/Cantera/python/examples/reactors/reactor1_sim/Makefile.in deleted file mode 100644 index b5bfd179d..000000000 --- a/Cantera/python/examples/reactors/reactor1_sim/Makefile.in +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/reactor1_sim - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) reactor1.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r reactor1.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/reactor1_sim/Makefile.win b/Cantera/python/examples/reactors/reactor1_sim/Makefile.win deleted file mode 100644 index 336d4179d..000000000 --- a/Cantera/python/examples/reactors/reactor1_sim/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) reactor1.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/reactor2_sim/Makefile.in b/Cantera/python/examples/reactors/reactor2_sim/Makefile.in deleted file mode 100644 index 9858975ec..000000000 --- a/Cantera/python/examples/reactors/reactor2_sim/Makefile.in +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/reactor2_sim - - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) combustor.py - -test: - ./runtest - - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r reactor2.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r piston_blessed_0.csv $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/reactor2_sim/Makefile.win b/Cantera/python/examples/reactors/reactor2_sim/Makefile.win deleted file mode 100644 index 2e5cc6472..000000000 --- a/Cantera/python/examples/reactors/reactor2_sim/Makefile.win +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - - -all: - -run: - $(PYTHON_CMD) combustor.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/sensitivity_sim/Makefile.in b/Cantera/python/examples/reactors/sensitivity_sim/Makefile.in deleted file mode 100644 index 3bdce6a9e..000000000 --- a/Cantera/python/examples/reactors/sensitivity_sim/Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/sensitivity_sim - -PYTHON_CMD = @PYTHON_CMD@ - -run: - $(PYTHON_CMD) sensitivity1.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r sensitivity1.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/sensitivity_sim/Makefile.win b/Cantera/python/examples/reactors/sensitivity_sim/Makefile.win deleted file mode 100644 index 08779940b..000000000 --- a/Cantera/python/examples/reactors/sensitivity_sim/Makefile.win +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - - -run: - $(PYTHON_CMD) sensitivity1.py - -test: - ./runtest - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/surf_pfr_sim/Makefile.in b/Cantera/python/examples/reactors/surf_pfr_sim/Makefile.in deleted file mode 100644 index de362f107..000000000 --- a/Cantera/python/examples/reactors/surf_pfr_sim/Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/reactors/surf_pfr_sim - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) surf_pfr.py - -test: - ./runtest - - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r surf_pfr.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r surf_pfr_blessed_0.csv $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/reactors/surf_pfr_sim/Makefile.win b/Cantera/python/examples/reactors/surf_pfr_sim/Makefile.win deleted file mode 100644 index eb7214dbd..000000000 --- a/Cantera/python/examples/reactors/surf_pfr_sim/Makefile.win +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - - -all: - -run: - $(PYTHON_CMD) surf_pfr.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/surface_chemistry/Makefile.in b/Cantera/python/examples/surface_chemistry/Makefile.in deleted file mode 100644 index 61203bf77..000000000 --- a/Cantera/python/examples/surface_chemistry/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/surface_chemistry - -all: - cd catcomb_stagflow; @MAKE@ - cd diamond_cvd; @MAKE@ - -run: - cd catcomb_stagflow; @MAKE@ run - cd diamond_cvd; @MAKE@ run - -test: - cd catcomb_stagflow; @MAKE@ test - cd diamond_cvd; @MAKE@ test - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - cd catcomb_stagflow; @MAKE@ install - cd diamond_cvd; @MAKE@ install - -clean: - cd catcomb_stagflow; @MAKE@ clean - cd diamond_cvd; @MAKE@ clean - -# end of file - diff --git a/Cantera/python/examples/surface_chemistry/Makefile.win b/Cantera/python/examples/surface_chemistry/Makefile.win deleted file mode 100644 index e351a735e..000000000 --- a/Cantera/python/examples/surface_chemistry/Makefile.win +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - - -all: - cd catcomb_stagflow; make - cd diamond_cvd; make - -run: - cd catcomb_stagflow; make run - cd diamond_cvd; make run - -test: - cd catcomb_stagflow; make test - cd diamond_cvd; make test - - -clean: - cd catcomb_stagflow; make clean - cd diamond_cvd; make clean - -# end of file - diff --git a/Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile.in b/Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile.in deleted file mode 100644 index 0eb2b7a92..000000000 --- a/Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/surface_chemistry/catcomb_stagflow - - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) catcomb.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r catcomb.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r catcomb_blessed_0.csv $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile.win b/Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile.win deleted file mode 100644 index 236b334d4..000000000 --- a/Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile.win +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - - -all: - -run: - $(PYTHON_CMD) catcomb.py - -test: - ./runtest - - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile.in b/Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile.in deleted file mode 100644 index dabe4cf8a..000000000 --- a/Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/surface_chemistry/diamond_cvd - - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) diamond.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r diamond.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r diamond_blessed_0.csv $(INST_DIR) - -clean: - ./cleanup - diff --git a/Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile.win b/Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile.win deleted file mode 100644 index ec285e0b6..000000000 --- a/Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile.win +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - - -all: - -run: - $(PYTHON_CMD) diamond.py - -test: - ./runtest - - -clean: - ./cleanup - diff --git a/Cantera/python/examples/transport/Makefile.in b/Cantera/python/examples/transport/Makefile.in deleted file mode 100644 index 659c46227..000000000 --- a/Cantera/python/examples/transport/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -INST_DIR=@ct_demodir@/python/transport - - -PYTHON_CMD = @PYTHON_CMD@ - -all: - -run: - $(PYTHON_CMD) dustygas.py - -test: - ./runtest - -install: - @INSTALL@ -d $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r Makefile $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r dustygas.py $(INST_DIR) - @INSTALL@ -c runtest $(INST_DIR) - @INSTALL@ -c cleanup $(INST_DIR) - @INSTALL@ -c -m ug+rw,o+r output_blessed_0.txt $(INST_DIR) - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/examples/transport/Makefile.win b/Cantera/python/examples/transport/Makefile.win deleted file mode 100644 index aefe259be..000000000 --- a/Cantera/python/examples/transport/Makefile.win +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - - -all: - -run: - $(PYTHON_CMD) dustygas.py - -test: - ./runtest - -clean: - ./cleanup - -# end of file - diff --git a/Cantera/python/src/Makefile.in b/Cantera/python/src/Makefile.in deleted file mode 100755 index 4791f646d..000000000 --- a/Cantera/python/src/Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ -#/bin/sh -############################################################### -# $Author: dggoodwin $ -# $Date: 2003/04/14 17:57:50 $ -# $Revision: 1.1.1.1 $ -# -# Copyright 2001 California Institute of Technology -# -############################################################### - diff --git a/Cantera/python/winsetup.py b/Cantera/python/winsetup.py deleted file mode 100755 index 8230126fb..000000000 --- a/Cantera/python/winsetup.py +++ /dev/null @@ -1,30 +0,0 @@ -from distutils.core import setup, Extension - -libdir = ['../../build/lib/i686-pc-win32'] - -# Below I switched to / from \ because python was interpreting \n in the -# string \numpy as a new line character -# -setup(name="Cantera", - version="1.8.0", - description="The Cantera Python Interface", - long_description=""" - """, - author="Prof. D. G. Goodwin, Caltech", - author_email="dgoodwin@caltech.edu", - url="http://code.google.com/p/cantera", - package_dir = {'MixMaster':'../../apps/MixMaster'}, - py_modules = ["ctml_writer"], - packages = ["Cantera","Cantera.OneD", - "MixMaster","MixMaster.Units"], - ext_modules=[ Extension("Cantera._cantera", - ["src/pycantera.cpp"], - include_dirs=["../../build/include", - "src", "../clib/src", - "c:\python26/lib/site-packages/numpy/core/include"], - library_dirs = libdir, - depends = [libdir[0]+'/clib.lib'], - libraries = ["clib"]) - ], - ) - diff --git a/Cantera/python/winsetup_d.py b/Cantera/python/winsetup_d.py deleted file mode 100755 index 017eddea1..000000000 --- a/Cantera/python/winsetup_d.py +++ /dev/null @@ -1,30 +0,0 @@ -from distutils.core import setup, Extension - -libdir = ['../../build/lib/i686-pc-win32'] - -# Below I switched to / from \ because python was interpreting \n in the -# string \numpy as a new line character -# -setup(name="Cantera", - version="1.8.0", - description="The Cantera Python Interface", - long_description=""" - """, - author="Prof. D. G. Goodwin, Caltech", - author_email="dgoodwin@caltech.edu", - url="http://code.google.com/p/cantera", - package_dir = {'MixMaster':'../../apps/MixMaster'}, - py_modules = ["ctml_writer"], - packages = ["Cantera","Cantera.OneD", - "MixMaster","MixMaster.Units"], - ext_modules=[ Extension("Cantera._cantera", - ["src/pycantera.cpp"], - include_dirs=["../../build/include", - "src", "../clib/src", - "c:\python26/lib/site-packages/numpy/core/include"], - library_dirs = libdir, - depends = [libdir[0]+'/clib_d.lib'], - libraries = ["clib_d"]) - ], - ) - diff --git a/Cantera/src/Makefile.in b/Cantera/src/Makefile.in deleted file mode 100755 index 4408231f2..000000000 --- a/Cantera/src/Makefile.in +++ /dev/null @@ -1,48 +0,0 @@ -#/bin/sh -############################################################### -# $Author: dggoodwin $ -# $Date: 2007/12/15 17:15:50 $ -# $Revision: 1.58 $ -# -# Copyright 2001 California Institute of Technology -# -############################################################### - -all: - cd base; @MAKE@ all - cd equil; @MAKE@ all - cd zeroD; @MAKE@ all - cd oneD; @MAKE@ all - cd converters; @MAKE@ all - cd transport; @MAKE@ all - cd thermo; @MAKE@ all - cd kinetics; @MAKE@ all - cd numerics; @MAKE@ all - cd spectra; @MAKE@ all - -clean: - cd base; $(RM) .depends ; @MAKE@ clean - cd equil; $(RM) .depends ; @MAKE@ clean - cd zeroD; $(RM) .depends ; @MAKE@ clean - cd oneD; $(RM) .depends ; @MAKE@ clean - cd converters; $(RM) .depends ; @MAKE@ clean - cd transport; $(RM) .depends ; @MAKE@ clean - cd thermo; $(RM) .depends ; @MAKE@ clean - cd kinetics; $(RM) .depends ; @MAKE@ clean - cd numerics; $(RM) .depends ; @MAKE@ clean - cd spectra; $(RM) .depends ; @MAKE@ clean - -depends: - cd base; @MAKE@ depends - cd equil; @MAKE@ depends - cd oneD; @MAKE@ depends - cd zeroD; @MAKE@ depends - cd converters; @MAKE@ depends - cd transport; @MAKE@ depends - cd thermo; @MAKE@ depends - cd kinetics; @MAKE@ depends - cd numerics; @MAKE@ depends - cd spectra; @MAKE@ depends - -TAGS: - etags *.h *.cpp diff --git a/Cantera/src/base/Makefile.in b/Cantera/src/base/Makefile.in deleted file mode 100644 index 7d00cb58a..000000000 --- a/Cantera/src/base/Makefile.in +++ /dev/null @@ -1,93 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -BASE_OBJ = ct2ctml.o ctml.o misc.o plots.o stringUtils.o xml.o clockWC.o\ - PrintCtrl.o LogPrintCtrl.o mdp_allo.o checkFinite.o - -BASE_H = ct_defs.h ctexceptions.h logger.h XML_Writer.h \ - ctml.h plots.h stringUtils.h xml.h config.h utilities.h \ - Array.h vec_functions.h global.h FactoryBase.h clockWC.h \ - PrintCtrl.h LogPrintCtrl.h mdp_allo.h - -CXX_INCLUDES = -I. @CXX_INCLUDES@ -LIB = @buildlib@/libctbase.a - -DEPENDS = $(BASE_OBJ:.o=.d) - -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(BASE_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(BASE_OBJ) $(BASE_H) - @ARCHIVE@ $(LIB) $(BASE_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -clean: - @(for lh in dummy.h $(BASE_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(BASE_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/converters/Makefile.in b/Cantera/src/converters/Makefile.in deleted file mode 100644 index d491f2f59..000000000 --- a/Cantera/src/converters/Makefile.in +++ /dev/null @@ -1,86 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel/converters -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -OBJS = atomicWeightDB.o CKParser.o CKReader.o Reaction.o ckr_utils.o \ - thermoFunctions.o writelog.o ck2ct.o Species.o NASA9Parser.o -# ck2ctml.o -CONV_H = CKReader.h thermoFunctions.h \ - Element.h Reaction.h CKParser.h \ - ckr_utils.h RxnSpecies.h writelog.h \ - ck2ct.h ckr_defs.h Constituent.h \ - Species.h - -CXX_INCLUDES = -I. -I../base -I../numerics -CONV_LIB = @buildlib@/libconverters.a - -DEPENDS = $(OBJS:.o=.d) - -all: .depends $(CONV_LIB) - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(CONV_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(CONV_LIB): $(OBJS) - @ARCHIVE@ $(CONV_LIB) $(OBJS) -ifeq ($(do_ranlib),1) - @RANLIB@ $(CONV_LIB) -endif - -clean: - @(for lh in $(CONV_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - $(RM) *.o *~ $(CONV_LIB) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -CKParser.o: CKParser.cpp - @CXX@ -c CKParser.cpp $(CXX_FLAGS) $(CXX_INCLUDES) -O0 - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/equil/Makefile.in b/Cantera/src/equil/Makefile.in deleted file mode 100644 index 363c44348..000000000 --- a/Cantera/src/equil/Makefile.in +++ /dev/null @@ -1,156 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .c .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -do_VCSnonideal = @COMPILE_VCSNONIDEAL@ -# -# Purify Options - instrument code for debugging and quantitification -# -PURIFY=@PURIFY@ -# -# Decide whether ot use the linear programmaing module lookalike -# (from Goodwin's code). Both should produce the same results. -do_AltLinProg = 1 - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif -#LOCAL_DEFS=-DDEBUG_MODE - -# -# Local Define to turn on if you want to debug ChemEquil: or -# BasisOptimize -# -#LOCAL_DEFS=-DDEBUG_MODE -# - -ifeq ($(do_AltLinProg), 1) -DALT_STR=-DALTLINPROG -endif -LOCAL_DEFS= $(DALT_STR) -# -# -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -# Basic Cantera Thermodynamics Object Files -EQUIL_OBJ = BasisOptimize.o ChemEquil.o MultiPhase.o MultiPhaseEquil.o equilibrate.o - -EQUIL_H = ChemEquil.h MultiPhase.h MultiPhaseEquil.h equil.h PropertyCalculator.h - -# depending on the option, different object files are used -ifeq ($(do_AltLinProg), 1) -DALT_OBJ=vcs_setMolesLinProg.o -else -DALT_OBJ=vcs_linmaxc.o vcs_dbocls.o vcs_dbols.o vcs_dbolsm.o vcs_dmout.o \ - vcs_dvout.o vcs_ivout.o vcs_xerror.o -endif - - -ifeq ($(do_VCSnonideal), 1) -VCSNONIDEAL_OBJ = vcs_solve_TP.o vcs_VolPhase.o vcs_solve.o vcs_prob.o \ - vcs_TP.o vcs_report.o vcs_util.o \ - vcs_IntStarStar.o vcs_DoubleStarStar.o vcs_elem.o \ - vcs_elem_rearrange.o vcs_MultiPhaseEquil.o \ - vcs_nondim.o vcs_Exception.o \ - vcs_inest.o vcs_rearrange.o \ - vcs_root1d.o vcs_rxnadj.o \ - vcs_SpeciesProperties.o vcs_equilibrate.o \ - vcs_prep.o vcs_species_thermo.o vcs_Gibbs.o vcs_phaseStability.o \ - $(DALT_OBJ) - -VCSNONIDEAL_H = vcs_internal.h vcs_VolPhase.h vcs_solve.h vcs_prob.h \ - vcs_IntStarStar.h vcs_DoubleStarStar.h vcs_defs.h \ - vcs_MultiPhaseEquil.h vcs_Exception.h \ - vcs_SpeciesProperties.h vcs_species_thermo.h -endif - -CXX_INCLUDES = -I../base -I../thermo -I../numerics @CXX_INCLUDES@ -LIB = @buildlib@/libequil.a - -ifeq ($(do_VCSnonideal), 1) - VLIB=@buildlib@/libVCSnonideal.a -endif - -DEPENDS = $(EQUIL_OBJ:.o=.d) $(VCSNONIDEAL_OBJ:.o=.d) - -all: $(LIB) $(VLIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(EQUIL_H) $(VCSNONIDEAL_H); do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) - -.cpp.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.c.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) -I../../../ext/f2c_libs $*.c > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -.c.o: - $(PURIFY) @CC@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) -I../../../ext/f2c_libs - -$(LIB): $(EQUIL_OBJ) $(EQUIL_H) $(VCSNONIDEAL_OBJ) $(VCSNONIDEAL_H) - @ARCHIVE@ $(LIB) $(EQUIL_OBJ) $(VCSNONIDEAL_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -$(VLIB): $(VCSNONIDEAL_OBJ) $(VCS_NONIDEAL_H) - @ARCHIVE@ $(VLIB) $(VCSNONIDEAL_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(VLIB) -endif - - -clean: - @(for lh in dummy.h $(EQUIL_H) $(VCSNONIDEAL_H); do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(EQUIL_OBJ) $(VCSNONIDEAL_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/kinetics/Makefile.in b/Cantera/src/kinetics/Makefile.in deleted file mode 100644 index cfd625c43..000000000 --- a/Cantera/src/kinetics/Makefile.in +++ /dev/null @@ -1,124 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -do_kinetics = @COMPILE_KINETICS@ -do_heterokin = @COMPILE_HETEROKIN@ -do_rxnpath = @COMPILE_RXNPATH@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ -# LOCAL_DEFS = -DDEBUG_SOLVESP -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -# homogeneous kinetics - -ifeq ($(do_kinetics),1) -KINETICS_OBJ=importKinetics.o GRI_30_Kinetics.o KineticsFactory.o \ - GasKinetics.o AqueousKinetics.o \ - FalloffFactory.o ReactionStoichMgr.o Kinetics.o solveSP.o -KINETICS_H = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ - Kinetics.h GasKinetics.h \ - FalloffFactory.h ReactionStoichMgr.h reaction_defs.h \ - FalloffMgr.h ThirdBodyMgr.h RateCoeffMgr.h ReactionData.h \ - RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h \ - AqueousKinetics.h -KINETICS = $(KINETICS_OBJ) $(KINETICS_H) -endif - - -# heterogeneous kinetics - -ifeq ($(do_heterokin),1) -HETEROKIN_OBJ=InterfaceKinetics.o ImplicitSurfChem.o -HETEROKIN_H =InterfaceKinetics.h ImplicitSurfChem.h EdgeKinetics.h -HETEROKIN = $(HETEROKIN_OBJ) -endif - -ifeq ($(do_rxnpath),1) -# reaction path analysis -RPATH_OBJ = Group.o ReactionPath.o -RPATH_H = Group.h ReactionPath.h -RPATH = $(RPATH_OBJ) -endif - -ALLKINETICS_OBJ = $(KINETICS_OBJ) $(HETEROKIN_OBJ) $(RPATH_OBJ) - -ALLKINETICS_H = $(KINETICS_H) $(HETEROKIN_H) $(RPATH_H) - - -CXX_INCLUDES = -I../base -I../thermo -I../numerics @CXX_INCLUDES@ -LIB = @buildlib@/libkinetics.a - -DEPENDS = $(ALLKINETICS_OBJ:.o=.d) - -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(ALLKINETICS_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(ALLKINETICS_OBJ) $(ALLKINETICS_H) - @ARCHIVE@ $(LIB) $(ALLKINETICS_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -clean: - @(for lh in dummy.h $(ALLKINETICS_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(ALLKINETICS_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/numerics/Makefile.in b/Cantera/src/numerics/Makefile.in deleted file mode 100644 index bffd2a159..000000000 --- a/Cantera/src/numerics/Makefile.in +++ /dev/null @@ -1,126 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -use_sundials=@use_sundials@ - -SUNDIALS_INC=@sundials_include@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -NUMERICS_OBJ = DenseMatrix.o funcs.o Func1.o \ - ODE_integrators.o BandMatrix.o DAE_solvers.o \ - funcs.o sort.o SquareMatrix.o ResidJacEval.o NonlinearSolver.o - -NUMERICS_H = ArrayViewer.h DenseMatrix.h \ - funcs.h ctlapack.h Func1.h FuncEval.h \ - polyfit.h\ - BandMatrix.h Integrator.h DAE_Solver.h ResidEval.h sort.h \ - SquareMatrix.h ResidJacEval.h NonlinearSolver.h - -ifeq ($(use_sundials), 1) - ODEPACKAGE_H = CVodesIntegrator.h - ODEPACKAGE_OBJ = CVodesIntegrator.o -else - ODEPACKAGE_H = CVodeInt.h - ODEPACKAGE_OBJ = CVodeInt.o -endif - -TOTAL_H = $(NUMERICS_H) $(ODEPACKAGE_H) -TOTAL_OBJ = $(NUMERICS_OBJ) $(ODEPACKAGE_OBJ) - -TTOTAL_H = $(NUMERICS_H) CVode.h CVodesIntegrator.h - -CXX_INCLUDES = -I../base $(SUNDIALS_INC) -LIB = @buildlib@/libctnumerics.a - -DEPENDS = $(TOTAL_OBJ:.o=.d) - -all: .depends $(LIB) - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(TOTAL_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(TOTAL_OBJ) $(TOTAL_H) - @ARCHIVE@ $(LIB) $(TOTAL_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -ODE_integrators.o: Makefile - $(PURIFY) @CXX@ -c ODE_integrators.cpp $(CXX_INCLUDES) $(SUNDIALS_INC) \ - $(CXX_FLAGS) - -ODE_integrators.d: ODE_integrators.cpp Makefile - @CXX_DEPENDS@ $(CXX_FLAGS) ODE_integrators.cpp $(CXX_INCLUDES) $(SUNDIALS_INC) \ - > ODE_integrators.d - -DAE_solvers.o: DAE_solvers.cpp Makefile - $(PURIFY) @CXX@ -c DAE_solvers.cpp $(CXX_INCLUDES) $(SUNDIALS_INC) $(CXX_FLAGS) - -DAE_solvers.d: DAE_solvers.cpp Makefile - @CXX_DEPENDS@ $(CXX_FLAGS) DAE_solvers.cpp $(CXX_INCLUDES) $(SUNDIALS_INC) \ - > DAE_solvers.d - -clean: - @(for lh in dummy.h $(TTOTAL_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d *.a - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(NUMERICS_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/oneD/Makefile.in b/Cantera/src/oneD/Makefile.in deleted file mode 100644 index ad4c6a0a5..000000000 --- a/Cantera/src/oneD/Makefile.in +++ /dev/null @@ -1,81 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) -CXX_INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics @CXX_INCLUDES@ - - -OBJS = MultiJac.o MultiNewton.o newton_utils.o OneDim.o\ - StFlow.o boundaries1D.o refine.o Sim1D.o Domain1D.o -ONED_H = Inlet1D.h MultiJac.h Sim1D.h StFlow.h \ - Surf1D.h Domain1D.h MultiNewton.h OneDim.h \ - Resid1D.h Solid1D.h refine.h - -ONED_LIB = @buildlib@/liboneD.a - -DEPENDS = $(OBJS:.o=.d) - -%.d: Makefile %.o - @CXX_DEPENDS@ @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) - -all: $(ONED_LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(ONED_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) - -$(ONED_LIB): $(OBJS) - @ARCHIVE@ $(ONED_LIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(ONED_LIB) -endif - -clean: - @(for lh in $(ONED_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - $(RM) *.o *.d *~ $(ONED_LIB) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/spectra/Makefile.in b/Cantera/src/spectra/Makefile.in deleted file mode 100644 index fc124f288..000000000 --- a/Cantera/src/spectra/Makefile.in +++ /dev/null @@ -1,88 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2007 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -#SPECTRA_OBJ = rotor.o LineBroadener.o spectralUtilities.o -SPECTRA_OBJ = rotor.o LineBroadener.o - -#SPECTRA_H = rotor.h LineBroadener.h Nuclei.h spectralUtilities.h -SPECTRA_H = rotor.h LineBroadener.h Nuclei.h spectralUtilities.h - -CXX_INCLUDES = -I. @CXX_INCLUDES@ -I../base -LIB = @buildlib@/libctspectra.a - -DEPENDS = $(SPECTRA_OBJ:.o=.d) - -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(SPECTRA_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(SPECTRA_OBJ) $(SPECTRA_H) - @ARCHIVE@ $(LIB) $(SPECTRA_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -clean: - @(for lh in dummy.h $(SPECTRA_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/thermo/Makefile.in b/Cantera/src/thermo/Makefile.in deleted file mode 100644 index 73669357e..000000000 --- a/Cantera/src/thermo/Makefile.in +++ /dev/null @@ -1,155 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ -do_electro = @COMPILE_ELECTROLYTES@ -do_issp = @COMPILE_IDEAL_SOLUTIONS@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -# Purify command - usually this is blank -PURIFY=@PURIFY@ - -#LOCAL_DEFS=-DDEBUG_MODE -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -# Basic Cantera Thermodynamics Object Files -THERMO_OBJ = State.o Elements.o Constituents.o Phase.o \ - ThermoPhase.o IdealGasPhase.o ConstDensityThermo.o \ - SpeciesThermoFactory.o ConstCpPoly.o Nasa9Poly1.o Nasa9PolyMultiTempRegion.o \ - Mu0Poly.o GeneralSpeciesThermo.o SurfPhase.o \ - ThermoFactory.o phasereport.o SpeciesThermoInterpType.o \ - VPSSMgr.o VPSSMgrFactory.o VPSSMgr_General.o IdealSolnGasVPSS.o \ - VPSSMgr_IdealGas.o VPSSMgr_ConstVol.o PDSS_ConstVol.o PDSS_IdealGas.o \ - PDSS_SSVol.o @phase_object_files@ - -THERMO_H = State.h Elements.h Constituents.h Phase.h mix_defs.h \ - ThermoPhase.h IdealGasPhase.h ConstDensityThermo.h \ - SpeciesThermoFactory.h ThermoFactory.h \ - NasaPoly1.h NasaPoly2.h NasaThermo.h Nasa9Poly1.h Nasa9PolyMultiTempRegion.h \ - ShomateThermo.h ShomatePoly.h ConstCpPoly.h \ - SimpleThermo.h SpeciesThermoMgr.h \ - SpeciesThermoInterpType.h \ - GeneralSpeciesThermo.h Mu0Poly.h \ - speciesThermoTypes.h SpeciesThermo.h SurfPhase.h \ - EdgePhase.h \ - VPSSMgr.h VPSSMgrFactory.h VPSSMgr_General.h IdealSolnGasVPSS.h \ - VPSSMgr_IdealGas.h VPSSMgr_ConstVol.h PDSS_ConstVol.h PDSS_IdealGas.h \ - PDSS_SSVol.h @phase_header_files@ - - -# Extended Cantera Thermodynamics Object Files - -ifeq ($(do_electro),1) -do_issp = 1 -ELECTRO_OBJ = MolalityVPSSTP.o VPStandardStateTP.o \ - IdealMolalSoln.o \ - WaterPropsIAPWSphi.o WaterPropsIAPWS.o WaterProps.o \ - PDSS.o PDSS_Water.o PDSS_HKFT.o \ - HMWSoln.o HMWSoln_input.o DebyeHuckel.o \ - WaterSSTP.o MetalSHEelectrons.o \ - VPSSMgr_Water_ConstVol.o VPSSMgr_Water_HKFT.o - -ELECTRO_H = MolalityVPSSTP.h VPStandardStateTP.h \ - IdealMolalSoln.h \ - WaterPropsIAPWSphi.h WaterPropsIAPWS.h WaterProps.h \ - PDSS.h PDSS_Water.h PDSS_HKFT.h \ - HMWSoln.h electrolytes.h \ - DebyeHuckel.h WaterSSTP.h MetalSHEelectrons.h VPSSMgr_Water_HKFT.h \ - VPSSMgr_Water_ConstVol.h -endif -ifeq ($(do_issp),1) -ISSP_OBJ = IdealSolidSolnPhase.o StoichSubstanceSSTP.o SingleSpeciesTP.o MineralEQ3.o \ - GibbsExcessVPSSTP.o PseudoBinaryVPSSTP.o MargulesVPSSTP.o \ - IonsFromNeutralVPSSTP.o PDSS_IonsFromNeutral.o -ISSP_H = IdealSolidSolnPhase.h StoichSubstanceSSTP.h SingleSpeciesTP.h MineralEQ3.h \ - GibbsExcessVPSSTP.h PseudoBinaryVPSSTP.h MargulesVPSSTP.h \ - IonsFromNeutralVPSSTP.h PDSS_IonsFromNeutral.h -endif - -CATHERMO_OBJ = $(THERMO_OBJ) $(ELECTRO_OBJ) $(ISSP_OBJ) - -CATHERMO_H = $(THERMO_H) $(ELECTRO_H) $(ISSP_H) - - -CXX_INCLUDES = -I../base @CXX_INCLUDES@ -LIB = @buildlib@/libthermo.a - -DEPENDS = $(CATHERMO_OBJ:.o=.d) - -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(CATHERMO_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(CATHERMO_OBJ) $(CATHERMO_H) - @ARCHIVE@ $(LIB) $(CATHERMO_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -clean: - @(for lh in dummy.h $(CATHERMO_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -# -# Dependency rules -# -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(CATHERMO_OBJ): Makefile - -# -# Make sure that if the Makefile changes, all object files -# must get recompiled -$(CATHERMO_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/transport/Makefile.in b/Cantera/src/transport/Makefile.in deleted file mode 100644 index 8302e9a54..000000000 --- a/Cantera/src/transport/Makefile.in +++ /dev/null @@ -1,116 +0,0 @@ -#/bin/sh -############################################################### -# -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -do_electro = @COMPILE_ELECTROLYTES@ -do_issp = @COMPILE_IDEAL_SOLUTIONS@ - - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - - -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -# Base Transport Object Files -TRAN_OBJ = TransportFactory.o MultiTransport.o MixTransport.o MMCollisionInt.o \ - SolidTransport.o DustyGasTransport.o TransportBase.o WaterTransport.o \ - SimpleTransport.o - -TRAN_H = TransportFactory.h MultiTransport.h MixTransport.h \ - MMCollisionInt.h SolidTransport.h DustyGasTransport.h \ - TransportBase.h L_matrix.h TransportParams.h WaterTransport.h \ - SimpleTransport.h LiquidTransportData.h - -ifeq ($(do_electro),1) -do_issp = 1 -ELECTRO_OBJ = AqueousTransport.o -ELECTRO_H = AqueousTransport.h -endif - -ifeq ($(do_issp),1) -ISSP_OBJ = LiquidTransport.o -ISSP_H = LiquidTransport.h LiquidTransportParams.h -endif - - -CATRAN_OBJ = $(TRAN_OBJ) $(ELECTRO_OBJ) $(ISSP_OBJ) - -CATRAN_H = $(TRAN_H) $(ELECTRO_H) $(ISSP_H) - -CXX_INCLUDES = -I../base -I../thermo -I../numerics @CXX_INCLUDES@ -LIB = @buildlib@/libtransport.a - -DEPENDS = $(CATRAN_OBJ:.o=.d) - -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(CATRAN_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(CATRAN_OBJ) $(CATRAN_H) - @ARCHIVE@ $(LIB) $(CATRAN_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -clean: - @(for lh in $(CATRAN_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *.d *~ .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(CATRAN_OBJ): Makefile - - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/zeroD/Makefile.in b/Cantera/src/zeroD/Makefile.in deleted file mode 100644 index 8c3000018..000000000 --- a/Cantera/src/zeroD/Makefile.in +++ /dev/null @@ -1,85 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# stirred reactors -OBJS = Reactor.o ReactorBase.o FlowDevice.o Wall.o ReactorNet.o \ - FlowReactor.o ConstPressureReactor.o ReactorFactory.o -ZEROD_H = Reactor.h ReactorBase.h FlowDevice.h Wall.h ReactorNet.h \ - flowControllers.h PID_Controller.h Reservoir.h FlowReactor.h \ - ConstPressureReactor.h ReactorFactory.h - -CXX_INCLUDES = -I../base -I../thermo -I../kinetics -I../numerics @CXX_INCLUDES@ -ZEROD_LIB = @buildlib@/libzeroD.a - -DEPENDS = $(OBJS:.o=.d) - -all: $(ZEROD_LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(ZEROD_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) - -%.d: Makefile %.o - @CXX_DEPENDS@ @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) - -$(ZEROD_LIB): $(OBJS) $(ZEROD_H) - @ARCHIVE@ $(ZEROD_LIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(ZEROD_LIB) -endif - -clean: - @(for lh in $(ZEROD_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(ZEROD_LIB) ; then \ - $(RM) $(ZEROD_LIB) ; \ - echo "$(RM) $(ZEROD_LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/License.rtf b/License.rtf deleted file mode 100755 index 1adaa3d95..000000000 --- a/License.rtf +++ /dev/null @@ -1,176 +0,0 @@ -{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset1\fprq2{\*\panose 02040503050406030204}Cambria Math;} -{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;} -{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;}{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;} -{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} -{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}} -{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; -\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\*\defchp \fs22 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 } -\noqfpromote {\stylesheet{\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\* -\cs10 \additive \ssemihidden Default Paragraph Font;}{\* -\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused \sqformat Normal Table;}} -{\*\rsidtbl \rsid602915\rsid2033138\rsid8664322\rsid12135870}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info -{\title Copyright (c) 2001-2009, California Institute of Technology}{\author Dave Goodwin}{\operator Harry K. Moffat}{\creatim\yr2009\mo7\dy31\hr19\min41}{\revtim\yr2009\mo7\dy31\hr19\min41}{\version2}{\edmins6}{\nofpages1}{\nofwords256}{\nofchars1502} -{\*\company Caltech}{\nofcharsws1755}{\vern32771}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1318\margr1318\margt1440\margb1440\gutter0\ltrsect -\widowctrl\ftnbj\aenddoc\trackmoves1\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\noxlattoyen -\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\nolnhtadjtbl\rsidroot8664322 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar -\sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4 -\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (} -{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar -\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid602915 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid8664322\charrsid602915 -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12135870 Copyright (c) 2001-2009}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2033138\charrsid602915 , California Institute of Technology}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid602915 . }{\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid2033138\charrsid602915 All rights reserved.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2033138 -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid602915 -\par }\pard \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12135870 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12135870 Copyright (c) 2009, Sandia Corporation. Under the terms of -Contract AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights to certain parts of this software. -\par All rights reserved. -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12135870\charrsid602915 -\par }\pard \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid602915 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2033138\charrsid602915 -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -\par -\par \u-4064\'3fRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -\par -\par Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -\par -\par \u-4064\'3fNeither the name of the California Institute of Technology}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12135870 , Sandia Corporation nor the names of other}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2033138\charrsid602915 - contributors may be used to endorse or promote products derived from this software without specific prior written permission. -\par -\par THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND AN -Y EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDE -N -TAL, 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, STR -ICT 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. -\par -\par -\par }{\*\themedata 504b030414000600080000002100828abc13fa0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb6ac3301045f785fe83d0b6d8 -72ba28a5d8cea249777d2cd20f18e4b12d6a8f843409c9df77ecb850ba082d74231062ce997b55ae8fe3a00e1893f354e9555e6885647de3a8abf4fbee29bbd7 -2a3150038327acf409935ed7d757e5ee14302999a654e99e393c18936c8f23a4dc072479697d1c81e51a3b13c07e4087e6b628ee8cf5c4489cf1c4d075f92a0b -44d7a07a83c82f308ac7b0a0f0fbf90c2480980b58abc733615aa2d210c2e02cb04430076a7ee833dfb6ce62e3ed7e14693e8317d8cd0433bf5c60f53fea2fe7 -065bd80facb647e9e25c7fc421fd2ddb526b2e9373fed4bb902e182e97b7b461e6bfad3f010000ffff0300504b030414000600080000002100a5d6a7e7c00000 -00360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4fc7060abb08 -84a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b63095120f88d94fbc -52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462a1a82fe353 -bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f7468656d652f7468 -656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b4b0d592c9c -070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b4757e8d3f7 -29e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f7468656d65 -312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87615b8116d8 -a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad79482a9c04 -98f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b5d8a314d3c -94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab999fb7b471 -7509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9699640f671 -9e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd5868b37a088d1 -e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d60cf03ac1a5 -193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f9e7ef3f2d1 -17d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be15c308d3f2 -8acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a99793849c26ae6 -6252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d32a423279a -668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2af074481847 -bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86e877f0034e -16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb44f95d843b -5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a6409fb44d0 -8741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c3d9058edf2 -c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db02565e85f3b966 -0d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276b9f7dec44b -7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8c33585b5fb -9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e51440ca2e0 -088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95b21be5ceaf -8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff6dce591a26 -ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec69ffb9e65d0 -28d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239b75a5bb1e6 -345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a44959d366ad93 -b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e82db8df9f30 -254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f74 -68656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f24 -51eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198 -720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528 -a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100828abc13fa0000001c0200001300000000000000000000000000 -000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000 -002b0100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000140200007468 -656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b000016000000000000000000 -00000000d10200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000 -00000000000000009b0900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000960a00000000} -{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d -617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 -6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 -656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} -{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; -\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; -\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; -\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 -4d73786d6c322e534158584d4c5265616465722e352e3000000000000000000000060000 -d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffffec69d9888b8b3d4c859eaf6cd158be0f0000000000000000000000009083 -98404912ca01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/Makefile.in b/Makefile.in deleted file mode 100755 index 0d63a6f12..000000000 --- a/Makefile.in +++ /dev/null @@ -1,303 +0,0 @@ -#!/bin/sh -# -# $Id: Makefile.in,v 1.96 2009/03/25 01:11:48 hkmoffa Exp $ -# -export_dir = $(HOME)/sfdist -version = @ctversion@ -ct = $(export_dir)/cantera-$(version) -build_ck = @BUILD_CK@ -build_clib = @BUILD_CLIB@ -build_python = @BUILD_PYTHON@ -build_f90 = @BUILD_F90@ -build_matlab = @BUILD_MATLAB@ -os_is_win = @OS_IS_WIN@ -incl_user_code = @INCL_USER_CODE@ -do_ranlib = @DO_RANLIB@ -use_dll = @USE_CLIB_DLL@ - -cvs_tag = @CVSTAG@ -branch = -r $(cvs_tag) -RMDIRTREE = /bin/rm -r -f -INSTALL_TSC = bin/install_tsc - -prefix=@prefix@ - -all: hdr-collect kernel user cxxlib clib fortran python matlab \ - utils - -# use this target on a Windows machine to build the Python and -# MATLAB interfaces after building the project in Visual C++ -win: hdr-collect python matlab - @echo - @echo Now type \'make win-install\' to install Cantera in @ct_dir@. - @echo - -install: hdr-install kernel-install clib-install data-install f90-modules-install \ - python-install matlab-install tools-install demo-install finish-install - -win-install: hdr-install win-kernel-install data-install python-install \ - matlab-install demo-install finish-install - @echo - @echo Cantera has been successfully installed in @ct_dir@. - @echo - -demos: example_codes - -# build the Cantera static libraries -kernel: - @INSTALL@ -d @buildlib@ - @INSTALL@ -d @buildbin@ - cd ext; @MAKE@ - cd Cantera/src; @MAKE@ - -# build the user library -user: -ifeq ($(incl_user_code),1) - cd Cantera/user; @MAKE@ -endif - -clib: -ifeq ($(build_clib),1) - cd Cantera/clib/src; @MAKE@ -endif - -fortran: -ifeq ($(build_f90),1) - cd Cantera/fortran/src; @MAKE@ - @INSTALL@ -c Cantera/fortran/src/*.mod build/include/cantera -else - @echo skipping building the Fortran 90/95 interface -endif - -cxxlib: - cd Cantera/cxx; @MAKE@ - -utils: - cd tools; @MAKE@ - -kernel-install: - @INSTALL@ -d @ct_libdir@ - -rm -fR @ct_libdir@/* - ( for ilib in @buildlib@/*.a ; do \ - @INSTALL@ -c -m 644 $${ilib} @ct_libdir@ ; \ - done ) -ifeq ($(do_ranlib),1) - @RANLIB@ @ct_libdir@/*.a -endif - -clib-install: -ifeq ($(build_clib),1) - cd Cantera/clib/src; @MAKE@ install -endif - -win-kernel-install: - @INSTALL@ -d @ct_libdir@ - -$(RMDIRTREE) @ct_libdir@/* - ( for ilib in @buildlib@/*.lib ; do \ - @INSTALL@ -c -m 644 $${ilib} @ct_libdir@ ; done ) -ifeq ($(use_dll),1) - ( for ilib in @buildlib@/*.dll ; do \ - @INSTALL@ -c -m 644 $${ilib} @ct_libdir@ ; done ) - ( for ilib in @buildlib@/*.exp ; do \ - @INSTALL@ -c -m 644 $${ilib} @ct_libdir@ ; done ) -endif - -data-install: - @INSTALL@ -d @ct_datadir@ - ( for iddd in data/inputs/*.xml ; do \ - @INSTALL@ -c -m 644 $${iddd} @ct_datadir@ ; done ) - ( for iddd in data/inputs/*.cti ; do \ - @INSTALL@ -c -m 644 $${iddd} @ct_datadir@ ; done ) - -tools-install: - cd tools; @MAKE@ install - -hdr-install: - @INSTALL@ -d @ct_incdir@ - cp -r -f build/include/cantera @ct_incroot@ - @(if test -f @ct_incroot@/cantera/Cantera_bt.mak ; then rm -f @ct_incroot@/cantera/Cantera_bt.mak ; fi ) - - -f90-modules-install: -ifeq ($(build_f90),1) - @INSTALL@ -c -m 644 build/include/cantera/*.mod @ct_incroot@/cantera -endif - -# collect scattered header files and build the include directory -hdr-collect: - @INSTALL@ -d build/include/cantera - @INSTALL@ -d build/include/cantera/kernel - @(cd Cantera/cxx/include ; for ihhh in *.h *.mak; do \ - ../../../$(INSTALL_TSC) $${ihhh} ../../../build/include/cantera ; \ - done ) - @$(INSTALL_TSC) config.h build/include/cantera - -python: -ifeq ($(build_python),2) -ifeq ($(os_is_win),0) - cd Cantera/python; @MAKE@ -else - cd Cantera/python; @MAKE@ win -endif -endif -ifeq ($(build_python),1) - cd Cantera/python; @MAKE@ minbuild -endif - -python-install: -ifneq ($(build_python),0) - cd Cantera/python; @MAKE@ install -ifeq ($(build_python),2) - @INSTALL@ -d @ct_tutdir@/python - @(for ihhh in Cantera/python/tutorial/*.py ; do \ - @INSTALL@ -c $${ihhh} @ct_tutdir@/python ; \ - echo "@INSTALL@ -c $${ihhh} @ct_tutdir@/python" ; \ - done ) - chown -R @username@ @ct_tutdir@/python -else - @echo 'NOT installing Python demos or tutorials' -endif -endif - -matlab: -ifeq ($(build_matlab),1) -ifneq ($(build_python),0) - cd Cantera/matlab; @MAKE@ -endif -else - @echo 'NOT building the Matlab toolbox' -endif - -matlab-install: -ifeq ($(build_matlab),1) -ifneq ($(build_python),0) - cd Cantera/matlab; @MAKE@ install -endif -endif - -demo-install: - (cd Cantera/cxx/demos; @MAKE@ install) - @INSTALL@ -c -m ug+rw,o+r tools/templates/cxx/demo.mak @ct_demodir@/cxx - @INSTALL@ -d @ct_demodir@/f77 - (cd Cantera/fortran/f77demos; @MAKE@ install) - @INSTALL@ -c -m ug+rw,o+r tools/templates/f77/demo_ftnlib.cpp @ct_demodir@/f77 - ( for ihhh in Cantera/fortran/f77demos/*.txt ; do \ - @INSTALL@ -c -m ug+rw,o+r $${ihhh} @ct_demodir@/f77 ; done ) - chown -R @username@ @ct_demodir@/f77 -ifeq ($(build_python),2) - (cd Cantera/python/examples; @MAKE@ install) - chown -R @username@ @ct_demodir@/python -endif - -finish-install: - @INSTALL@ -d @ct_docdir@ - @INSTALL@ -d @ct_bindir@ - -( cd bin ; @INSTALL@ -c exp3to2.sh "@ct_bindir@" ) - -( cd bin ; @INSTALL@ -c csvdiff "@ct_bindir@" ) -ifeq ($(os_is_win),0) -# Commands to be executed for non-win systems - cp -f License.rtf "@ct_bindir@" - cp -f License.txt "@ct_bindir@" -ifneq ($(build_python),0) - @INSTALL@ -c tools/src/finish_install.py tools/bin - @PYTHON_CMD@ tools/bin/finish_install.py @prefix@ @PYTHON_CMD@ - cp -f "@homedir@/setup_cantera" "@ct_bindir@" - chmod +x @ct_bindir@/setup_cantera - chmod +x @ct_bindir@/ctnew -ifeq ($(build_python),2) - chmod +x @ct_bindir@/mixmaster -endif -endif -else -# Commands to be executed for win systems - cd Cantera/fortran/f77demos; sed s'/isentropic/ctlib/g' isentropic.dsp > ctlib.dsp - ( for ihhh in Cantera/fortran/f77demos/*.dsp ; do \ - @INSTALL@ -c $${ihhh} @ct_demodir@/f77 ; done ) - ( for ihhh in @buildbin@/* ; do \ - @INSTALL@ -c $${ihhh} @ct_bindir@ ; done ) -endif - -example_codes: - (cd Cantera/cxx/demos; @MAKE@ clean) - (cd Cantera/cxx; @MAKE@) - -test: example_codes datafiles - cd test_problems; @MAKE@ clean - cd test_problems; @MAKE@ all - cd test_problems; @MAKE@ test - -run-matlab-demo: - cd Cantera/matlab; @MAKE@ run-demo - -test-matlab: - cd Cantera/matlab; @MAKE@ test-demo - -run-python-demo: - cd Cantera/python; @MAKE@ run-demo - -uninstall: - -$(RMDIRTREE) @ct_incdir@ - -$(RMDIRTREE) @ct_libdir@ - -$(RMDIRTREE) @ct_datadir@ - -$(RMDIRTREE) @ct_demodir@ - -$(RMDIRTREE) @ct_docdir@ - -$(RMDIRTREE) @ct_tutdir@ - -$(RMDIRTREE) @prefix@/matlab/toolbox/cantera - cd tools; @MAKE@ uninstall - -clean: - -$(RMDIRTREE) *.*~ @buildlib@/*.* build/include/cantera/config.h svn*~ - -cd Cantera; @MAKE@ clean - -cd tools; @MAKE@ clean - -cd ext; @MAKE@ clean - -cd test_problems; @MAKE@ clean - -$(RM) mt.mod - -docs: - cd tools/doxygen/Cantera; doxygen Cantera.cfg - -depends: - cd Cantera; @MAKE@ depends - cd tools; @MAKE@ depends - cd ext; @MAKE@ depends -ifeq ($(build_particles),1) - cd Cantera/cads; @MAKE@ depends -endif - -ChangeLog: CVS/Entries - tools/bin/cvs2cl.pl --prune - -export: ChangeLog - @INSTALL@ -d $(export_dir) - if (test -d $(export_dir)/cantera); then rm -r -f $(export_dir)/cantera; fi - if (test -d $(export_dir)/cantera-$(version)); then rm -r -f $(export_dir)/cantera-$(version); fi - cd $(export_dir); cvs export $(branch) cantera - cd $(export_dir)/cantera; rm -r -f win32 - cd $(export_dir); mv cantera cantera-$(version) - -export-win: ChangeLog - @INSTALL@ -d $(export_dir) - if (test -d $(export_dir)/cantera); then rm -r -f $(export_dir)/cantera; fi - cd $(export_dir); cvs export $(branch) cantera - cd $(export_dir)/cantera; rm -r -f win32 - cd $(export_dir)/cantera; cvs export $(branch) win32 - cd $(export_dir); mv cantera cantera-$(version) - -pack: export - (cd $(export_dir); \ - rm -f cantera-$(version).tar.gz; \ - tar cvf cantera-$(version).tar cantera-$(version)/*; \ - gzip cantera-$(version).tar) - -cf: - @INSTALL@ -d $(export_dir) - if (test -d $(export_dir)/cantera); then rm -r -f $(export_dir)/cantera; fi - cd $(export_dir); cvs export $(branch) cantera - cd $(export_dir)/cantera; rm -r -f win32 - (cd $(export_dir); \ - rm -f cantera-cf.tar.gz; \ - tar cvf cantera-cf.tar cantera/*; \ - gzip cantera-cf.tar; scp cantera-cf.tar.gz dggoodwin@cf-shell.sourceforge.net:cantera.tar.gz) - sshcf './runall' & - - diff --git a/apps/bvp/blasius.mak b/apps/bvp/blasius.mak deleted file mode 100644 index 310215abe..000000000 --- a/apps/bvp/blasius.mak +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh - -# This Makefile builds a C++ application that uses Cantera. By -# default, the main program file is 'demo.cpp,' which prints out some -# properties of a reacting gas mixture. - -# To build program 'demo', simply type 'make', or 'make -f ' if this file is named something other than 'Makefile.' - -# Once you have verified that the demo runs, edit this file to replace -# object file 'demo.o' with your own object file or files. - - -#------------------------ edit this block --------------------------------- - -# the name of the executable program to be created -PROG_NAME = blasius.x - -# the object files to be linked together. -OBJS = blasius.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = -fPIC -L/usr/local/lib -framework Accelerate - -#--------------------------------------------------------------------------- -# You probably don't need to edit anything below. - -# the C++ compiler -CXX = g++ - -# C++ compile flags -CXX_FLAGS = -O3 -Wall -fPIC - -# external libraries -EXT_LIBS = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo -lctnumerics -lcvode -lctbase -lctmath -ltpx -lctf2c -lconverters -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = -lm - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=/Applications/Cantera/lib - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=/Applications/Cantera/include - -# flags passed to the C++ compiler/linker for the linking step -LCXXFLAGS = -L$(CANTERA_LIBDIR) -O3 -Wall -fPIC - -# how to compile C++ source files to object files -.cpp.o: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXXFLAGS)\ - $(CANTERA_LIBS) $(LINK_OPTIONS) $(EXT_LIBS) \ - $(LCXX_END_LIBS) - -%.d: - g++ -MM -I$(CANTERA_INCDIR) $*.cpp > $*.d - -clean: - $(RM) $(OBJS) $(PROGRAM) - -depends: $(DEPENDS) - cat *.d > .depends - $(RM) $(DEPENDS) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - - diff --git a/apps/bvp/stagnation.mak b/apps/bvp/stagnation.mak deleted file mode 100644 index a6629cd2a..000000000 --- a/apps/bvp/stagnation.mak +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh - -# This Makefile builds a C++ application that uses Cantera. By -# default, the main program file is 'demo.cpp,' which prints out some -# properties of a reacting gas mixture. - -# To build program 'demo', simply type 'make', or 'make -f ' if this file is named something other than 'Makefile.' - -# Once you have verified that the demo runs, edit this file to replace -# object file 'demo.o' with your own object file or files. - - -#------------------------ edit this block --------------------------------- - -# the name of the executable program to be created -PROG_NAME = stagnation.x - -# the object files to be linked together. -OBJS = AxiStagnBVP.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = -L/usr/local/lib -framework Accelerate - -#--------------------------------------------------------------------------- -# You probably don't need to edit anything below. - -# the C++ compiler -CXX = g++ - -# C++ compile flags -CXX_FLAGS = -O3 -Wall -fPIC - -# external libraries -EXT_LIBS = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo -lctnumerics -lcvode -lctbase -lctmath -ltpx -lctf2c -lconverters -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = -lm - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=/Applications/Cantera/lib - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=/Applications/Cantera/include - -# flags passed to the C++ compiler/linker for the linking step -LCXXFLAGS = -L$(CANTERA_LIBDIR) -O3 -Wall -fPIC - -# how to compile C++ source files to object files -.cpp.o: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXXFLAGS)\ - $(CANTERA_LIBS) $(LINK_OPTIONS) $(EXT_LIBS) \ - $(LCXX_END_LIBS) - -%.d: - g++ -MM -I$(CANTERA_INCDIR) $*.cpp > $*.d - -clean: - $(RM) $(OBJS) $(PROGRAM) - -depends: $(DEPENDS) - cat *.d > .depends - $(RM) $(DEPENDS) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - - diff --git a/bin/README b/bin/README deleted file mode 100755 index 8d1c8b69c..000000000 --- a/bin/README +++ /dev/null @@ -1 +0,0 @@ - diff --git a/bin/exp3to2.sh b/bin/exp3to2.sh deleted file mode 100755 index 61866b41f..000000000 --- a/bin/exp3to2.sh +++ /dev/null @@ -1,20 +0,0 @@ -#/bin/sh -# -# This sed script replaces 3 character exponents -# starting with 0 with 2 characters -# e-0xx -> e-xx -# e0xx -> exx -# E-0xx -> E-xx -# E0xx -> Exx -# where -# x is a digit -# -# It takes one argument, the file to be operated on. -# And, it writes to standard out. It may be used to do a -# replacement in place. -# -cp $1 .exp.txt -cat .exp.txt | sed 's/\([eE]-\)\(0\)\([0-9][0-9]\)/\1\3/g' | \ - sed 's/\([eE]\)\(0\)\([0-9][0-9]\)/\1\3/g' | \ - sed 's/\([eE]+\)\(0\)\([0-9][0-9]\)/\1\3/g' -rm .exp.txt diff --git a/bin/get_arch b/bin/get_arch deleted file mode 100755 index 87a420728..000000000 --- a/bin/get_arch +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -# -# get the architecture from the current environment -# Return a single word that is used to identifiy -# the architecture tree under which machine specific -# binaries, libraries, and include files are storred. -# -# (obviously this needs to be worked on!) -# -# -uac=`uname -a` -usc=`uname -s` - -ua=`echo $uac | tr [A-Z] [a-z]` -us=`echo $usc | tr [A-Z] [a-z]` - -if [ "$us" = "hp-ux" ] -then - echo hpux_pa2.0 - exit 1 -fi -if [ "$us" = "sunos" ] -then - echo sol - exit 1 -fi -if [ "$us" = "irix64" ] -then - echo sgi10k - exit 1 -fi -if [ "$us" = "tflops o/s" ] -then - echo tflop - exit 1 -fi -if [ "$us" = "osf1" ] -then - echo true64 - exit 1 -fi -if [ "$us" = "linux" ] -then - um=`uname -m` - if [ "$um" = "alpha" ] - then - echo linux-alpha - exit 1 - fi - if [ "$um" = "i686" ] - then - echo linux - exit 1 - fi -fi -if [ "$us" = "darwin" ] -then - echo darwin - exit 1 -fi -if [ "$us" = "cygwin_nt-5.0" ] -then - echo cygwin - exit 1 -fi - -echo unknown -exit 0 diff --git a/bin/install_tsc.in b/bin/install_tsc.in deleted file mode 100755 index 6cc86e3b5..000000000 --- a/bin/install_tsc.in +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/sh -# -# install_ts source DEST_DIR' -# -# Install a file checking the time step first -# -# HKM -> openBSD doesn't have a -v option -# -if test $# -ne 2 ; then - echo 'install_ts ERROR: This program requires 2 and only 2 parameters:' - echo ' install_ts source DEST_DIR' - exit -1 -fi -lh=$1 -INCDIR=$2 -# -VERBOSE=@INSTALL_VERBOSE@ -verbose='y' -if test "x$VERBOSE" = "x-v" ; then - verbose= -fi -INSTALL_XV="@INSTALL_abs@ -m 755 -c $VERBOSE " -INSTALL_V="@INSTALL_abs@ -m 644 -c $VERBOSE " -# -# If the destination directory doesn't exist yet, create it -# -if test ! -d $INCDIR ; then - @INSTALL_abs@ -d $INCDIR -fi -th="${INCDIR}"/"${lh}" ; -if test ! -f "${lh}" ; then - echo 'install_ts ERROR: the file, ' ${lh} ', does not exist' - exit -1 -fi -if test ! -f "${th}" ; then - if test -x "${lh}" ; then - $INSTALL_XV "${lh}" "${th}" - else - $INSTALL_V "${lh}" "${th}" - fi - if test x"$verbose" = xy ; then - echo "${lh}" ' -> ' "${th}" - fi -else -# if test "${lh}" -nt "${th}" ; then - @TSCOMPARE_abs@ "${lh}" "${th}" - res=$? - if test "$res" = "0" ; then - if test -x "${lh}" ; then - $INSTALL_XV "${lh}" "${th}" - else - $INSTALL_V "${lh}" "${th}" - fi - if test x"$verbose" = xy ; then - echo "${lh}" ' -> ' "${th}" - fi - fi -fi -exit 0 diff --git a/bin/mixmaster.py b/bin/mixmaster.py deleted file mode 100755 index ae829744c..000000000 --- a/bin/mixmaster.py +++ /dev/null @@ -1,3 +0,0 @@ -from MixMaster import MixMaster -o = MixMaster() - diff --git a/bin/rm_cvsignore b/bin/rm_cvsignore deleted file mode 100755 index 106a628b7..000000000 --- a/bin/rm_cvsignore +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# -# rm_cvsignore: -# -# This script will delete all files listed in .cvsignore -# except the file Makefile -# -################################################################### -# -delete_file() -# -# This routine will delete a file -# -{ -dferrorStatus=0 -for aaa in $* -do - if [ $aaa != "Makefile" -a $aaa != "runtest" ] - then - if [ -f $aaa ] - then - /bin/rm -f $aaa - fi - fi -done -return $dferrorStatus -} -# -################################################################### -# -ignore_list=`cat .cvsignore` -for item in $ignore_list -do - delete_file $item -done -# -# -#################################################################### -# - diff --git a/bin/tscompare b/bin/tscompare deleted file mode 100755 index 5309da9df..000000000 --- a/bin/tscompare +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# -# Test whether $1 has a modification time -# greater than $2 -# -if test $1 -nt $2 ; then - exit 0 -fi -#echo we are here -exit 1 diff --git a/bin/tscompare_alwaystrue b/bin/tscompare_alwaystrue deleted file mode 100755 index de8a02c87..000000000 --- a/bin/tscompare_alwaystrue +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# Test whether $1 has a modification time -# greater than $2 -# -# This is the default base case, if no other -# script works. -exit 0 diff --git a/bin/tscompare_csh b/bin/tscompare_csh deleted file mode 100755 index 0b23aeac1..000000000 --- a/bin/tscompare_csh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/csh -# -# Test whether $1 has a modification time -# greater than $2 -# -test $1 -nt $2 -set tres = $status -# echo "tres = " $tres -if ( $tres == "0" ) then - exit 0 -endif -# echo we are here -exit 1 diff --git a/bin/tscompare_ksh b/bin/tscompare_ksh deleted file mode 100755 index 29fd1c9e7..000000000 --- a/bin/tscompare_ksh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/ksh -# -# Test whether $1 has a modification time -# greater than $2 -# -if test $1 -nt $2 ; then - exit 0 -fi -#echo we are here -exit 1 diff --git a/bin/tscompare_sh b/bin/tscompare_sh deleted file mode 100755 index 5309da9df..000000000 --- a/bin/tscompare_sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# -# Test whether $1 has a modification time -# greater than $2 -# -if test $1 -nt $2 ; then - exit 0 -fi -#echo we are here -exit 1 diff --git a/config.h.in b/config.h.in deleted file mode 100755 index 52d4f7eb0..000000000 --- a/config.h.in +++ /dev/null @@ -1,192 +0,0 @@ -// -// Run the 'preconfig' script to generate 'config.h' from this input file. -// -#ifndef CT_CONFIG_H -#define CT_CONFIG_H - -//---------------------------- Version Flags ------------------// -// Cantera version -> this will be a double-quoted string value -// refering to branch number within svn -#undef CANTERA_VERSION - -// Integer for major number of Cantera -#define CANTERA_VERSION_MAJORNUMBER 18 -// Flag indicating it's part of major version 18 -#define CANTERA_VERSION_18 1 -// Flag indicating it's a development version -#define CANTERA_VERSION_18_XXX 1 - -//------------------------ Development flags ------------------// -// -// Compile in additional debug printing where available. -// Note, the printing may need to be turned on via a switch. -// This just compiles in the code. -#undef DEBUG_MODE - -// Compiling with PURIFY instrumentation -#undef PURIFY_MODE - -//------------------------ Fortran settings -------------------// - - -// define types doublereal, integer, and ftnlen to match the -// corresponding Fortran data types on your system. The defaults -// are OK for most systems - -typedef double doublereal; // Fortran double precision -typedef int integer; // Fortran integer -typedef int ftnlen; // Fortran hidden string length type - - - -// Fortran compilers pass character strings in argument lists by -// adding a hidden argement with the length of the string. Some -// compilers add the hidden length argument immediately after the -// CHARACTER variable being passed, while others put all of the hidden -// length arguments at the end of the argument list. Define this if -// the lengths are at the end of the argument list. This is usually the -// case for most unix Fortran compilers, but is (by default) false for -// Visual Fortran under Windows. -#define STRING_LEN_AT_END - - -// Define this if Fortran adds a trailing underscore to names in object files. -// For linux and most unix systems, this is the case. -#undef FTN_TRAILING_UNDERSCORE - - -#undef HAS_SUNDIALS -#undef SUNDIALS_VERSION_22 -#undef SUNDIALS_VERSION_23 -#undef SUNDIALS_VERSION_24 - -//-------- LAPACK / BLAS --------- - -#undef LAPACK_FTN_STRING_LEN_AT_END -#undef LAPACK_NAMES_LOWERCASE -#undef LAPACK_FTN_TRAILING_UNDERSCORE - - -//--------- operating system -------------------------------------- - -// The configure script defines this if the operatiing system is Mac -// OS X, This used to add some Mac-specific directories to the default -// data file search path. -#undef DARWIN -#undef HAS_SSTREAM - -// Cantera version -#undef CANTERA_VERSION - -// Identify whether the operating system is cygwin's overlay of -// windows, with gcc being used as the compiler. -#undef CYGWIN - -// Identify whether the operating system is windows based, with -// microsoft vc++ being used as the compiler -#undef WINMSVC - -// Identify whether the operating system is solaris -// with a native compiler -#undef SOLARIS - -//--------- Fonts for reaction path diagrams ---------------------- -#undef RXNPATH_FONT - -//---------- C++ Compiler Variations ------------------------------ - -// This define is needed to account for the variability for how -// static variables in templated classes are defined. Right now -// this is only turned on for the SunPro compiler on solaris. -// in that system , you need to declare the static storage variable. -// with the following line in the include file -// -// template Cabinet* Cabinet::__storage; -// -// Note, on other systems that declaration is treated as a definition -// and this leads to multiple defines at link time -#undef NEEDS_GENERIC_TEMPL_STATIC_DECL - -//--------------------- Python ------------------------------------ -// This path to the python executable is created during -// Cantera's setup. It identifies the python executable -// used to run Python to process .cti files. Note that this is only -// used if environment variable PYTHON_CMD is not set. -#undef PYTHON_EXE - -// If this is defined, the Cantera Python interface will use the -// Numeric package -#undef HAS_NUMERIC - -// If this is defined, the Cantera Python interface will use the -// numarray package -#undef HAS_NUMARRAY - -// If this is defined, the Cantera Python interface will use the -// numpy package -#undef HAS_NUMPY - -// If this is defined, then python will not be assumed to be -// present to support conversions -#undef HAS_NO_PYTHON - -//--------------------- Cantera ----------------------------------- -// This is the data pathway used to locate the top of the -// build directory. -#undef CANTERA_ROOT - -// This data pathway is used to locate a directory where datafiles -// are to be found. Note, the local directory is always searched -// as well. -#undef CANTERA_DATA - - -#undef WITH_HTML_LOGS - -// define STORE_MOLE_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mole fractions. Usually -// the best choice. -#define STORE_MOLE_FRACTIONS - -// define STORE_MASS_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mass fractions. Usually -// results in slightly worse performance, but may not in all cases. -//#define STORE_MASS_FRACTIONS -#undef STORE_MASS_FRACTIONS - -//--------------------- compile options ---------------------------- -#undef USE_PCH - -#undef THREAD_SAFE_CANTERA - -//--------------------- optional phase models ---------------------- -// This define indicates the enabling of the inclusion of -// accurate liquid/vapor equations -// of state for several fluids, including water, nitrogen, hydrogen, -// oxygen, methane, andd HFC-134a. -#undef INCL_PURE_FLUIDS -#undef WITH_PURE_FLUIDS - -#undef WITH_LATTICE_SOLID -#undef WITH_METAL -#undef WITH_STOICH_SUBSTANCE -// Enable expanded thermodynamic capabilities, adding -// ideal solid solutions -#undef WITH_IDEAL_SOLUTIONS -// Enable expanded electrochemistry capabilities, include thermo -// models for electrolyte solutions. -#undef WITH_ELECTROLYTES - -#undef WITH_PRIME - -// Enable the VCS NonIdeal equilibrium solver. This is -// accessed by specifying the solver=2 option -#undef WITH_VCSNONIDEAL - -//-------------- Optional Cantera Capabilities ---------------------- - -// Enable sensitivity analysis via changing H298 directly -// for species -#undef H298MODIFY_CAPABILITY - -#endif diff --git a/config/Cantera.README b/config/Cantera.README deleted file mode 100755 index 8d1c8b69c..000000000 --- a/config/Cantera.README +++ /dev/null @@ -1 +0,0 @@ - diff --git a/config/config.guess b/config/config.guess deleted file mode 100755 index ed2e03b7f..000000000 --- a/config/config.guess +++ /dev/null @@ -1,1321 +0,0 @@ -#! /bin/sh -# Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002 Free Software Foundation, Inc. - -timestamp='2002-03-20' - -# This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. -# -# This script attempts to guess a canonical system name similar to -# config.sub. If it succeeds, it prints the system name on stdout, and -# exits with 0. Otherwise, it exits with 1. -# -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] - -Output the configuration name of the system \`$me' is run on. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.guess ($timestamp) - -Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit 0 ;; - --version | -v ) - echo "$version" ; exit 0 ;; - --help | --h* | -h ) - echo "$usage"; exit 0 ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" >&2 - exit 1 ;; - * ) - break ;; - esac -done - -if test $# != 0; then - echo "$me: too many arguments$help" >&2 - exit 1 -fi - - -dummy=dummy-$$ -trap 'rm -f $dummy.c $dummy.o $dummy.rel $dummy; exit 1' 1 2 15 - -# CC_FOR_BUILD -- compiler used by this script. -# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still -# use `HOST_CC' if defined, but it is deprecated. - -set_cc_for_build='case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int dummy(){}" > $dummy.c ; - for c in cc gcc c89 c99 ; do - ($c $dummy.c -c -o $dummy.o) >/dev/null 2>&1 ; - if test $? = 0 ; then - CC_FOR_BUILD="$c"; break ; - fi ; - done ; - rm -f $dummy.c $dummy.o $dummy.rel ; - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found ; - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac' - -# This is needed to find uname on a Pyramid OSx when run in the BSD universe. -# (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then - PATH=$PATH:/.attbin ; export PATH -fi - -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown - -# Note: order is significant - the case branches are not exclusive. - -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in - *:NetBSD:*:*) - # NetBSD (nbsd) targets should (where applicable) match one or - # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, - # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently - # switched to ELF, *-*-netbsd* would select the old - # object file format. This provides both forward - # compatibility and a consistent mechanism for selecting the - # object file format. - # - # Note: NetBSD doesn't particularly care about the vendor - # portion of the name. We always set it to "unknown". - sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` - case "${UNAME_MACHINE_ARCH}" in - arm*) machine=arm-unknown ;; - sh3el) machine=shl-unknown ;; - sh3eb) machine=sh-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; - esac - # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in - arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build - if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep __ELF__ >/dev/null - then - # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). - # Return netbsd for either. FIX? - os=netbsd - else - os=netbsdelf - fi - ;; - *) - os=netbsd - ;; - esac - # The OS release - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` - # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: - # contains redundant information, the shorter form: - # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" - exit 0 ;; - amiga:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - arc:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - hp300:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mac68k:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - macppc:OpenBSD:*:*) - echo powerpc-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvme68k:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvme88k:OpenBSD:*:*) - echo m88k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvmeppc:OpenBSD:*:*) - echo powerpc-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - pmax:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - sgi:OpenBSD:*:*) - echo mipseb-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - sun3:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - wgrisc:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - *:OpenBSD:*:*) - echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - alpha:OSF1:*:*) - if test $UNAME_RELEASE = "V4.0"; then - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` - fi - # A Vn.n version is a released version. - # A Tn.n version is a released field test version. - # A Xn.n version is an unreleased experimental baselevel. - # 1.2 uses "1.2" for uname -r. - cat <$dummy.s - .data -\$Lformat: - .byte 37,100,45,37,120,10,0 # "%d-%x\n" - - .text - .globl main - .align 4 - .ent main -main: - .frame \$30,16,\$26,0 - ldgp \$29,0(\$27) - .prologue 1 - .long 0x47e03d80 # implver \$0 - lda \$2,-1 - .long 0x47e20c21 # amask \$2,\$1 - lda \$16,\$Lformat - mov \$0,\$17 - not \$1,\$18 - jsr \$26,printf - ldgp \$29,0(\$26) - mov 0,\$16 - jsr \$26,exit - .end main -EOF - eval $set_cc_for_build - $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null - if test "$?" = 0 ; then - case `./$dummy` in - 0-0) - UNAME_MACHINE="alpha" - ;; - 1-0) - UNAME_MACHINE="alphaev5" - ;; - 1-1) - UNAME_MACHINE="alphaev56" - ;; - 1-101) - UNAME_MACHINE="alphapca56" - ;; - 2-303) - UNAME_MACHINE="alphaev6" - ;; - 2-307) - UNAME_MACHINE="alphaev67" - ;; - 2-1307) - UNAME_MACHINE="alphaev68" - ;; - esac - fi - rm -f $dummy.s $dummy - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - exit 0 ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit 0 ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit 0 ;; - Amiga*:UNIX_System_V:4.0:*) - echo m68k-unknown-sysv4 - exit 0;; - *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos - exit 0 ;; - *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos - exit 0 ;; - *:OS/390:*:*) - echo i370-ibm-openedition - exit 0 ;; - arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} - exit 0;; - SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) - echo hppa1.1-hitachi-hiuxmpp - exit 0;; - Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) - # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then - echo pyramid-pyramid-sysv3 - else - echo pyramid-pyramid-bsd - fi - exit 0 ;; - NILE*:*:*:dcosx) - echo pyramid-pyramid-svr4 - exit 0 ;; - sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; - sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; - i86pc:SunOS:5.*:*) - echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; - sun4*:SunOS:6*:*) - # According to config.sub, this is the proper way to canonicalize - # SunOS6. Hard to guess exactly what SunOS6 will be like, but - # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; - sun4*:SunOS:*:*) - case "`/usr/bin/arch -k`" in - Series*|S4*) - UNAME_RELEASE=`uname -v` - ;; - esac - # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` - exit 0 ;; - sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} - exit 0 ;; - sun*:*:4.2BSD:*) - UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 - case "`/bin/arch`" in - sun3) - echo m68k-sun-sunos${UNAME_RELEASE} - ;; - sun4) - echo sparc-sun-sunos${UNAME_RELEASE} - ;; - esac - exit 0 ;; - aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} - exit 0 ;; - # The situation for MiNT is a little confusing. The machine name - # can be virtually everything (everything which is not - # "atarist" or "atariste" at least should have a processor - # > m68000). The system name ranges from "MiNT" over "FreeMiNT" - # to the lowercase version "mint" (or "freemint"). Finally - # the system name "TOS" denotes a system which is actually not - # MiNT. But MiNT is downward compatible to TOS, so this should - # be no problem. - atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; - atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; - *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; - milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} - exit 0 ;; - hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} - exit 0 ;; - *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} - exit 0 ;; - powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} - exit 0 ;; - RISC*:Mach:*:*) - echo mips-dec-mach_bsd4.3 - exit 0 ;; - RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} - exit 0 ;; - VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} - exit 0 ;; - 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} - exit 0 ;; - mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c -#ifdef __cplusplus -#include /* for printf() prototype */ - int main (int argc, char *argv[]) { -#else - int main (argc, argv) int argc; char *argv[]; { -#endif - #if defined (host_mips) && defined (MIPSEB) - #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); - #endif - #endif - exit (-1); - } -EOF - $CC_FOR_BUILD $dummy.c -o $dummy \ - && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ - && rm -f $dummy.c $dummy && exit 0 - rm -f $dummy.c $dummy - echo mips-mips-riscos${UNAME_RELEASE} - exit 0 ;; - Motorola:PowerMAX_OS:*:*) - echo powerpc-motorola-powermax - exit 0 ;; - Night_Hawk:Power_UNIX:*:*) - echo powerpc-harris-powerunix - exit 0 ;; - m88k:CX/UX:7*:*) - echo m88k-harris-cxux7 - exit 0 ;; - m88k:*:4*:R4*) - echo m88k-motorola-sysv4 - exit 0 ;; - m88k:*:3*:R3*) - echo m88k-motorola-sysv3 - exit 0 ;; - AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures - UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] - then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] - then - echo m88k-dg-dgux${UNAME_RELEASE} - else - echo m88k-dg-dguxbcs${UNAME_RELEASE} - fi - else - echo i586-dg-dgux${UNAME_RELEASE} - fi - exit 0 ;; - M88*:DolphinOS:*:*) # DolphinOS (SVR3) - echo m88k-dolphin-sysv3 - exit 0 ;; - M88*:*:R3*:*) - # Delta 88k system running SVR3 - echo m88k-motorola-sysv3 - exit 0 ;; - XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) - echo m88k-tektronix-sysv3 - exit 0 ;; - Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) - echo m68k-tektronix-bsd - exit 0 ;; - *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` - exit 0 ;; - ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' - i*86:AIX:*:*) - echo i386-ibm-aix - exit 0 ;; - ia64:AIX:*:*) - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} - exit 0 ;; - *:AIX:2:3) - if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - - main() - { - if (!__power_pc()) - exit(1); - puts("powerpc-ibm-aix3.2.5"); - exit(0); - } -EOF - $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0 - rm -f $dummy.c $dummy - echo rs6000-ibm-aix3.2.5 - elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then - echo rs6000-ibm-aix3.2.4 - else - echo rs6000-ibm-aix3.2 - fi - exit 0 ;; - *:AIX:*:[45]) - IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then - IBM_ARCH=rs6000 - else - IBM_ARCH=powerpc - fi - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} - exit 0 ;; - *:AIX:*:*) - echo rs6000-ibm-aix - exit 0 ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) - echo romp-ibm-bsd4.4 - exit 0 ;; - ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to - exit 0 ;; # report: romp-ibm BSD 4.3 - *:BOSX:*:*) - echo rs6000-bull-bosx - exit 0 ;; - DPX/2?00:B.O.S.:*:*) - echo m68k-bull-sysv3 - exit 0 ;; - 9000/[34]??:4.3bsd:1.*:*) - echo m68k-hp-bsd - exit 0 ;; - hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) - echo m68k-hp-bsd4.4 - exit 0 ;; - 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; - 9000/[678][0-9][0-9]) - if [ -x /usr/bin/getconf ]; then - sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` - sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 - 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 - esac ;; - esac - fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - - #define _HPUX_SOURCE - #include - #include - - int main () - { - #if defined(_SC_KERNEL_BITS) - long bits = sysconf(_SC_KERNEL_BITS); - #endif - long cpu = sysconf (_SC_CPU_VERSION); - - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1"); break; - case CPU_PA_RISC2_0: - #if defined(_SC_KERNEL_BITS) - switch (bits) - { - case 64: puts ("hppa2.0w"); break; - case 32: puts ("hppa2.0n"); break; - default: puts ("hppa2.0"); break; - } break; - #else /* !defined(_SC_KERNEL_BITS) */ - puts ("hppa2.0"); break; - #endif - default: puts ("hppa1.0"); break; - } - exit (0); - } -EOF - (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null) && HP_ARCH=`./$dummy` - if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi - rm -f $dummy.c $dummy - fi ;; - esac - echo ${HP_ARCH}-hp-hpux${HPUX_REV} - exit 0 ;; - ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} - exit 0 ;; - 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - int - main () - { - long cpu = sysconf (_SC_CPU_VERSION); - /* The order matters, because CPU_IS_HP_MC68K erroneously returns - true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct - results, however. */ - if (CPU_IS_PA_RISC (cpu)) - { - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; - case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; - default: puts ("hppa-hitachi-hiuxwe2"); break; - } - } - else if (CPU_IS_HP_MC68K (cpu)) - puts ("m68k-hitachi-hiuxwe2"); - else puts ("unknown-hitachi-hiuxwe2"); - exit (0); - } -EOF - $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0 - rm -f $dummy.c $dummy - echo unknown-hitachi-hiuxwe2 - exit 0 ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) - echo hppa1.1-hp-bsd - exit 0 ;; - 9000/8??:4.3bsd:*:*) - echo hppa1.0-hp-bsd - exit 0 ;; - *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) - echo hppa1.0-hp-mpeix - exit 0 ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) - echo hppa1.1-hp-osf - exit 0 ;; - hp8??:OSF1:*:*) - echo hppa1.0-hp-osf - exit 0 ;; - i*86:OSF1:*:*) - if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk - else - echo ${UNAME_MACHINE}-unknown-osf1 - fi - exit 0 ;; - parisc*:Lites*:*:*) - echo hppa1.1-hp-lites - exit 0 ;; - C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) - echo c1-convex-bsd - exit 0 ;; - C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit 0 ;; - C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) - echo c34-convex-bsd - exit 0 ;; - C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) - echo c38-convex-bsd - exit 0 ;; - C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) - echo c4-convex-bsd - exit 0 ;; - CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; - CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ - | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ - -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ - -e 's/\.[^.]*$/.X/' - exit 0 ;; - CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; - CRAY*T3D:*:*:*) - echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; - CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; - CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; - F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` - echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit 0 ;; - i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} - exit 0 ;; - sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} - exit 0 ;; - *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} - exit 0 ;; - *:FreeBSD:*:*) - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` - exit 0 ;; - i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin - exit 0 ;; - i*:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 - exit 0 ;; - i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 - exit 0 ;; - x86:Interix*:3*) - echo i386-pc-interix3 - exit 0 ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i386-pc-interix - exit 0 ;; - i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin - exit 0 ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit 0 ;; - prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; - *:GNU:*:*) - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` - exit 0 ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix - exit 0 ;; - arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; - ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; - m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; - mips:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips - #undef mipsel - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mipsel - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips - #else - CPU= - #endif - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` - rm -f $dummy.c - test x"${CPU}" != x && echo "${CPU}-pc-linux-gnu" && exit 0 - ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit 0 ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit 0 ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit 0 ;; - parisc:Linux:*:* | hppa:Linux:*:*) - # Look for CPU level - case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; - esac - exit 0 ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu - exit 0 ;; - s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux - exit 0 ;; - sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; - sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; - x86_64:Linux:*:*) - echo x86_64-unknown-linux-gnu - exit 0 ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit 0 ;; - coff-i386) - echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit 0 ;; - "") - # Either a pre-BFD a.out linker (linux-gnuoldld) or - # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit 0 ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #ifdef __INTEL_COMPILER - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` - rm -f $dummy.c - test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0 - test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 - ;; - i*86:DYNIX/ptx:4*:*) - # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. - # earlier versions are messed up and put the nodename in both - # sysname and nodename. - echo i386-sequent-sysv4 - exit 0 ;; - i*86:UNIX_SV:4.2MP:2.*) - # Unixware is an offshoot of SVR4, but it has its own version - # number series starting with 2... - # I am not positive that other SVR4 systems won't match this, - # I just have to hope. -- rms. - # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} - exit 0 ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` - if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} - else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} - fi - exit 0 ;; - i*86:*:5:[78]*) - case `/bin/uname -X | grep "^Machine"` in - *486*) UNAME_MACHINE=i486 ;; - *Pentium) UNAME_MACHINE=i586 ;; - *Pent*|*Celeron) UNAME_MACHINE=i686 ;; - esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} - exit 0 ;; - i*86:*:3.2:*) - if test -f /usr/options/cb.name; then - UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` - (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 - (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ - && UNAME_MACHINE=i586 - (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) \ - && UNAME_MACHINE=i686 - (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \ - && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL - else - echo ${UNAME_MACHINE}-pc-sysv32 - fi - exit 0 ;; - i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp - exit 0 ;; - pc:*:*:*) - # Left here for compatibility: - # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i386. - echo i386-pc-msdosdjgpp - exit 0 ;; - Intel:Mach:3*:*) - echo i386-pc-mach3 - exit 0 ;; - paragon:*:*:*) - echo i860-intel-osf1 - exit 0 ;; - i860:*:4.*:*) # i860-SVR4 - if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 - else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 - fi - exit 0 ;; - mini*:CTIX:SYS*5:*) - # "miniframe" - echo m68010-convergent-sysv - exit 0 ;; - M68*:*:R3V[567]*:*) - test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; - 3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0) - OS_REL='' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && echo i486-ncr-sysv4.3${OS_REL} && exit 0 - /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; - 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && echo i486-ncr-sysv4 && exit 0 ;; - m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; - mc68030:UNIX_System_V:4.*:*) - echo m68k-atari-sysv4 - exit 0 ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; - TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; - rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; - SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} - exit 0 ;; - RM*:ReliantUNIX-*:*:*) - echo mips-sni-sysv4 - exit 0 ;; - RM*:SINIX-*:*:*) - echo mips-sni-sysv4 - exit 0 ;; - *:SINIX-*:*:*) - if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 - else - echo ns32k-sni-sysv - fi - exit 0 ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort - # says - echo i586-unisys-sysv4 - exit 0 ;; - *:UNIX_System_V:4*:FTX*) - # From Gerald Hewes . - # How about differentiating between stratus architectures? -djm - echo hppa1.1-stratus-sysv4 - exit 0 ;; - *:*:*:FTX*) - # From seanf@swdc.stratus.com. - echo i860-stratus-sysv4 - exit 0 ;; - *:VOS:*:*) - # From Paul.Green@stratus.com. - echo hppa1.1-stratus-vos - exit 0 ;; - mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} - exit 0 ;; - news*:NEWS-OS:6*:*) - echo mips-sony-newsos6 - exit 0 ;; - R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) - if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} - else - echo mips-unknown-sysv${UNAME_RELEASE} - fi - exit 0 ;; - BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. - echo powerpc-be-beos - exit 0 ;; - BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. - echo powerpc-apple-beos - exit 0 ;; - BePC:BeOS:*:*) # BeOS running on Intel PC compatible. - echo i586-pc-beos - exit 0 ;; - SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} - exit 0 ;; - SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} - exit 0 ;; - Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} - exit 0 ;; - *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} - exit 0 ;; - *:Darwin:*:*) - echo `uname -p`-apple-darwin${UNAME_RELEASE} - exit 0 ;; - *:procnto*:*:* | *:QNX:[0123456789]*:*) - UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = "x86"; then - UNAME_PROCESSOR=i386 - UNAME_MACHINE=pc - fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} - exit 0 ;; - *:QNX:*:4*) - echo i386-pc-qnx - exit 0 ;; - NSR-[GKLNPTVW]:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} - exit 0 ;; - *:NonStop-UX:*:*) - echo mips-compaq-nonstopux - exit 0 ;; - BS2000:POSIX*:*:*) - echo bs2000-siemens-sysv - exit 0 ;; - DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} - exit 0 ;; - *:Plan9:*:*) - # "uname -m" is not consistent, so use $cputype instead. 386 - # is converted to i386 for consistency with other x86 - # operating systems. - if test "$cputype" = "386"; then - UNAME_MACHINE=i386 - else - UNAME_MACHINE="$cputype" - fi - echo ${UNAME_MACHINE}-unknown-plan9 - exit 0 ;; - i*86:OS/2:*:*) - # If we were able to find `uname', then EMX Unix compatibility - # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx - exit 0 ;; - *:TOPS-10:*:*) - echo pdp10-unknown-tops10 - exit 0 ;; - *:TENEX:*:*) - echo pdp10-unknown-tenex - exit 0 ;; - KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) - echo pdp10-dec-tops20 - exit 0 ;; - XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) - echo pdp10-xkl-tops20 - exit 0 ;; - *:TOPS-20:*:*) - echo pdp10-unknown-tops20 - exit 0 ;; - *:ITS:*:*) - echo pdp10-unknown-its - exit 0 ;; - i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop - exit 0 ;; - i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos - exit 0 ;; -esac - -#echo '(No uname command or uname output not recognized.)' 1>&2 -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 - -eval $set_cc_for_build -cat >$dummy.c < -# include -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) - /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, - I don't know.... */ - printf ("mips-sony-bsd\n"); exit (0); -#else -#include - printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 - "4" -#else - "" -#endif - ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) - printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif - int version; - version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; - if (version < 4) - printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); - else - printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); - exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) - printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) - printf ("ns32k-encore-mach\n"); exit (0); -#else - printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) - printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) - printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) - printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) - struct utsname un; - - uname(&un); - - if (strncmp(un.version, "V2", 2) == 0) { - printf ("i386-sequent-ptx2\n"); exit (0); - } - if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ - printf ("i386-sequent-ptx1\n"); exit (0); - } - printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -# include -# if defined (BSD) -# if BSD == 43 - printf ("vax-dec-bsd4.3\n"); exit (0); -# else -# if BSD == 199006 - printf ("vax-dec-bsd4.3reno\n"); exit (0); -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# endif -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# else - printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) - printf ("i860-alliant-bsd\n"); exit (0); -#endif - - exit (1); -} -EOF - -$CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm -f $dummy.c $dummy && exit 0 -rm -f $dummy.c $dummy - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then - case `getsysinfo -f cpu_type` in - c1*) - echo c1-convex-bsd - exit 0 ;; - c2*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit 0 ;; - c34*) - echo c34-convex-bsd - exit 0 ;; - c38*) - echo c38-convex-bsd - exit 0 ;; - c4*) - echo c4-convex-bsd - exit 0 ;; - esac -fi - -cat >&2 < in order to provide the needed -information to handle your system. - -config.guess timestamp = $timestamp - -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` - -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` - -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} -EOF - -exit 1 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/config/config.h.in b/config/config.h.in deleted file mode 100755 index e8506e7ba..000000000 --- a/config/config.h.in +++ /dev/null @@ -1,12 +0,0 @@ - -// define STORE_MOLE_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mole fractions. Usually -// the best choice. -#define STORE_MOLE_FRACTIONS - -// define STORE_MASS_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mass fractions. Usually -// results in slightly worse performance, but may not in all cases. -//#define STORE_MASS_FRACTIONS -#undef STORE_MASS_FRACTIONS - diff --git a/config/config.sub b/config/config.sub deleted file mode 100755 index f3657978c..000000000 --- a/config/config.sub +++ /dev/null @@ -1,1443 +0,0 @@ -#! /bin/sh -# Configuration validation subroutine script. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002 Free Software Foundation, Inc. - -timestamp='2002-03-07' - -# This file is (in principle) common to ALL GNU software. -# The presence of a machine in this file suggests that SOME GNU software -# can handle that machine. It does not imply ALL GNU software can. -# -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. -# -# Configuration subroutine to validate and canonicalize a configuration type. -# Supply the specified configuration type as an argument. -# If it is invalid, we print an error message on stderr and exit with code 1. -# Otherwise, we print the canonical config type on stdout and succeed. - -# This file is supposed to be the same for all GNU packages -# and recognize all the CPU types, system types and aliases -# that are meaningful with *any* GNU software. -# Each package is responsible for reporting which valid configurations -# it does not support. The user should be able to distinguish -# a failure to support a valid configuration from a meaningless -# configuration. - -# The goal of this file is to map all the various variations of a given -# machine specification into a single specification in the form: -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or in some cases, the newer four-part form: -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# It is wrong to echo any other type of specification. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS - $0 [OPTION] ALIAS - -Canonicalize a configuration name. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.sub ($timestamp) - -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit 0 ;; - --version | -v ) - echo "$version" ; exit 0 ;; - --help | --h* | -h ) - echo "$usage"; exit 0 ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" - exit 1 ;; - - *local*) - # First pass through any local machine types. - echo $1 - exit 0;; - - * ) - break ;; - esac -done - -case $# in - 0) echo "$me: missing argument$help" >&2 - exit 1;; - 1) ;; - *) echo "$me: too many arguments$help" >&2 - exit 1;; -esac - -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` -case $maybe_os in - nto-qnx* | linux-gnu* | storm-chaos* | os2-emx* | windows32-* | rtmk-nova*) - os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` - ;; - *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` - else os=; fi - ;; -esac - -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work. We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in - -sun*os*) - # Prevent following clause from handling this invalid input. - ;; - -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ - -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ - -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis) - os= - basic_machine=$1 - ;; - -sim | -cisco | -oki | -wec | -winbond) - os= - basic_machine=$1 - ;; - -scout) - ;; - -wrs) - os=-vxworks - basic_machine=$1 - ;; - -chorusos*) - os=-chorusos - basic_machine=$1 - ;; - -chorusrdb) - os=-chorusrdb - basic_machine=$1 - ;; - -hiux*) - os=-hiuxwe2 - ;; - -sco5) - os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco4) - os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2.[4-9]*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2v[4-9]*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco*) - os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -isc) - os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -clix*) - basic_machine=clipper-intergraph - ;; - -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -lynx*) - os=-lynxos - ;; - -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` - ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` - ;; - -psos*) - os=-psos - ;; - -mint | -mint[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; -esac - -# Decode aliases for certain CPU-COMPANY combinations. -case $basic_machine in - # Recognize the basic CPU types without company name. - # Some are omitted here because they have special meanings below. - 1750a | 580 \ - | a29k \ - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ - | c4x | clipper \ - | d10v | d30v | dsp16xx \ - | fr30 \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ - | i370 | i860 | i960 | ia64 \ - | m32r | m68000 | m68k | m88k | mcore \ - | mips | mips16 | mips64 | mips64el | mips64orion | mips64orionel \ - | mips64vr4100 | mips64vr4100el | mips64vr4300 \ - | mips64vr4300el | mips64vr5000 | mips64vr5000el \ - | mipsbe | mipseb | mipsel | mipsle | mipstx39 | mipstx39el \ - | mipsisa32 | mipsisa64 \ - | mn10200 | mn10300 \ - | ns16k | ns32k \ - | openrisc | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ - | pyramid \ - | sh | sh[34] | sh[34]eb | shbe | shle | sh64 \ - | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ - | strongarm \ - | tahoe | thumb | tic80 | tron \ - | v850 | v850e \ - | we32k \ - | x86 | xscale | xstormy16 | xtensa \ - | z8k) - basic_machine=$basic_machine-unknown - ;; - m6811 | m68hc11 | m6812 | m68hc12) - # Motorola 68HC11/12. - basic_machine=$basic_machine-unknown - os=-none - ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) - ;; - - # We use `pc' rather than `unknown' - # because (1) that's what they normally are, and - # (2) the word "unknown" tends to confuse beginning users. - i*86 | x86_64) - basic_machine=$basic_machine-pc - ;; - # Object if more than one company name word. - *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; - # Recognize the basic CPU types with company name. - 580-* \ - | a29k-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armv*-* \ - | avr-* \ - | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c54x-* \ - | clipper-* | cydra-* \ - | d10v-* | d30v-* \ - | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | fx80-* \ - | h8300-* | h8500-* \ - | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ - | i*86-* | i860-* | i960-* | ia64-* \ - | m32r-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | mcore-* \ - | mips-* | mips16-* | mips64-* | mips64el-* | mips64orion-* \ - | mips64orionel-* | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* | mipsbe-* | mipseb-* \ - | mipsle-* | mipsel-* | mipstx39-* | mipstx39el-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | orion-* \ - | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ - | pyramid-* \ - | romp-* | rs6000-* \ - | sh-* | sh[34]-* | sh[34]eb-* | shbe-* | shle-* | sh64-* \ - | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ - | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \ - | v850-* | v850e-* | vax-* \ - | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ - | xtensa-* \ - | ymp-* \ - | z8k-*) - ;; - # Recognize the various machine names and aliases which stand - # for a CPU type and a company and sometimes even an OS. - 386bsd) - basic_machine=i386-unknown - os=-bsd - ;; - 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) - basic_machine=m68000-att - ;; - 3b*) - basic_machine=we32k-att - ;; - a29khif) - basic_machine=a29k-amd - os=-udi - ;; - adobe68k) - basic_machine=m68010-adobe - os=-scout - ;; - alliant | fx80) - basic_machine=fx80-alliant - ;; - altos | altos3068) - basic_machine=m68k-altos - ;; - am29k) - basic_machine=a29k-none - os=-bsd - ;; - amdahl) - basic_machine=580-amdahl - os=-sysv - ;; - amiga | amiga-*) - basic_machine=m68k-unknown - ;; - amigaos | amigados) - basic_machine=m68k-unknown - os=-amigaos - ;; - amigaunix | amix) - basic_machine=m68k-unknown - os=-sysv4 - ;; - apollo68) - basic_machine=m68k-apollo - os=-sysv - ;; - apollo68bsd) - basic_machine=m68k-apollo - os=-bsd - ;; - aux) - basic_machine=m68k-apple - os=-aux - ;; - balance) - basic_machine=ns32k-sequent - os=-dynix - ;; - c90) - basic_machine=c90-cray - os=-unicos - ;; - convex-c1) - basic_machine=c1-convex - os=-bsd - ;; - convex-c2) - basic_machine=c2-convex - os=-bsd - ;; - convex-c32) - basic_machine=c32-convex - os=-bsd - ;; - convex-c34) - basic_machine=c34-convex - os=-bsd - ;; - convex-c38) - basic_machine=c38-convex - os=-bsd - ;; - cray | j90) - basic_machine=j90-cray - os=-unicos - ;; - crds | unos) - basic_machine=m68k-crds - ;; - cris | cris-* | etrax*) - basic_machine=cris-axis - ;; - da30 | da30-*) - basic_machine=m68k-da30 - ;; - decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) - basic_machine=mips-dec - ;; - decsystem10* | dec10*) - basic_machine=pdp10-dec - os=-tops10 - ;; - decsystem20* | dec20*) - basic_machine=pdp10-dec - os=-tops20 - ;; - delta | 3300 | motorola-3300 | motorola-delta \ - | 3300-motorola | delta-motorola) - basic_machine=m68k-motorola - ;; - delta88) - basic_machine=m88k-motorola - os=-sysv3 - ;; - dpx20 | dpx20-*) - basic_machine=rs6000-bull - os=-bosx - ;; - dpx2* | dpx2*-bull) - basic_machine=m68k-bull - os=-sysv3 - ;; - ebmon29k) - basic_machine=a29k-amd - os=-ebmon - ;; - elxsi) - basic_machine=elxsi-elxsi - os=-bsd - ;; - encore | umax | mmax) - basic_machine=ns32k-encore - ;; - es1800 | OSE68k | ose68k | ose | OSE) - basic_machine=m68k-ericsson - os=-ose - ;; - fx2800) - basic_machine=i860-alliant - ;; - genix) - basic_machine=ns32k-ns - ;; - gmicro) - basic_machine=tron-gmicro - os=-sysv - ;; - go32) - basic_machine=i386-pc - os=-go32 - ;; - h3050r* | hiux*) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - h8300hms) - basic_machine=h8300-hitachi - os=-hms - ;; - h8300xray) - basic_machine=h8300-hitachi - os=-xray - ;; - h8500hms) - basic_machine=h8500-hitachi - os=-hms - ;; - harris) - basic_machine=m88k-harris - os=-sysv3 - ;; - hp300-*) - basic_machine=m68k-hp - ;; - hp300bsd) - basic_machine=m68k-hp - os=-bsd - ;; - hp300hpux) - basic_machine=m68k-hp - os=-hpux - ;; - hp3k9[0-9][0-9] | hp9[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k2[0-9][0-9] | hp9k31[0-9]) - basic_machine=m68000-hp - ;; - hp9k3[2-9][0-9]) - basic_machine=m68k-hp - ;; - hp9k6[0-9][0-9] | hp6[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k7[0-79][0-9] | hp7[0-79][0-9]) - basic_machine=hppa1.1-hp - ;; - hp9k78[0-9] | hp78[0-9]) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][13679] | hp8[0-9][13679]) - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][0-9] | hp8[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hppa-next) - os=-nextstep3 - ;; - hppaosf) - basic_machine=hppa1.1-hp - os=-osf - ;; - hppro) - basic_machine=hppa1.1-hp - os=-proelf - ;; - i370-ibm* | ibm*) - basic_machine=i370-ibm - ;; -# I'm not sure what "Sysv32" means. Should this be sysv3.2? - i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv32 - ;; - i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv4 - ;; - i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv - ;; - i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-solaris2 - ;; - i386mach) - basic_machine=i386-mach - os=-mach - ;; - i386-vsta | vsta) - basic_machine=i386-unknown - os=-vsta - ;; - iris | iris4d) - basic_machine=mips-sgi - case $os in - -irix*) - ;; - *) - os=-irix4 - ;; - esac - ;; - isi68 | isi) - basic_machine=m68k-isi - os=-sysv - ;; - m88k-omron*) - basic_machine=m88k-omron - ;; - magnum | m3230) - basic_machine=mips-mips - os=-sysv - ;; - merlin) - basic_machine=ns32k-utek - os=-sysv - ;; - mingw32) - basic_machine=i386-pc - os=-mingw32 - ;; - miniframe) - basic_machine=m68000-convergent - ;; - *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; - mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` - ;; - mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown - ;; - mmix*) - basic_machine=mmix-knuth - os=-mmixware - ;; - monitor) - basic_machine=m68k-rom68k - os=-coff - ;; - morphos) - basic_machine=powerpc-unknown - os=-morphos - ;; - msdos) - basic_machine=i386-pc - os=-msdos - ;; - mvs) - basic_machine=i370-ibm - os=-mvs - ;; - ncr3000) - basic_machine=i486-ncr - os=-sysv4 - ;; - netbsd386) - basic_machine=i386-unknown - os=-netbsd - ;; - netwinder) - basic_machine=armv4l-rebel - os=-linux - ;; - news | news700 | news800 | news900) - basic_machine=m68k-sony - os=-newsos - ;; - news1000) - basic_machine=m68030-sony - os=-newsos - ;; - news-3600 | risc-news) - basic_machine=mips-sony - os=-newsos - ;; - necv70) - basic_machine=v70-nec - os=-sysv - ;; - next | m*-next ) - basic_machine=m68k-next - case $os in - -nextstep* ) - ;; - -ns2*) - os=-nextstep2 - ;; - *) - os=-nextstep3 - ;; - esac - ;; - nh3000) - basic_machine=m68k-harris - os=-cxux - ;; - nh[45]000) - basic_machine=m88k-harris - os=-cxux - ;; - nindy960) - basic_machine=i960-intel - os=-nindy - ;; - mon960) - basic_machine=i960-intel - os=-mon960 - ;; - nonstopux) - basic_machine=mips-compaq - os=-nonstopux - ;; - np1) - basic_machine=np1-gould - ;; - nsr-tandem) - basic_machine=nsr-tandem - ;; - op50n-* | op60c-*) - basic_machine=hppa1.1-oki - os=-proelf - ;; - or32 | or32-*) - basic_machine=or32-unknown - os=-coff - ;; - OSE68000 | ose68000) - basic_machine=m68000-ericsson - os=-ose - ;; - os68k) - basic_machine=m68k-none - os=-os68k - ;; - pa-hitachi) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - paragon) - basic_machine=i860-intel - os=-osf - ;; - pbd) - basic_machine=sparc-tti - ;; - pbb) - basic_machine=m68k-tti - ;; - pc532 | pc532-*) - basic_machine=ns32k-pc532 - ;; - pentium | p5 | k5 | k6 | nexgen | viac3) - basic_machine=i586-pc - ;; - pentiumpro | p6 | 6x86 | athlon) - basic_machine=i686-pc - ;; - pentiumii | pentium2) - basic_machine=i686-pc - ;; - pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumii-* | pentium2-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pn) - basic_machine=pn-gould - ;; - power) basic_machine=power-ibm - ;; - ppc) basic_machine=powerpc-unknown - ;; - ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppcle | powerpclittle | ppc-le | powerpc-little) - basic_machine=powerpcle-unknown - ;; - ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64) basic_machine=powerpc64-unknown - ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) - basic_machine=powerpc64le-unknown - ;; - ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ps2) - basic_machine=i386-ibm - ;; - pw32) - basic_machine=i586-unknown - os=-pw32 - ;; - rom68k) - basic_machine=m68k-rom68k - os=-coff - ;; - rm[46]00) - basic_machine=mips-siemens - ;; - rtpc | rtpc-*) - basic_machine=romp-ibm - ;; - s390 | s390-*) - basic_machine=s390-ibm - ;; - s390x | s390x-*) - basic_machine=s390x-ibm - ;; - sa29200) - basic_machine=a29k-amd - os=-udi - ;; - sequent) - basic_machine=i386-sequent - ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; - sparclite-wrs | simso-wrs) - basic_machine=sparclite-wrs - os=-vxworks - ;; - sps7) - basic_machine=m68k-bull - os=-sysv2 - ;; - spur) - basic_machine=spur-unknown - ;; - st2000) - basic_machine=m68k-tandem - ;; - stratus) - basic_machine=i860-stratus - os=-sysv4 - ;; - sun2) - basic_machine=m68000-sun - ;; - sun2os3) - basic_machine=m68000-sun - os=-sunos3 - ;; - sun2os4) - basic_machine=m68000-sun - os=-sunos4 - ;; - sun3os3) - basic_machine=m68k-sun - os=-sunos3 - ;; - sun3os4) - basic_machine=m68k-sun - os=-sunos4 - ;; - sun4os3) - basic_machine=sparc-sun - os=-sunos3 - ;; - sun4os4) - basic_machine=sparc-sun - os=-sunos4 - ;; - sun4sol2) - basic_machine=sparc-sun - os=-solaris2 - ;; - sun3 | sun3-*) - basic_machine=m68k-sun - ;; - sun4) - basic_machine=sparc-sun - ;; - sun386 | sun386i | roadrunner) - basic_machine=i386-sun - ;; - sv1) - basic_machine=sv1-cray - os=-unicos - ;; - symmetry) - basic_machine=i386-sequent - os=-dynix - ;; - t3d) - basic_machine=alpha-cray - os=-unicos - ;; - t3e) - basic_machine=alphaev5-cray - os=-unicos - ;; - t90) - basic_machine=t90-cray - os=-unicos - ;; - tic54x | c54x*) - basic_machine=tic54x-unknown - os=-coff - ;; - tx39) - basic_machine=mipstx39-unknown - ;; - tx39el) - basic_machine=mipstx39el-unknown - ;; - toad1) - basic_machine=pdp10-xkl - os=-tops20 - ;; - tower | tower-32) - basic_machine=m68k-ncr - ;; - udi29k) - basic_machine=a29k-amd - os=-udi - ;; - ultra3) - basic_machine=a29k-nyu - os=-sym1 - ;; - v810 | necv810) - basic_machine=v810-nec - os=-none - ;; - vaxv) - basic_machine=vax-dec - os=-sysv - ;; - vms) - basic_machine=vax-dec - os=-vms - ;; - vpp*|vx|vx-*) - basic_machine=f301-fujitsu - ;; - vxworks960) - basic_machine=i960-wrs - os=-vxworks - ;; - vxworks68) - basic_machine=m68k-wrs - os=-vxworks - ;; - vxworks29k) - basic_machine=a29k-wrs - os=-vxworks - ;; - w65*) - basic_machine=w65-wdc - os=-none - ;; - w89k-*) - basic_machine=hppa1.1-winbond - os=-proelf - ;; - windows32) - basic_machine=i386-pc - os=-windows32-msvcrt - ;; - xps | xps100) - basic_machine=xps100-honeywell - ;; - ymp) - basic_machine=ymp-cray - os=-unicos - ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - none) - basic_machine=none-none - os=-none - ;; - -# Here we handle the default manufacturer of certain CPU types. It is in -# some cases the only manufacturer, in others, it is the most popular. - w89k) - basic_machine=hppa1.1-winbond - ;; - op50n) - basic_machine=hppa1.1-oki - ;; - op60c) - basic_machine=hppa1.1-oki - ;; - romp) - basic_machine=romp-ibm - ;; - rs6000) - basic_machine=rs6000-ibm - ;; - vax) - basic_machine=vax-dec - ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; - pdp11) - basic_machine=pdp11-dec - ;; - we32k) - basic_machine=we32k-att - ;; - sh3 | sh4 | sh3eb | sh4eb) - basic_machine=sh-unknown - ;; - sh64) - basic_machine=sh64-unknown - ;; - sparc | sparcv9 | sparcv9b) - basic_machine=sparc-sun - ;; - cydra) - basic_machine=cydra-cydrome - ;; - orion) - basic_machine=orion-highlevel - ;; - orion105) - basic_machine=clipper-highlevel - ;; - mac | mpw | mac-mpw) - basic_machine=m68k-apple - ;; - pmac | pmac-mpw) - basic_machine=powerpc-apple - ;; - c4x*) - basic_machine=c4x-none - os=-coff - ;; - *-unknown) - # Make sure to match an already-canonicalized machine name. - ;; - *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; -esac - -# Here we canonicalize certain aliases for manufacturers. -case $basic_machine in - *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` - ;; - *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` - ;; - *) - ;; -esac - -# Decode manufacturer-specific aliases for certain operating systems. - -if [ x"$os" != x"" ] -then -case $os in - # First match some system type aliases - # that might get confused with valid system types. - # -solaris* is a basic system type, with this one exception. - -solaris1 | -solaris1.*) - os=`echo $os | sed -e 's|solaris1|sunos4|'` - ;; - -solaris) - os=-solaris2 - ;; - -svr4*) - os=-sysv4 - ;; - -unixware*) - os=-sysv4.2uw - ;; - -gnu/linux*) - os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` - ;; - # First accept the basic system types. - # The portable systems comes first. - # Each alternative MUST END IN A *, to match a version number. - # -sysv* is not here because it comes later, after sysvr4. - -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ - | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* \ - | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ - | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ - | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ - | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ - | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* \ - | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ - | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ - | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova*) - # Remember, each alternative MUST END IN *, to match a version number. - ;; - -qnx*) - case $basic_machine in - x86-* | i*86-*) - ;; - *) - os=-nto$os - ;; - esac - ;; - -nto*) - os=-nto-qnx - ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ - | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) - ;; - -mac*) - os=`echo $os | sed -e 's|mac|macos|'` - ;; - -linux*) - os=`echo $os | sed -e 's|linux|linux-gnu|'` - ;; - -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` - ;; - -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` - ;; - -opened*) - os=-openedition - ;; - -wince*) - os=-wince - ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; - -utek*) - os=-bsd - ;; - -dynix*) - os=-bsd - ;; - -acis*) - os=-aos - ;; - -atheos*) - os=-atheos - ;; - -386bsd) - os=-bsd - ;; - -ctix* | -uts*) - os=-sysv - ;; - -nova*) - os=-rtmk-nova - ;; - -ns2 ) - os=-nextstep2 - ;; - -nsk*) - os=-nsk - ;; - # Preserve the version number of sinix5. - -sinix5.*) - os=`echo $os | sed -e 's|sinix|sysv|'` - ;; - -sinix*) - os=-sysv4 - ;; - -triton*) - os=-sysv3 - ;; - -oss*) - os=-sysv3 - ;; - -svr4) - os=-sysv4 - ;; - -svr3) - os=-sysv3 - ;; - -sysvr4) - os=-sysv4 - ;; - # This must come after -sysvr4. - -sysv*) - ;; - -ose*) - os=-ose - ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint - ;; - -none) - ;; - *) - # Get rid of the `-' at the beginning of $os. - os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 - exit 1 - ;; -esac -else - -# Here we handle the default operating systems that come with various machines. -# The value should be what the vendor currently ships out the door with their -# machine or put another way, the most popular os provided with the machine. - -# Note that if you're going to try to match "-MANUFACTURER" here (say, -# "-sun"), then you have to tell the case statement up towards the top -# that MANUFACTURER isn't an operating system. Otherwise, code above -# will signal an error saying that MANUFACTURER isn't an operating -# system, and we'll never get to this point. - -case $basic_machine in - *-acorn) - os=-riscix1.2 - ;; - arm*-rebel) - os=-linux - ;; - arm*-semi) - os=-aout - ;; - # This must come before the *-dec entry. - pdp10-*) - os=-tops20 - ;; - pdp11-*) - os=-none - ;; - *-dec | vax-*) - os=-ultrix4.2 - ;; - m68*-apollo) - os=-domain - ;; - i386-sun) - os=-sunos4.0.2 - ;; - m68000-sun) - os=-sunos3 - # This also exists in the configure program, but was not the - # default. - # os=-sunos4 - ;; - m68*-cisco) - os=-aout - ;; - mips*-cisco) - os=-elf - ;; - mips*-*) - os=-elf - ;; - or32-*) - os=-coff - ;; - *-tti) # must be before sparc entry or we get the wrong os. - os=-sysv3 - ;; - sparc-* | *-sun) - os=-sunos4.1.1 - ;; - *-be) - os=-beos - ;; - *-ibm) - os=-aix - ;; - *-wec) - os=-proelf - ;; - *-winbond) - os=-proelf - ;; - *-oki) - os=-proelf - ;; - *-hp) - os=-hpux - ;; - *-hitachi) - os=-hiux - ;; - i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) - os=-sysv - ;; - *-cbm) - os=-amigaos - ;; - *-dg) - os=-dgux - ;; - *-dolphin) - os=-sysv3 - ;; - m68k-ccur) - os=-rtu - ;; - m88k-omron*) - os=-luna - ;; - *-next ) - os=-nextstep - ;; - *-sequent) - os=-ptx - ;; - *-crds) - os=-unos - ;; - *-ns) - os=-genix - ;; - i370-*) - os=-mvs - ;; - *-next) - os=-nextstep3 - ;; - *-gould) - os=-sysv - ;; - *-highlevel) - os=-bsd - ;; - *-encore) - os=-bsd - ;; - *-sgi) - os=-irix - ;; - *-siemens) - os=-sysv4 - ;; - *-masscomp) - os=-rtu - ;; - f30[01]-fujitsu | f700-fujitsu) - os=-uxpv - ;; - *-rom68k) - os=-coff - ;; - *-*bug) - os=-coff - ;; - *-apple) - os=-macos - ;; - *-atari*) - os=-mint - ;; - *) - os=-none - ;; -esac -fi - -# Here we handle the case where we know the os, and the CPU type, but not the -# manufacturer. We pick the logical manufacturer. -vendor=unknown -case $basic_machine in - *-unknown) - case $os in - -riscix*) - vendor=acorn - ;; - -sunos*) - vendor=sun - ;; - -aix*) - vendor=ibm - ;; - -beos*) - vendor=be - ;; - -hpux*) - vendor=hp - ;; - -mpeix*) - vendor=hp - ;; - -hiux*) - vendor=hitachi - ;; - -unos*) - vendor=crds - ;; - -dgux*) - vendor=dg - ;; - -luna*) - vendor=omron - ;; - -genix*) - vendor=ns - ;; - -mvs* | -opened*) - vendor=ibm - ;; - -ptx*) - vendor=sequent - ;; - -vxsim* | -vxworks*) - vendor=wrs - ;; - -aux*) - vendor=apple - ;; - -hms*) - vendor=hitachi - ;; - -mpw* | -macos*) - vendor=apple - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - vendor=atari - ;; - -vos*) - vendor=stratus - ;; - esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` - ;; -esac - -echo $basic_machine$os -exit 0 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/config/configure b/config/configure deleted file mode 100755 index 89884345c..000000000 --- a/config/configure +++ /dev/null @@ -1,6146 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.57. -# -# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 -# Free Software Foundation, Inc. -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi - -# Support unset when possible. -if (FOO=FOO; unset FOO) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -exec 6>&1 - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_config_libobj_dir=. -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} - -# Maximum number of lines to put in a shell here document. -# This variable seems obsolete. It should probably be removed, and -# only ac_max_sed_lines should be used. -: ${ac_max_here_lines=38} - -# Identity of this package. -PACKAGE_NAME= -PACKAGE_TARNAME= -PACKAGE_VERSION= -PACKAGE_STRING= -PACKAGE_BUGREPORT= - -ac_unique_file="Cantera.README" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS BITCOMPILE BITHARDWARE BITCHANGE CVF_LIBDIR ldemulationarg USE_CLIB_DLL local_inst local_python_inst python_prefix python_win_prefix ctversion homedir ct_libdir ct_bindir ct_incdir ct_incroot ct_datadir ct_demodir ct_templdir ct_tutdir ct_docdir ct_dir ct_mandir COMPACT_INSTALL build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os username ctroot buildinc buildlib buildbin MAKE ARCHIVE DO_RANLIB RANLIB SOEXT SHARED PIC LCXX_FLAGS LCXX_END_LIBS CXX_INCLUDES USERDIR INCL_USER_CODE CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT use_sundials CVODE_LIBS sundials_include phase_object_files phase_header_files COMPILE_CATHERMO KERNEL KERNEL_OBJ BUILD_CK LIB_DIR build_lapack build_blas BLAS_LAPACK_LIBS BLAS_LAPACK_DIR build_with_f2c LOCAL_LIB_DIRS LOCAL_LIBS CT_SHARED_LIB F77FLAGS PYTHON_CMD BUILD_PYTHON NUMARRAY_INC_DIR NUMARRAY_HOME CANTERA_PYTHON_HOME CVSTAG MATLAB_CMD BUILD_MATLAB BUILD_CLIB export_name INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CXX CXXFLAGS ac_ct_CXX F77 FFLAGS ac_ct_F77 FLIBS F90 BUILD_F90 F90FLAGS F90BUILDFLAGS precompile_headers CXX_DEPENDS OS_IS_DARWIN OS_IS_WIN OS_IS_CYGWIN SHARED_CTLIB mex_ext F77_EXT CXX_EXT OBJ_EXT EXE_EXT math_libs SO LDSHARED EXTRA_LINK LIBOBJS LTLIBOBJS' -ac_subst_files='' - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datadir='${prefix}/share' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -libdir='${exec_prefix}/lib' -includedir='${prefix}/include' -oldincludedir='/usr/include' -infodir='${prefix}/info' -mandir='${prefix}/man' - -ac_prev= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval "$ac_prev=\$ac_option" - ac_prev= - continue - fi - - ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_option in - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad | --data | --dat | --da) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ - | --da=*) - datadir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - eval "enable_$ac_feature=no" ;; - - -enable-* | --enable-*) - ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; - *) ac_optarg=yes ;; - esac - eval "enable_$ac_feature='$ac_optarg'" ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst \ - | --locals | --local | --loca | --loc | --lo) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* \ - | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package| sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; - *) ac_optarg=yes ;; - esac - eval "with_$ac_package='$ac_optarg'" ;; - - -without-* | --without-*) - ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/-/_/g'` - eval "with_$ac_package=no" ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) { echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 - { (exit 1); exit 1; }; } - ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` - eval "$ac_envvar='$ac_optarg'" - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - { echo "$as_me: error: missing argument to $ac_option" >&2 - { (exit 1); exit 1; }; } -fi - -# Be sure to have absolute paths. -for ac_var in exec_prefix prefix -do - eval ac_val=$`echo $ac_var` - case $ac_val in - [\\/$]* | ?:[\\/]* | NONE | '' ) ;; - *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; };; - esac -done - -# Be sure to have absolute paths. -for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ - localstatedir libdir includedir oldincludedir infodir mandir -do - eval ac_val=$`echo $ac_var` - case $ac_val in - [\\/$]* | ?:[\\/]* ) ;; - *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; };; - esac -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then its parent. - ac_confdir=`(dirname "$0") 2>/dev/null || -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$0" : 'X\(//\)[^/]' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$0" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r $srcdir/$ac_unique_file; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r $srcdir/$ac_unique_file; then - if test "$ac_srcdir_defaulted" = yes; then - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 - { (exit 1); exit 1; }; } - else - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 - { (exit 1); exit 1; }; } - fi -fi -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || - { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 - { (exit 1); exit 1; }; } -srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` -ac_env_build_alias_set=${build_alias+set} -ac_env_build_alias_value=$build_alias -ac_cv_env_build_alias_set=${build_alias+set} -ac_cv_env_build_alias_value=$build_alias -ac_env_host_alias_set=${host_alias+set} -ac_env_host_alias_value=$host_alias -ac_cv_env_host_alias_set=${host_alias+set} -ac_cv_env_host_alias_value=$host_alias -ac_env_target_alias_set=${target_alias+set} -ac_env_target_alias_value=$target_alias -ac_cv_env_target_alias_set=${target_alias+set} -ac_cv_env_target_alias_value=$target_alias -ac_env_CC_set=${CC+set} -ac_env_CC_value=$CC -ac_cv_env_CC_set=${CC+set} -ac_cv_env_CC_value=$CC -ac_env_CFLAGS_set=${CFLAGS+set} -ac_env_CFLAGS_value=$CFLAGS -ac_cv_env_CFLAGS_set=${CFLAGS+set} -ac_cv_env_CFLAGS_value=$CFLAGS -ac_env_LDFLAGS_set=${LDFLAGS+set} -ac_env_LDFLAGS_value=$LDFLAGS -ac_cv_env_LDFLAGS_set=${LDFLAGS+set} -ac_cv_env_LDFLAGS_value=$LDFLAGS -ac_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_env_CPPFLAGS_value=$CPPFLAGS -ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_cv_env_CPPFLAGS_value=$CPPFLAGS -ac_env_CXX_set=${CXX+set} -ac_env_CXX_value=$CXX -ac_cv_env_CXX_set=${CXX+set} -ac_cv_env_CXX_value=$CXX -ac_env_CXXFLAGS_set=${CXXFLAGS+set} -ac_env_CXXFLAGS_value=$CXXFLAGS -ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} -ac_cv_env_CXXFLAGS_value=$CXXFLAGS -ac_env_F77_set=${F77+set} -ac_env_F77_value=$F77 -ac_cv_env_F77_set=${F77+set} -ac_cv_env_F77_value=$F77 -ac_env_FFLAGS_set=${FFLAGS+set} -ac_env_FFLAGS_value=$FFLAGS -ac_cv_env_FFLAGS_set=${FFLAGS+set} -ac_cv_env_FFLAGS_value=$FFLAGS - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures this package to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -_ACEOF - - cat <<_ACEOF -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --datadir=DIR read-only architecture-independent data [PREFIX/share] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --infodir=DIR info documentation [PREFIX/info] - --mandir=DIR man documentation [PREFIX/man] -_ACEOF - - cat <<\_ACEOF - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] - --target=TARGET configure for building compilers for TARGET [HOST] -_ACEOF -fi - -if test -n "$ac_init_help"; then - - cat <<\_ACEOF - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have - headers in a nonstandard directory - CXX C++ compiler command - CXXFLAGS C++ compiler flags - F77 Fortran 77 compiler command - FFLAGS Fortran 77 compiler flags - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -_ACEOF -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - ac_popdir=`pwd` - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d $ac_dir || continue - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac -# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be -# absolute. -ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd` -ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd` -ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` -ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` - - cd $ac_dir - # Check for guested configure; otherwise get Cygnus style configure. - if test -f $ac_srcdir/configure.gnu; then - echo - $SHELL $ac_srcdir/configure.gnu --help=recursive - elif test -f $ac_srcdir/configure; then - echo - $SHELL $ac_srcdir/configure --help=recursive - elif test -f $ac_srcdir/configure.ac || - test -f $ac_srcdir/configure.in; then - echo - $ac_configure --help - else - echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi - cd $ac_popdir - done -fi - -test -n "$ac_init_help" && exit 0 -if $ac_init_version; then - cat <<\_ACEOF - -Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 -Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit 0 -fi -exec 5>config.log -cat >&5 <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by $as_me, which was -generated by GNU Autoconf 2.57. Invocation command line was - - $ $0 $@ - -_ACEOF -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -hostinfo = `(hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - echo "PATH: $as_dir" -done - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_sep= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) - ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; - 2) - ac_configure_args1="$ac_configure_args1 '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" - # Get rid of the leading space. - ac_sep=" " - ;; - esac - done -done -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Be sure not to use single quotes in there, as some shells, -# such as our DU 5.0 friend, will then `close' the trap. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - cat <<\_ASBOX -## ---------------- ## -## Cache variables. ## -## ---------------- ## -_ASBOX - echo - # The following way of writing the cache mishandles newlines in values, -{ - (set) 2>&1 | - case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in - *ac_space=\ *) - sed -n \ - "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" - ;; - *) - sed -n \ - "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" - ;; - esac; -} - echo - - cat <<\_ASBOX -## ----------------- ## -## Output variables. ## -## ----------------- ## -_ASBOX - echo - for ac_var in $ac_subst_vars - do - eval ac_val=$`echo $ac_var` - echo "$ac_var='"'"'$ac_val'"'"'" - done | sort - echo - - if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------- ## -## Output files. ## -## ------------- ## -_ASBOX - echo - for ac_var in $ac_subst_files - do - eval ac_val=$`echo $ac_var` - echo "$ac_var='"'"'$ac_val'"'"'" - done | sort - echo - fi - - if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## -## confdefs.h. ## -## ----------- ## -_ASBOX - echo - sed "/^$/d" confdefs.h | sort - echo - fi - test "$ac_signal" != 0 && - echo "$as_me: caught signal $ac_signal" - echo "$as_me: exit $exit_status" - } >&5 - rm -f core core.* *.core && - rm -rf conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status - ' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -rf conftest* confdefs.h -# AIX cpp loses on an empty file, so make sure it contains at least a newline. -echo >confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer explicitly selected file to automatically selected ones. -if test -z "$CONFIG_SITE"; then - if test "x$prefix" != xNONE; then - CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" - else - CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" - fi -fi -for ac_site_file in $CONFIG_SITE; do - if test -r "$ac_site_file"; then - { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 -echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" - fi -done - - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in `(set) 2>&1 | - sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val="\$ac_cv_env_${ac_var}_value" - eval ac_new_val="\$ac_env_${ac_var}_value" - case $ac_old_set,$ac_new_set in - set,) - { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 -echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 -echo "$as_me: current value: $ac_new_val" >&2;} - ac_cache_corrupted=: - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) - ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 -echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} - { (exit 1); exit 1; }; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - - - - - - - - - - - - - - - - - ac_config_headers="$ac_config_headers ../config.h" - -ac_aux_dir= -for ac_dir in . $srcdir/.; do - if test -f $ac_dir/install-sh; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f $ac_dir/install.sh; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f $ac_dir/shtool; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in . $srcdir/." >&5 -echo "$as_me: error: cannot find install-sh or install.sh in . $srcdir/." >&2;} - { (exit 1); exit 1; }; } -fi -ac_config_guess="$SHELL $ac_aux_dir/config.guess" -ac_config_sub="$SHELL $ac_aux_dir/config.sub" -ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. - - -echo " " -echo "--------------------------------------------------------------" -echo " " -echo " Cantera Configuration Script " -echo " " -echo "--------------------------------------------------------------" -echo " " - -cat >>confdefs.h <<\_ACEOF -#define NDEBUG 1 -_ACEOF - - -ac_sys_system=`uname -s` -ac_sys_release=`uname -r` -sys_hardware='unknown' - -# -# Determine the number of hardware bits in the system -# -# BITHARDWARE is the default number of compilation bits in pointers -# -case $ac_sys_system in - Linux* ) - sys_harware=`uname -i` - echo 'linux ' $sys_hardware - case $sys_hardware in - x86_64 ) BITHARDWARE=64 ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; -esac -# -# BITCOMPILE is the desired number of compilation bits in pointers -# Note, it can be different than the number of hardware bits. -# Many times you will want to compile 32 bits on a 64 bit -# machine -if test -z $BITCOMPILE ; then - BITCOMPILE=$BITHARDWARE -fi - -BITCHANGE= -if test $BITCOMPILE != $BITHARDWARE ; then - BITCHANGE='y' -fi - -# echo 'BITHARDWARE= ' $BITHARDWARE -# echo 'BITCOMPILE= ' $BITCOMPILE - - - - -SHARED_CTLIB=0 -OS_IS_DARWIN=0 -OS_IS_WIN=0 -OS_IS_CYGWIN=0 -EXTRA_LINK=${EXTRA_LINK:=""} - -mex_ext=mexglx -ldemulationarg= - -case $ac_sys_system in - Darwin*) OS_IS_DARWIN=1 - EXTRA_LINK="-framework Accelerate "$EXTRA_LINK - CXX_INCLUDES="$CXX_INCLUDES -I/System/Library/Frameworks/Accelerate.framework/Headers" - mex_ext=mexmac;; - CYGWIN*) OS_IS_CYGWIN=1; mex_ext=dll;; - Linux* ) case $BITHARDWARE in - 64 ) if test "$BITCHANGE" = "y" ; then - ldemulationarg='-melf_i386' - fi ;; - esac -esac - -CVF_LIBDIR="" -if test "x${OS_IS_CYGWIN}" = "x1"; then - if test "${USE_VISUAL_STUDIO}" = "y"; then - OS_IS_WIN=1; - OS_IS_CYGWIN=0; - CVF_LIBDIR=$FORTRAN_LIB_DIR - fi -fi - - -#echo "ldemulationarg = " $ldemulationarg - - -# -# Determine if clib is to be a static or dynamic library -# -> will test to see if USE_DLL is defined in the cygwmin environment -# -USE_CLIB_DLL=0 -if test "x${OS_IS_WIN}" = "x1"; then - if test -n ${USE_CLIB_DLL} ; then - USE_CLIB_DLL=1 - fi -fi - - -prdef="/usr/local/cantera" -if test "x$OS_IS_DARWIN" = "x1"; then prdef="/Applications/Cantera"; fi - -local_inst=1 -if test "x${prefix}" = "xNONE"; then - prefix=${prdef} - local_inst=0 -fi -exec_prefix=${prefix} - -if test "x${OS_IS_WIN}" = "x1"; then - prefix=`cygpath -a -m "${prefix}" ` -fi -echo "Cantera will be installed in ${prefix}" - - - - -# -# Determination of Python site-package directory location -# -local_python_inst=${local_inst} -if test "x${SET_PYTHON_SITE_PACKAGE_TOPDIR}" = "xy"; then - python_prefix=${PYTHON_SITE_PACKAGE_TOPDIR} - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1" ; then - python_prefix=`cygpath -a -m "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - elif test "x${OS_IS_CYGWIN}" = "x1" ; then - python_prefix=`cygpath -a -u "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - fi - local_python_inst=1 - echo "Cantera's Python packages will be installed in ${python_prefix}" -else - python_prefix=$prefix - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1"; then - python_win_prefix=`cygpath -a -w "${python_prefix}" ` - fi -fi - - - - - -ctversion=${CANTERA_VERSION} - -cat >>confdefs.h <<_ACEOF -#define CANTERA_VERSION "$ctversion" -_ACEOF - - -homedir=${HOME} - - -# A compact installation is one in which the $prefix directory -# contains only Cantera files. It is different than a local -# installation, in that the Python package is installed with other -# Python packages and modules in site-packages, rather than with the -# rest of the Cantera files, as in a local installation. Therefore, -# with a compact installation, there is no need to set PYTHONPATH. A -# compact installation is done on all machines now by default. -# This simplifies the installation issues, because now all Cantera -# installations look the same, except perhaps for the locations -# of the python packages. -# An option called, "distributed installations", is no longer -# supported. - -ct_libdir=${prefix}/lib -ct_bindir=${prefix}/bin -ct_incdir=${prefix}/include/cantera -ct_incroot=${prefix}/include -ct_datadir=${prefix}/data -ct_demodir=${prefix}/demos -ct_templdir=${prefix}/templates -ct_tutdir=${prefix}/tutorials -ct_docdir=${prefix}/doc -ct_dir=${prefix} -ct_mandir=${prefix} - - - - - - - - - - - - - -COMPACT_INSTALL=1 - - -# Make sure we can run config.sub. -$ac_config_sub sun4 >/dev/null 2>&1 || - { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 -echo "$as_me: error: cannot run $ac_config_sub" >&2;} - { (exit 1); exit 1; }; } - -echo "$as_me:$LINENO: checking build system type" >&5 -echo $ECHO_N "checking build system type... $ECHO_C" >&6 -if test "${ac_cv_build+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_build_alias=$build_alias -test -z "$ac_cv_build_alias" && - ac_cv_build_alias=`$ac_config_guess` -test -z "$ac_cv_build_alias" && - { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 -echo "$as_me: error: cannot guess build type; you must specify one" >&2;} - { (exit 1); exit 1; }; } -ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_build" >&5 -echo "${ECHO_T}$ac_cv_build" >&6 -build=$ac_cv_build -build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -echo "$as_me:$LINENO: checking host system type" >&5 -echo $ECHO_N "checking host system type... $ECHO_C" >&6 -if test "${ac_cv_host+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_host_alias=$host_alias -test -z "$ac_cv_host_alias" && - ac_cv_host_alias=$ac_cv_build_alias -ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_host" >&5 -echo "${ECHO_T}$ac_cv_host" >&6 -host=$ac_cv_host -host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -echo "$as_me:$LINENO: checking target system type" >&5 -echo $ECHO_N "checking target system type... $ECHO_C" >&6 -if test "${ac_cv_target+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_target_alias=$target_alias -test "x$ac_cv_target_alias" = "x" && - ac_cv_target_alias=$ac_cv_host_alias -ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_target" >&5 -echo "${ECHO_T}$ac_cv_target" >&6 -target=$ac_cv_target -target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -# The aliases save the names the user supplied, while $host etc. -# will get canonicalized. -test -n "$target_alias" && - test "$program_prefix$program_suffix$program_transform_name" = \ - NONENONEs,x,x, && - program_prefix=${target_alias}- -# the root of the source tree -ctroot=`(cd ..;pwd)` -builddir=$target -if test "x${OS_IS_WIN}" = "x1"; then - ctroot=`cygpath -a -m "${ctroot}" | sed 's/\\\/\\//g'` - builddir="i686-pc-win32" -fi - -if test -z "$username"; then username=$USER; fi - - - - -# The include directory in the 'build' subdirectory. -# This is required to build the test problems -# before Cantera has been installed. -buildinc=$ctroot/build/include - - -buildlib=$ctroot/build/lib/$builddir - -buildbin=$ctroot/build/bin/$builddir - - -# add definitions to config.h -if test "x${OS_IS_DARWIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define DARWIN $OS_IS_DARWIN -_ACEOF - -fi -if test "x${OS_IS_CYGWIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define CYGWIN $OS_IS_CYGWIN -_ACEOF - -fi -if test "x${OS_IS_WIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define WINMSVC $OS_IS_WIN -_ACEOF - -fi -cat >>confdefs.h <<_ACEOF -#define RXNPATH_FONT "$RPFONT" -_ACEOF - -#AC_DEFINE_UNQUOTED(CANTERA_ROOT,"$prefix/cantera") -cat >>confdefs.h <<_ACEOF -#define CANTERA_DATA "$ct_datadir" -_ACEOF - - - -if test -z "$MAKE"; then MAKE='make'; fi - - -#----------- ARCHIVE -------------------- - -if test "x${OS_IS_DARWIN}" = "x1"; then -ARCHIVE='libtool -static -o' -fi - - - -DO_RANLIB=1 -if test "x${RANLIB}" = "x"; then -DO_RANLIB=0 -fi - - - - -#---------------------------------------- - - - - -if test -z "$SHARED"; then SHARED='-shared'; fi - - -if test -z "$PIC"; then PIC='-fPIC'; fi - - -#if test -z "$LCXX_FLAGS"; then LCXX_FLAGS="$CXXFLAGS"; fi - - -#if test -z "$LCXX_END_LIBS"; then LCXX_END_LIBS='-lm'; fi - - - - -######################################################### -# User Code -######################################################### -USERDIR="" -INCL_USER_CODE=0 -if test -n "$USER_SRC_DIR"; then USERDIR=$USER_SRC_DIR; INCL_USER_CODE=1; fi - - - -use_sundials=0 -sundials_inc= -CVODE_LIBS='-lcvode' - -############################################################################ -# SUNDIALS SETUP -########################################################################### -if test "$USE_SUNDIALS" = "default"; then -ldsave=$LDFLAGS -LDFLAGS='-L'$SUNDIALS_HOME/lib' '$ldsave -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CC" && break -done - - CC=$ac_ct_CC -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -echo "$as_me:$LINENO: checking for C compiler default output" >&5 -echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 - (eval $ac_link_default) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # Find the output, starting from the most likely. This scheme is -# not robust to junk in `.', hence go to wildcards (a.*) only as a last -# resort. - -# Be careful to initialize this variable, since it used to be cached. -# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. -ac_cv_exeext= -# b.out is created by i960 compilers. -for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) - ;; - conftest.$ac_ext ) - # This is the source file. - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - # FIXME: I believe we export ac_cv_exeext for Libtool, - # but it would be cool to find out if it's true. Does anybody - # maintain Libtool? --akim. - export ac_cv_exeext - break;; - * ) - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: C compiler cannot create executables -See \`config.log' for more details." >&5 -echo "$as_me: error: C compiler cannot create executables -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } -fi - -ac_exeext=$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_file" >&5 -echo "${ECHO_T}$ac_file" >&6 - -# Check the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether the C compiler works" >&5 -echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { echo "$as_me:$LINENO: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - fi - fi -fi -echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - -rm -f a.out a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -# Check the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:$LINENO: result: $cross_compiling" >&5 -echo "${ECHO_T}$cross_compiling" >&6 - -echo "$as_me:$LINENO: checking for suffix of executables" >&5 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - export ac_cv_exeext - break;; - * ) break;; - esac -done -else - { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 -echo "${ECHO_T}$ac_cv_exeext" >&6 - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -echo "$as_me:$LINENO: checking for suffix of object files" >&5 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 -if test "${ac_cv_objext+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 -echo "${ECHO_T}$ac_cv_objext" >&6 -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -CFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cc_g=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_prog_cc_stdc=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_stdc=$ac_arg -break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.$ac_objext -done -rm -f conftest.$ac_ext conftest.$ac_objext -CC=$ac_save_CC - -fi - -case "x$ac_cv_prog_cc_stdc" in - x|xno) - echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 ;; - *) - echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 - CC="$CC $ac_cv_prog_cc_stdc" ;; -esac - -# Some people use a C++ compiler to compile C. Since we use `exit', -# in C++ we need to declare it. In case someone uses the same compiler -# for both compiling C and C++ we need to have the C++ compiler decide -# the declaration of exit, since it's the most demanding environment. -cat >conftest.$ac_ext <<_ACEOF -#ifndef __cplusplus - choke me -#endif -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - for ac_declaration in \ - ''\ - '#include ' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.$ac_objext conftest.$ac_ext -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -echo "$as_me:$LINENO: checking for CVodeCreate in -lsundials_cvodes" >&5 -echo $ECHO_N "checking for CVodeCreate in -lsundials_cvodes... $ECHO_C" >&6 -if test "${ac_cv_lib_sundials_cvodes_CVodeCreate+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsundials_cvodes \ --lsundials_shared -lsundials_nvecserial -lm $LIBS" -cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char CVodeCreate (); -int -main () -{ -CVodeCreate (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_sundials_cvodes_CVodeCreate=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_lib_sundials_cvodes_CVodeCreate=no -fi -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_sundials_cvodes_CVodeCreate" >&5 -echo "${ECHO_T}$ac_cv_lib_sundials_cvodes_CVodeCreate" >&6 -if test $ac_cv_lib_sundials_cvodes_CVodeCreate = yes; then - use_sundials=1 -else - use_sundials=0 -fi - - -if test "x$USE_SUNDIALS" = "xy"; then -use_sundials=1 -fi - -if test ${use_sundials} = 1; then -cat >>confdefs.h <<\_ACEOF -#define HAS_SUNDIALS 1 -_ACEOF - -echo "using CVODES from SUNDIALS... Sensitivity analysis enabled." -CVODE_LIBS='-lsundials_cvodes -lsundials_shared -lsundials_nvecserial' -sundials_include='-I'${SUNDIALS_HOME}/include -fi - -if test ${use_sundials} = 0; then -echo "using CVODE... Sensitivity analysis disabled." -echo "-> To enable sensitivity analysis, install the SUNDIALS package with CVODES." -fi - - - - - - -######################################################### -# The Cantera Kernel -######################################################### -KERNEL='base' -KERNEL_OBJ='$(BASE_OBJ)' -BUILD_CK= - -NEED_CKREADER= -NEED_LAPACK= -#NEED_RECIPES= -NEED_MATH= -NEED_TPX= -NEED_F2C= -NEED_CVODE= -NEED_TRANSPORT= -NEED_ZEROD= -NEED_ONED= - -if test "$ENABLE_THERMO" = "y"; then - KERNEL=$KERNEL' 'thermo; - KERNEL_OBJ=$KERNEL_OBJ' $(THERMO_OBJ)' -fi - -if test "$WITH_METAL" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_METAL 1 -_ACEOF - - hdrs=$hdrs' MetalPhase.h' -fi -if test "$WITH_STOICH_SUBSTANCE" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_STOICH_SUBSTANCE 1 -_ACEOF - - hdrs=$hdrs' StoichSubstance.h' - objs=$objs' StoichSubstance.o' -fi -if test "$WITH_PURE_FLUIDS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_PURE_FLUIDS 1 -_ACEOF - - hdrs=$hdrs' PureFluidPhase.h' - objs=$objs' PureFluidPhase.o' -fi -if test "$WITH_LATTICE_SOLID" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_LATTICE_SOLID 1 -_ACEOF - - hdrs=$hdrs' LatticeSolidPhase.h' - objs=$objs' LatticeSolidPhase.o' -fi -phase_object_files=$objs -phase_header_files=$hdrs - - - -COMPILE_CATHERMO=0 -if test "$WITH_ELECTROLYTES" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_ELECTROLYTES 1 -_ACEOF - - COMPILE_CATHERMO=1 -fi - - -if test "$ENABLE_KINETICS" = "y"; then - KERNEL=$KERNEL' 'kinetics; - KERNEL_OBJ=$KERNEL_OBJ' $(KINETICS_OBJ) $(HETEROKIN_OBJ)' -fi - -if test "$ENABLE_CK" = "y" ; then - BUILD_CK=1 - NEED_CKREADER=1 - KERNEL=$KERNEL' 'ck -fi - -if test "$ENABLE_TRANSPORT" = "y" ; then - KERNEL=$KERNEL' 'trprops - NEED_LAPACK=1 - NEED_MATH=1 - NEED_TRANSPORT=1 -fi - -if test "$ENABLE_EQUIL" = "y" ; then - KERNEL=$KERNEL' 'equil - KERNEL_OBJ=$KERNEL_OBJ' $(EQUIL_OBJ)' - NEED_LAPACK=1 -# NEED_RECIPES=1 -fi - -if test "$ENABLE_REACTORS" = "y" ; then - KERNEL=$KERNEL' 'reactor - NEED_CVODE=1 - NEED_ZEROD=1 -fi - -if test "$ENABLE_SOLVERS" = "y" ; then - KERNEL=$KERNEL' 'solvers - KERNEL_OBJ=$KERNEL_OBJ' $(SOLVERS_OBJ)' - NEED_CVODE=1 - NEED_MATH=1 -fi - -if test "$ENABLE_FLOW1D" = "y" ; then - KERNEL=$KERNEL' 'flow1D - NEED_LAPACK=1 - NEED_MATH=1 - NEED_ONED=1 -fi - -if test "$ENABLE_RXNPATH" = "y" ; then - KERNEL=$KERNEL' 'rpath - KERNEL_OBJ=$KERNEL_OBJ' $(RPATH_OBJ)' -fi - -if test "$WITH_PURE_FLUIDS" = "y" ; then - KERNEL=$KERNEL' 'tpx - NEED_TPX=1 - cat >>confdefs.h <<\_ACEOF -#define INCL_PURE_FLUIDS 1 -_ACEOF - -fi - - - - - - - -######################################################## -# BLAS and LAPACK -######################################################## -# -# if lapack and blas libraries have been specified, then skip building the -# supplied libraries - - -build_lapack=0 -build_blas=0 -if test -z "$BLAS_LAPACK_LIBS"; then - if test "x$OS_IS_DARWIN" = "x0"; then - BLAS_LAPACK_LIBS="-lctlapack -lctblas" - BLAS_LAPACK_DIR="$buildlib" - build_blas=1 - build_lapack=1 - fi -fi - - - - - - - - -# -# Stubout section for f2c versions of lapack: -# Define these variables, but turn them off in main version of code -# -build_with_f2c=0 -if test -n $BUILD_WITH_F2C ; then - if test $BUILD_WITH_F2C = "y" -o $BUILD_WITH_F2C = "Y" ; then - build_with_f2c=1 - elif test $BUILD_WITH_F2C = "n" -o $BUILD_WITH_F2C = "N" ; then - build_with_f2c=0 - elif test $BUILD_WITH_F2C = "default" ; then - if test x$OS_IS_WIN = "x1" ; then - build_with_f2c=1 - else - build_with_f2c=0 - fi - fi -fi - -# -# Determine if you need the f2c library at link time -# -> Note, Linux systems already have the g2c library -# added in, which is the same thing as our -# f2c library. -if test x"$build_with_f2c" = "x1" ; then - NEED_F2C=1 - case $ac_sys_system in - Linux) NEED_F2C= ;; - esac -fi -# Darwin*) NEED_F2C= ;; - - - -# LOCAL_LIBS: -# Build a string of Cantera libraries necessary to link -# Cantera applications -# -LOCAL_LIBS= - -if test -n "$INCL_USER_CODE" -then LOCAL_LIBS=$LOCAL_LIBS' '-luser -fi - -if test -n "$NEED_ONED" -then LOCAL_LIBS=$LOCAL_LIBS' '-loneD -fi - -if test -n "$NEED_ZEROD" -then LOCAL_LIBS=$LOCAL_LIBS' '-lzeroD -fi - -if test -n "$NEED_TRANSPORT" -then LOCAL_LIBS=$LOCAL_LIBS' '-ltransport -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lcantera - -#if test -n "$NEED_RECIPES" -#then LOCAL_LIBS=$LOCAL_LIBS' '-lrecipes -#fi - -if test -n "$NEED_CVODE"; then -LOCAL_LIBS=$LOCAL_LIBS' '$CVODE_LIBS -fi - -if test -n "$NEED_LAPACK" -then LOCAL_LIBS=$LOCAL_LIBS' '$BLAS_LAPACK_LIBS -fi - -if test -n "$NEED_MATH" -then LOCAL_LIBS=$LOCAL_LIBS' '-lctmath -fi - -if test -n "$NEED_TPX" -then LOCAL_LIBS=$LOCAL_LIBS' '-ltpx -fi - -if test -n "$NEED_F2C" -then LOCAL_LIBS=$LOCAL_LIBS' '-lctf2c -else - case $ac_sys_system in - Linux) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - esac -fi -# Darwin*) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - -if test -n "$NEED_CKREADER" -then LOCAL_LIBS=$LOCAL_LIBS' '-lconverters -fi - -LOCAL_LIB_DIRS= -if test -n "$BLAS_LAPACK_DIR" -then LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BLAS_LAPACK_DIR -fi - - -if test -n "$SUNDIALS_HOME" -then LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$SUNDIALS_HOME/lib -fi - - - - - -#------------------------------------------------- -# Language Interfaces -#------------------------------------------------- - - - - -BUILD_F90=1 -if test "x$BUILD_F90_INTERFACE" = "xn"; then - BUILD_F90=0 -fi - -if test "x$F77FLAGS" = "x"; then - F77FLAGS=$FFLAGS -fi - - -BUILD_CLIB=1 - - - -#---------------------------------------------------------------- -# Python Interface -#---------------------------------------------------------------- - -BUILD_PYTHON=0 -if test "x$PYTHON_PACKAGE" = "xfull"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xdefault"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xminimal"; then - BUILD_PYTHON=1 -fi - -if test "$PYTHON_CMD" = "default" -o \ - "$PYTHON_CMD"x = "x"; then - for ac_prog in python2 python -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PYTHON_CMD+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $PYTHON_CMD in - [\\/]* | ?:[\\/]*) - ac_cv_path_PYTHON_CMD="$PYTHON_CMD" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PYTHON_CMD="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - ;; -esac -fi -PYTHON_CMD=$ac_cv_path_PYTHON_CMD - -if test -n "$PYTHON_CMD"; then - echo "$as_me:$LINENO: result: $PYTHON_CMD" >&5 -echo "${ECHO_T}$PYTHON_CMD" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$PYTHON_CMD" && break -done -test -n "$PYTHON_CMD" || PYTHON_CMD=""none"" - - if test "$PYTHON_CMD" = "none"; then - echo - echo "********************************************************************" - echo "Configuration error. Python is required to build Cantera, but it" - echo "cannot be found. Set environment variable PYTHON_CMD to the full path to" - echo "the Python interpreter on your system, and run configure again." - echo "********************************************************************" - exit 1 - else - echo "Python command set by configure to " $PYTHON_CMD - fi -else - echo "Python command preset to $PYTHON_CMD" -fi - - - -cat >>confdefs.h <<_ACEOF -#define PYTHON_EXE "$PYTHON_CMD" -_ACEOF - - -if test "$USE_NUMERIC" = "y"; then -cat >>confdefs.h <<\_ACEOF -#define HAS_NUMERIC 1 -_ACEOF - -fi - -NUMARRAY_INC_DIR="" -if test -n "$NUMARRAY_HOME"; then -NUMARRAY_INC_DIR="$NUMARRAY_HOME/include/python" -fi - - - - -#-------------------------- -# CVS Tag -#-------------------------- -CVSTAG=`${PYTHON_CMD} ../tools/src/findtag.py ..` -if test "x$CVSTAG" = "x"; then -CVSTAG="HEAD" -fi - - - -# -# Matlab Interface -# -BUILD_MATLAB=0 -if test "$BUILD_MATLAB_TOOLBOX" != "n"; then - if test -z "$MATLAB_CMD"; then - # Extract the first word of "matlab", so it can be a program name with args. -set dummy matlab; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_MATLAB_CMD+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $MATLAB_CMD in - [\\/]* | ?:[\\/]*) - ac_cv_path_MATLAB_CMD="$MATLAB_CMD" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MATLAB_CMD="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_MATLAB_CMD" && ac_cv_path_MATLAB_CMD=""none"" - ;; -esac -fi -MATLAB_CMD=$ac_cv_path_MATLAB_CMD - -if test -n "$MATLAB_CMD"; then - echo "$as_me:$LINENO: result: $MATLAB_CMD" >&5 -echo "${ECHO_T}$MATLAB_CMD" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - if test "$MATLAB_CMD" != "none"; then BUILD_MATLAB=1; BUILD_CLIB=1; fi - else - echo "Matlab command preset to $(MATLAB_CMD)$" - fi - if test "x$OS_IS_WIN" = "x1"; then - MATLAB_CMD=`cygpath -a -m "$MATLAB_CMD" ` - echo "Windows MATLAB command: ${MATLAB_CMD}" - fi -else - echo "MATLAB interface will not be installed" - if test -z "$MATLAB_CMD"; then - MATLAB_CMD="matlab" - fi -fi - - - - -#------------------------------------------------- - -export_name=$target - - - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 -if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in - ./ | .// | /cC/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - done - done - ;; -esac -done - - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. We don't cache a - # path for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the path is relative. - INSTALL=$ac_install_sh - fi -fi -echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6 - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -precompile_headers=no -if test "x$OS_IS_WIN" = "x1"; then -CXX=cl.exe -CC=cl.exe -else - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - echo "$as_me:$LINENO: result: $CXX" >&5 -echo "${ECHO_T}$CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 -echo "${ECHO_T}$ac_ct_CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CXX" && break -done -test -n "$ac_ct_CXX" || ac_ct_CXX="g++" - - CXX=$ac_ct_CXX -fi - - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C++ compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 -GXX=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -CXXFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 -echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cxx_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cxx_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cxx_g=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -for ac_declaration in \ - ''\ - '#include ' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CC" && break -done - - CC=$ac_ct_CC -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -CFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cc_g=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_prog_cc_stdc=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_stdc=$ac_arg -break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.$ac_objext -done -rm -f conftest.$ac_ext conftest.$ac_objext -CC=$ac_save_CC - -fi - -case "x$ac_cv_prog_cc_stdc" in - x|xno) - echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 ;; - *) - echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 - CC="$CC $ac_cv_prog_cc_stdc" ;; -esac - -# Some people use a C++ compiler to compile C. Since we use `exit', -# in C++ we need to declare it. In case someone uses the same compiler -# for both compiling C and C++ we need to have the C++ compiler decide -# the declaration of exit, since it's the most demanding environment. -cat >conftest.$ac_ext <<_ACEOF -#ifndef __cplusplus - choke me -#endif -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - for ac_declaration in \ - ''\ - '#include ' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -#line $LINENO "configure" -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.$ac_objext conftest.$ac_ext -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -echo "$as_me:$LINENO: checking for ability to precompile headers" >&5 -echo $ECHO_N "checking for ability to precompile headers... $ECHO_C" >&6 - -if test -n "$GCC"; then - msg=`rm -f *h.gch; $CXX testpch.h &> /dev/null` - if test -f testpch.h.gch; then - precompile_headers=yes - cat >>confdefs.h <<\_ACEOF -#define USE_PCH 1 -_ACEOF - - fi -fi -echo "$as_me:$LINENO: result: ${precompile_headers}" >&5 -echo "${ECHO_T}${precompile_headers}" >&6 -fi - -has_sstream=no -echo "$as_me:$LINENO: checking for sstream" >&5 -echo $ECHO_N "checking for sstream... $ECHO_C" >&6 -cat >> testsstream.cpp << EOF -#include -main() {} -EOF - msg=`${CXX} -c testsstream.cpp &> /dev/null` - if test -f testsstream.o; then - has_sstream=yes - rm testsstream.o - cat >>confdefs.h <<\_ACEOF -#define HAS_SSTREAM 1 -_ACEOF - - fi -rm -f testsstream.cpp -echo "$as_me:$LINENO: result: ${has_sstream}" >&5 -echo "${ECHO_T}${has_sstream}" >&6 - - -#--------------------------------- -# Fortran -#--------------------------------- - -#if test x"$build_with_f2c" = "x0"; then - ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in g77 f77 xlf frt pgf77 fl32 af77 fort77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 lf95 g95 - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_F77+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$F77"; then - ac_cv_prog_F77="$F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_F77="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -F77=$ac_cv_prog_F77 -if test -n "$F77"; then - echo "$as_me:$LINENO: result: $F77" >&5 -echo "${ECHO_T}$F77" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$F77" && break - done -fi -if test -z "$F77"; then - ac_ct_F77=$F77 - for ac_prog in g77 f77 xlf frt pgf77 fl32 af77 fort77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 lf95 g95 -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_F77+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_F77"; then - ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_F77="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_F77=$ac_cv_prog_ac_ct_F77 -if test -n "$ac_ct_F77"; then - echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 -echo "${ECHO_T}$ac_ct_F77" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_F77" && break -done - - F77=$ac_ct_F77 -fi - - -# Provide some information about the compiler. -echo "$as_me:4261:" \ - "checking for Fortran 77 compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -# If we don't use `.F' as extension, the preprocessor is not run on the -# input file. -ac_save_ext=$ac_ext -ac_ext=F -echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6 -if test "${ac_cv_f77_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF - program main -#ifndef __GNUC__ - choke me -#endif - - end -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext -ac_cv_f77_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6 -ac_ext=$ac_save_ext -G77=`test $ac_compiler_gnu = yes && echo yes` -ac_test_FFLAGS=${FFLAGS+set} -ac_save_FFLAGS=$FFLAGS -FFLAGS= -echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 -echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_f77_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - FFLAGS=-g -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_f77_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_f77_g=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext - -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 -echo "${ECHO_T}$ac_cv_prog_f77_g" >&6 -if test "$ac_test_FFLAGS" = set; then - FFLAGS=$ac_save_FFLAGS -elif test $ac_cv_prog_f77_g = yes; then - if test "$G77" = yes; then - FFLAGS="-g -O2" - else - FFLAGS="-g" - fi -else - if test "$G77" = yes; then - FFLAGS="-O2" - else - FFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -# if G77 is defined, then add a flag to turn off adding a second underscore -# to procedures that have an underscore in the name - if test -n "$G77"; then - FFLAGS=$FFLAGS' -fno-second-underscore' - fi - - -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu -echo "$as_me:$LINENO: checking how to get verbose linking output from $F77" >&5 -echo $ECHO_N "checking how to get verbose linking output from $F77... $ECHO_C" >&6 -if test "${ac_cv_prog_f77_v+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_f77_v= -# Try some options frequently used verbose output -for ac_verb in -v -verbose --verbose -V -\#\#\#; do - ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu - -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF - -# Compile and link our simple test program by passing a flag (argument -# 1 to this macro) to the Fortran 77 compiler in order to get -# "verbose" output that we can then parse for the Fortran 77 linker -# flags. -ac_save_FFLAGS=$FFLAGS -FFLAGS="$FFLAGS $ac_verb" -(eval echo $as_me:4438: \"$ac_link\") >&5 -ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` -echo "$ac_f77_v_output" >&5 -FFLAGS=$ac_save_FFLAGS - -rm -f conftest* -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu - -# If we are using xlf then replace all the commas with spaces. -if echo $ac_f77_v_output | grep xlfentry >/dev/null 2>&1; then - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/,/ /g'` -fi - -# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where -# /foo, /bar, and /baz are search directories for the Fortran linker. -# Here, we change these into -L/foo -L/bar -L/baz (and put it first): -ac_f77_v_output="`echo $ac_f77_v_output | - grep 'LPATH is:' | - sed 's,.*LPATH is\(: *[^ ]*\).*,\1,;s,: */, -L/,g'` $ac_f77_v_output" - -# If we are using Cray Fortran then delete quotes. -# Use "\"" instead of '"' for font-lock-mode. -# FIXME: a more general fix for quoted arguments with spaces? -if echo $ac_f77_v_output | grep cft90 >/dev/null 2>&1; then - ac_f77_v_output=`echo $ac_f77_v_output | sed "s/\"//g"` -fi - # look for -l* and *.a constructs in the output - for ac_arg in $ac_f77_v_output; do - case $ac_arg in - [\\/]*.a | ?:[\\/]*.a | -[lLRu]*) - ac_cv_prog_f77_v=$ac_verb - break 2 ;; - esac - done -done -if test -z "$ac_cv_prog_f77_v"; then - { echo "$as_me:$LINENO: WARNING: cannot determine how to obtain linking information from $F77" >&5 -echo "$as_me: WARNING: cannot determine how to obtain linking information from $F77" >&2;} -fi -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ echo "$as_me:$LINENO: WARNING: compilation failed" >&5 -echo "$as_me: WARNING: compilation failed" >&2;} -fi -rm -f conftest.$ac_objext conftest.$ac_ext - -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_f77_v" >&5 -echo "${ECHO_T}$ac_cv_prog_f77_v" >&6 -echo "$as_me:$LINENO: checking for Fortran 77 libraries" >&5 -echo $ECHO_N "checking for Fortran 77 libraries... $ECHO_C" >&6 -if test "${ac_cv_flibs+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "x$FLIBS" != "x"; then - ac_cv_flibs="$FLIBS" # Let the user override the test. -else - -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu - -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF - -# Compile and link our simple test program by passing a flag (argument -# 1 to this macro) to the Fortran 77 compiler in order to get -# "verbose" output that we can then parse for the Fortran 77 linker -# flags. -ac_save_FFLAGS=$FFLAGS -FFLAGS="$FFLAGS $ac_cv_prog_f77_v" -(eval echo $as_me:4518: \"$ac_link\") >&5 -ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` -echo "$ac_f77_v_output" >&5 -FFLAGS=$ac_save_FFLAGS - -rm -f conftest* -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu - -# If we are using xlf then replace all the commas with spaces. -if echo $ac_f77_v_output | grep xlfentry >/dev/null 2>&1; then - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/,/ /g'` -fi - -# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where -# /foo, /bar, and /baz are search directories for the Fortran linker. -# Here, we change these into -L/foo -L/bar -L/baz (and put it first): -ac_f77_v_output="`echo $ac_f77_v_output | - grep 'LPATH is:' | - sed 's,.*LPATH is\(: *[^ ]*\).*,\1,;s,: */, -L/,g'` $ac_f77_v_output" - -# If we are using Cray Fortran then delete quotes. -# Use "\"" instead of '"' for font-lock-mode. -# FIXME: a more general fix for quoted arguments with spaces? -if echo $ac_f77_v_output | grep cft90 >/dev/null 2>&1; then - ac_f77_v_output=`echo $ac_f77_v_output | sed "s/\"//g"` -fi - -ac_cv_flibs= - -# Save positional arguments (if any) -ac_save_positional="$@" - -set X $ac_f77_v_output -while test $# != 1; do - shift - ac_arg=$1 - case $ac_arg in - [\\/]*.a | ?:[\\/]*.a) - ac_exists=false - for ac_i in $ac_cv_flibs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_cv_flibs="$ac_cv_flibs $ac_arg" -fi - - ;; - -bI:*) - ac_exists=false - for ac_i in $ac_cv_flibs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - if test "$ac_compiler_gnu" = yes; then - for ac_link_opt in $ac_arg; do - ac_cv_flibs="$ac_cv_flibs -Xlinker $ac_link_opt" - done -else - ac_cv_flibs="$ac_cv_flibs $ac_arg" -fi -fi - - ;; - # Ignore these flags. - -lang* | -lcrt0.o | -lc | -lgcc | -libmil | -LANG:=*) - ;; - -lkernel32) - test x"$CYGWIN" != xyes && ac_cv_flibs="$ac_cv_flibs $ac_arg" - ;; - -[LRuY]) - # These flags, when seen by themselves, take an argument. - # We remove the space between option and argument and re-iterate - # unless we find an empty arg or a new option (starting with -) - case $2 in - "" | -*);; - *) - ac_arg="$ac_arg$2" - shift; shift - set X $ac_arg "$@" - ;; - esac - ;; - -YP,*) - for ac_j in `echo $ac_arg | sed -e 's/-YP,/-L/;s/:/ -L/g'`; do - ac_exists=false - for ac_i in $ac_cv_flibs; do - if test x"$ac_j" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_arg="$ac_arg $ac_j" - ac_cv_flibs="$ac_cv_flibs $ac_j" -fi - - done - ;; - -[lLR]*) - ac_exists=false - for ac_i in $ac_cv_flibs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_cv_flibs="$ac_cv_flibs $ac_arg" -fi - - ;; - # Ignore everything else. - esac -done -# restore positional arguments -set X $ac_save_positional; shift - -# We only consider "LD_RUN_PATH" on Solaris systems. If this is seen, -# then we insist that the "run path" must be an absolute path (i.e. it -# must begin with a "/"). -case `(uname -sr) 2>/dev/null` in - "SunOS 5"*) - ac_ld_run_path=`echo $ac_f77_v_output | - sed -n 's,^.*LD_RUN_PATH *= *\(/[^ ]*\).*$,-R\1,p'` - test "x$ac_ld_run_path" != x && - if test "$ac_compiler_gnu" = yes; then - for ac_link_opt in $ac_ld_run_path; do - ac_cv_flibs="$ac_cv_flibs -Xlinker $ac_link_opt" - done -else - ac_cv_flibs="$ac_cv_flibs $ac_ld_run_path" -fi - ;; -esac -fi # test "x$FLIBS" = "x" - -fi -echo "$as_me:$LINENO: result: $ac_cv_flibs" >&5 -echo "${ECHO_T}$ac_cv_flibs" >&6 -FLIBS="$ac_cv_flibs" - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -override_f77_libs=0; -case $ac_sys_system in - Darwin*) FLIBS='-lSystem'; override_f77_libs=1; SHARED_CTLIB=0;; -esac - -if test $override_f77_libs -gt 0; then - echo The Fortran 77 libraries on this platform are not correctly determined by - echo the configuration process. They are being manually set to - echo FLIBS = $FLIBS -fi - -#fi - -#-------------------------------------------- - - -if test "x${BUILD_F90}" != "x0"; then - if test "$F90" = "default" -o \ - "$F90"x = "x"; then - for ac_prog in f95 gfortran g95 -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_F90+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $F90 in - [\\/]* | ?:[\\/]*) - ac_cv_path_F90="$F90" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_F90="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - ;; -esac -fi -F90=$ac_cv_path_F90 - -if test -n "$F90"; then - echo "$as_me:$LINENO: result: $F90" >&5 -echo "${ECHO_T}$F90" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$F90" && break -done -test -n "$F90" || F90=""none"" - - if test "$F90" = "none" ; then - echo "ERROR: Fortran 90 requested, but no Fortran 90/95 compiler found!" - else - echo "Fortran compiler set to " $F90 - fi - else - echo "Fortran 90/95 compiler preset to $F90" - fi -fi - -has_f90=no -f90type=none -f90_module_dir='-I' -f90_opts='' - -if test "x${BUILD_F90}" != "x0"; then - echo "$as_me:$LINENO: checking Fortran 90 compiler ($F90) type" >&5 -echo $ECHO_N "checking Fortran 90 compiler ($F90) type... $ECHO_C" >&6 - cat >> testf90.f90 << EOF -module mt -double precision, parameter :: x = 2.3 -end module mt -program testf90 -use mt -integer :: i -end program testf90 -EOF - msg=`${F90} -c testf90.f90 &> /dev/null` - if test -f testf90.o; then - has_f90=yes - rm testf90.o - f90type=unknown - fi -# - msg=`${F90} --version &> f90out` - isgfortran=`grep -c 'GNU Fortran 95' f90out` - if test "x${isgfortran}" != "x0"; then - f90type="gfortran" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - fi - - isg95=`grep -c 'G95' f90out` - if test "x${isg95}" != "x0"; then - f90type="g95" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - #case $ac_sys_system in - # Darwin*) FLIBS='-lg2c -lcc_dynamic';; - #esac - fi - - msg=`${F90} -V &> f90out` - isnag=`grep -c NAGWare f90out` - if test "x${isnag}" != "x0"; then - f90type="NAG" - f90opts="-I. -I${ct_incdir}" - f90buildopts="-I." - fi -# - msg=`${F90} -V -c testf90.f90 &> f90out` - isabsoft=`grep -c Absoft f90out` - if test "x${isabsoft}" != "x0"; then - f90type="Absoft" - f90opts="-p. -p${ct_incdir} -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - f90buildopts="-p. -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - fi - rm -f testf90.f90 - echo "$as_me:$LINENO: result: ${f90type}" >&5 -echo "${ECHO_T}${f90type}" >&6 - if test -n $BUILD_F90; then - if test "x${has_f90}" = "xno"; then - echo " -> cannot build the Fortran 90 interface" - BUILD_F90=0 - fi - fi -fi -savef90flags=${F90FLAGS} -F90FLAGS=${f90opts}' '${F90FLAGS} -F90BUILDFLAGS=${f90buildopts}' '${savef90flags} - - - - - - - - - - - - - - - - - -# filename extensions for Fortran 77 -if test -z "$F77_EXT"; then F77_EXT=f; fi - - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -if test -z "$CXX_EXT"; then CXX_EXT=cpp; fi - - -if test -z "$OBJ_EXT"; then OBJ_EXT='o'; fi - - -if test -z "$EXE_EXT"; then EXE_EXT=$EXEEXT; fi - - -#local_math_libs='-lcvode' -#AC_SUBST(local_math_libs) - - -math_libs='-lcvode -lctmath' - - -if test "$LAPACK_FTN_TRAILING_UNDERSCORE" = "y" -then cat >>confdefs.h <<\_ACEOF -#define LAPACK_FTN_TRAILING_UNDERSCORE 1 -_ACEOF - -fi - -if test "$LAPACK_FTN_STRING_LEN_AT_END" = "y" -then cat >>confdefs.h <<\_ACEOF -#define LAPACK_FTN_STRING_LEN_AT_END 1 -_ACEOF - -fi - -if test "$LAPACK_NAMES" = "lower" -then cat >>confdefs.h <<\_ACEOF -#define LAPACK_NAMES_LOWERCASE 1 -_ACEOF - -fi - -# from the Python configure.in file... - -# Set info about shared libraries. - - -# -# This command is used in the the linking statement -# of the shared libraries used to communicate with python. -# - - -# SO is the extension of shared libraries `(including the dot!) -# -- usually .so, .sl on HP-UX, .dll on Cygwin -echo "$as_me:$LINENO: checking SO" >&5 -echo $ECHO_N "checking SO... $ECHO_C" >&6 -if test -z "$SO" -then - case $ac_sys_system in - hp*|HP*) SO=.sl;; - CYGWIN*) SO=.dll;; - Darwin*) SO=.dylib;; - *) SO=.so;; - esac -fi -echo "$as_me:$LINENO: result: $SO" >&5 -echo "${ECHO_T}$SO" >&6 - - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - - - - ac_config_files="$ac_config_files ../Cantera/Makefile ../Cantera/src/Makefile ../Cantera/src/zeroD/Makefile ../Cantera/src/oneD/Makefile ../Cantera/src/converters/Makefile ../Cantera/src/transport/Makefile ../Cantera/src/thermo/Makefile ../Cantera/clib/src/Makefile ../Cantera/fortran/src/Makefile ../Cantera/fortran/f77demos/f77demos.mak ../Cantera/fortran/f77demos/isentropic.dsp ../Cantera/matlab/Makefile ../Cantera/matlab/setup_matlab.py ../Cantera/matlab/setup_winmatlab.py ../Cantera/python/Makefile ../Cantera/python/setup.py ../Cantera/cxx/Makefile ../Cantera/cxx/src/Makefile ../Cantera/cxx/demos/Makefile ../Cantera/user/Makefile ../Cantera/python/src/Makefile ../ext/lapack/Makefile ../ext/blas/Makefile ../ext/cvode/Makefile ../ext/math/Makefile ../ext/tpx/Makefile ../ext/Makefile ../ext/f2c_libs/Makefile ../ext/f2c_blas/Makefile ../ext/f2c_lapack/Makefile ../ext/f2c_math/Makefile ../examples/Makefile ../examples/cxx/Makefile ../Makefile ../tools/Makefile ../tools/src/Makefile ../tools/src/sample.mak ../tools/src/finish_install.py ../tools/src/package4mac ../tools/templates/f77/demo.mak ../tools/templates/f90/demo.mak ../tools/templates/cxx/demo.mak ../tools/testtools/Makefile ../data/inputs/Makefile ../test_problems/Makefile ../test_problems/cxx_ex/Makefile ../test_problems/silane_equil/Makefile ../test_problems/surfkin/Makefile ../test_problems/diamondSurf/Makefile ../test_problems/ck2cti_test/Makefile ../test_problems/ck2cti_test/runtest ../test_problems/python/Makefile ../bin/install_tsc" - - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/; -s/:*\${srcdir}:*/:/; -s/:*@srcdir@:*/:/; -s/^\([^=]*=[ ]*\):*/\1/; -s/:*$//; -s/^[^=]*=[ ]*$//; -}' -fi - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_i=`echo "$ac_i" | - sed 's/\$U\././;s/\.o$//;s/\.obj$//'` - # 2. Add them. - ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" - ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - -: ${CONFIG_STATUS=./config.status} -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 -echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi - -# Support unset when possible. -if (FOO=FOO; unset FOO) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 -echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 -echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - -exec 6>&1 - -# Open the log real soon, to keep \$[0] and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. Logging --version etc. is OK. -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX -} >&5 -cat >&5 <<_CSEOF - -This file was extended by $as_me, which was -generated by GNU Autoconf 2.57. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -_CSEOF -echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 -echo >&5 -_ACEOF - -# Files that config.status was made for. -if test -n "$ac_config_files"; then - echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_headers"; then - echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_links"; then - echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_commands"; then - echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS -fi - -cat >>$CONFIG_STATUS <<\_ACEOF - -ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. - -Usage: $0 [OPTIONS] [FILE]... - - -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Report bugs to ." -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF -ac_cs_version="\\ -config.status -configured by $0, generated by GNU Autoconf 2.57, - with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" - -Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 -Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." -srcdir=$srcdir -INSTALL="$INSTALL" -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "x$1" : 'x\([^=]*\)='` - ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` - ac_shift=: - ;; - -*) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - *) # This is not an option, so the user has probably given explicit - # arguments. - ac_option=$1 - ac_need_defaults=false;; - esac - - case $ac_option in - # Handling of the options. -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --vers* | -V ) - echo "$ac_cs_version"; exit 0 ;; - --he | --h) - # Conflict between --help and --header - { { echo "$as_me:$LINENO: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; };; - --help | --hel | -h ) - echo "$ac_cs_usage"; exit 0 ;; - --debug | --d* | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" - ac_need_defaults=false;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; } ;; - - *) ac_config_targets="$ac_config_targets $1" ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -if \$ac_cs_recheck; then - echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 - exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -fi - -_ACEOF - - - - - -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_config_target in $ac_config_targets -do - case "$ac_config_target" in - # Handling of arguments. - "../Cantera/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/Makefile" ;; - "../Cantera/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/src/Makefile" ;; - "../Cantera/src/zeroD/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/src/zeroD/Makefile" ;; - "../Cantera/src/oneD/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/src/oneD/Makefile" ;; - "../Cantera/src/converters/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/src/converters/Makefile" ;; - "../Cantera/src/transport/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/src/transport/Makefile" ;; - "../Cantera/src/thermo/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/src/thermo/Makefile" ;; - "../Cantera/clib/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/clib/src/Makefile" ;; - "../Cantera/fortran/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/fortran/src/Makefile" ;; - "../Cantera/fortran/f77demos/f77demos.mak" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/fortran/f77demos/f77demos.mak" ;; - "../Cantera/fortran/f77demos/isentropic.dsp" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/fortran/f77demos/isentropic.dsp" ;; - "../Cantera/matlab/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/matlab/Makefile" ;; - "../Cantera/matlab/setup_matlab.py" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/matlab/setup_matlab.py" ;; - "../Cantera/matlab/setup_winmatlab.py" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/matlab/setup_winmatlab.py" ;; - "../Cantera/python/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/python/Makefile" ;; - "../Cantera/python/setup.py" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/python/setup.py" ;; - "../Cantera/cxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/cxx/Makefile" ;; - "../Cantera/cxx/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/cxx/src/Makefile" ;; - "../Cantera/cxx/demos/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/cxx/demos/Makefile" ;; - "../Cantera/user/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/user/Makefile" ;; - "../Cantera/python/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Cantera/python/src/Makefile" ;; - "../ext/lapack/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/lapack/Makefile" ;; - "../ext/blas/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/blas/Makefile" ;; - "../ext/cvode/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/cvode/Makefile" ;; - "../ext/math/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/math/Makefile" ;; - "../ext/tpx/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/tpx/Makefile" ;; - "../ext/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/Makefile" ;; - "../ext/f2c_libs/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/f2c_libs/Makefile" ;; - "../ext/f2c_blas/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/f2c_blas/Makefile" ;; - "../ext/f2c_lapack/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/f2c_lapack/Makefile" ;; - "../ext/f2c_math/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../ext/f2c_math/Makefile" ;; - "../examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../examples/Makefile" ;; - "../examples/cxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../examples/cxx/Makefile" ;; - "../Makefile" ) CONFIG_FILES="$CONFIG_FILES ../Makefile" ;; - "../tools/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../tools/Makefile" ;; - "../tools/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../tools/src/Makefile" ;; - "../tools/src/sample.mak" ) CONFIG_FILES="$CONFIG_FILES ../tools/src/sample.mak" ;; - "../tools/src/finish_install.py" ) CONFIG_FILES="$CONFIG_FILES ../tools/src/finish_install.py" ;; - "../tools/src/package4mac" ) CONFIG_FILES="$CONFIG_FILES ../tools/src/package4mac" ;; - "../tools/templates/f77/demo.mak" ) CONFIG_FILES="$CONFIG_FILES ../tools/templates/f77/demo.mak" ;; - "../tools/templates/f90/demo.mak" ) CONFIG_FILES="$CONFIG_FILES ../tools/templates/f90/demo.mak" ;; - "../tools/templates/cxx/demo.mak" ) CONFIG_FILES="$CONFIG_FILES ../tools/templates/cxx/demo.mak" ;; - "../tools/testtools/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../tools/testtools/Makefile" ;; - "../data/inputs/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../data/inputs/Makefile" ;; - "../test_problems/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../test_problems/Makefile" ;; - "../test_problems/cxx_ex/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../test_problems/cxx_ex/Makefile" ;; - "../test_problems/silane_equil/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../test_problems/silane_equil/Makefile" ;; - "../test_problems/surfkin/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../test_problems/surfkin/Makefile" ;; - "../test_problems/diamondSurf/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../test_problems/diamondSurf/Makefile" ;; - "../test_problems/ck2cti_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../test_problems/ck2cti_test/Makefile" ;; - "../test_problems/ck2cti_test/runtest" ) CONFIG_FILES="$CONFIG_FILES ../test_problems/ck2cti_test/runtest" ;; - "../test_problems/python/Makefile" ) CONFIG_FILES="$CONFIG_FILES ../test_problems/python/Makefile" ;; - "../bin/install_tsc" ) CONFIG_FILES="$CONFIG_FILES ../bin/install_tsc" ;; - "../config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS ../config.h" ;; - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; - esac -done - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason to put it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Create a temporary directory, and hook for its removal unless debugging. -$debug || -{ - trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 -} - -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./confstat$$-$RANDOM - (umask 077 && mkdir $tmp) -} || -{ - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} - -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF - -# -# CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "\$CONFIG_FILES"; then - # Protect against being on the right side of a sed subst in config.status. - sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; - s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF -s,@SHELL@,$SHELL,;t t -s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t -s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t -s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t -s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t -s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t -s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t -s,@exec_prefix@,$exec_prefix,;t t -s,@prefix@,$prefix,;t t -s,@program_transform_name@,$program_transform_name,;t t -s,@bindir@,$bindir,;t t -s,@sbindir@,$sbindir,;t t -s,@libexecdir@,$libexecdir,;t t -s,@datadir@,$datadir,;t t -s,@sysconfdir@,$sysconfdir,;t t -s,@sharedstatedir@,$sharedstatedir,;t t -s,@localstatedir@,$localstatedir,;t t -s,@libdir@,$libdir,;t t -s,@includedir@,$includedir,;t t -s,@oldincludedir@,$oldincludedir,;t t -s,@infodir@,$infodir,;t t -s,@mandir@,$mandir,;t t -s,@build_alias@,$build_alias,;t t -s,@host_alias@,$host_alias,;t t -s,@target_alias@,$target_alias,;t t -s,@DEFS@,$DEFS,;t t -s,@ECHO_C@,$ECHO_C,;t t -s,@ECHO_N@,$ECHO_N,;t t -s,@ECHO_T@,$ECHO_T,;t t -s,@LIBS@,$LIBS,;t t -s,@BITCOMPILE@,$BITCOMPILE,;t t -s,@BITHARDWARE@,$BITHARDWARE,;t t -s,@BITCHANGE@,$BITCHANGE,;t t -s,@CVF_LIBDIR@,$CVF_LIBDIR,;t t -s,@ldemulationarg@,$ldemulationarg,;t t -s,@USE_CLIB_DLL@,$USE_CLIB_DLL,;t t -s,@local_inst@,$local_inst,;t t -s,@local_python_inst@,$local_python_inst,;t t -s,@python_prefix@,$python_prefix,;t t -s,@python_win_prefix@,$python_win_prefix,;t t -s,@ctversion@,$ctversion,;t t -s,@homedir@,$homedir,;t t -s,@ct_libdir@,$ct_libdir,;t t -s,@ct_bindir@,$ct_bindir,;t t -s,@ct_incdir@,$ct_incdir,;t t -s,@ct_incroot@,$ct_incroot,;t t -s,@ct_datadir@,$ct_datadir,;t t -s,@ct_demodir@,$ct_demodir,;t t -s,@ct_templdir@,$ct_templdir,;t t -s,@ct_tutdir@,$ct_tutdir,;t t -s,@ct_docdir@,$ct_docdir,;t t -s,@ct_dir@,$ct_dir,;t t -s,@ct_mandir@,$ct_mandir,;t t -s,@COMPACT_INSTALL@,$COMPACT_INSTALL,;t t -s,@build@,$build,;t t -s,@build_cpu@,$build_cpu,;t t -s,@build_vendor@,$build_vendor,;t t -s,@build_os@,$build_os,;t t -s,@host@,$host,;t t -s,@host_cpu@,$host_cpu,;t t -s,@host_vendor@,$host_vendor,;t t -s,@host_os@,$host_os,;t t -s,@target@,$target,;t t -s,@target_cpu@,$target_cpu,;t t -s,@target_vendor@,$target_vendor,;t t -s,@target_os@,$target_os,;t t -s,@username@,$username,;t t -s,@ctroot@,$ctroot,;t t -s,@buildinc@,$buildinc,;t t -s,@buildlib@,$buildlib,;t t -s,@buildbin@,$buildbin,;t t -s,@MAKE@,$MAKE,;t t -s,@ARCHIVE@,$ARCHIVE,;t t -s,@DO_RANLIB@,$DO_RANLIB,;t t -s,@RANLIB@,$RANLIB,;t t -s,@SOEXT@,$SOEXT,;t t -s,@SHARED@,$SHARED,;t t -s,@PIC@,$PIC,;t t -s,@LCXX_FLAGS@,$LCXX_FLAGS,;t t -s,@LCXX_END_LIBS@,$LCXX_END_LIBS,;t t -s,@CXX_INCLUDES@,$CXX_INCLUDES,;t t -s,@USERDIR@,$USERDIR,;t t -s,@INCL_USER_CODE@,$INCL_USER_CODE,;t t -s,@CC@,$CC,;t t -s,@CFLAGS@,$CFLAGS,;t t -s,@LDFLAGS@,$LDFLAGS,;t t -s,@CPPFLAGS@,$CPPFLAGS,;t t -s,@ac_ct_CC@,$ac_ct_CC,;t t -s,@EXEEXT@,$EXEEXT,;t t -s,@OBJEXT@,$OBJEXT,;t t -s,@use_sundials@,$use_sundials,;t t -s,@CVODE_LIBS@,$CVODE_LIBS,;t t -s,@sundials_include@,$sundials_include,;t t -s,@phase_object_files@,$phase_object_files,;t t -s,@phase_header_files@,$phase_header_files,;t t -s,@COMPILE_CATHERMO@,$COMPILE_CATHERMO,;t t -s,@KERNEL@,$KERNEL,;t t -s,@KERNEL_OBJ@,$KERNEL_OBJ,;t t -s,@BUILD_CK@,$BUILD_CK,;t t -s,@LIB_DIR@,$LIB_DIR,;t t -s,@build_lapack@,$build_lapack,;t t -s,@build_blas@,$build_blas,;t t -s,@BLAS_LAPACK_LIBS@,$BLAS_LAPACK_LIBS,;t t -s,@BLAS_LAPACK_DIR@,$BLAS_LAPACK_DIR,;t t -s,@build_with_f2c@,$build_with_f2c,;t t -s,@LOCAL_LIB_DIRS@,$LOCAL_LIB_DIRS,;t t -s,@LOCAL_LIBS@,$LOCAL_LIBS,;t t -s,@CT_SHARED_LIB@,$CT_SHARED_LIB,;t t -s,@F77FLAGS@,$F77FLAGS,;t t -s,@PYTHON_CMD@,$PYTHON_CMD,;t t -s,@BUILD_PYTHON@,$BUILD_PYTHON,;t t -s,@NUMARRAY_INC_DIR@,$NUMARRAY_INC_DIR,;t t -s,@NUMARRAY_HOME@,$NUMARRAY_HOME,;t t -s,@CANTERA_PYTHON_HOME@,$CANTERA_PYTHON_HOME,;t t -s,@CVSTAG@,$CVSTAG,;t t -s,@MATLAB_CMD@,$MATLAB_CMD,;t t -s,@BUILD_MATLAB@,$BUILD_MATLAB,;t t -s,@BUILD_CLIB@,$BUILD_CLIB,;t t -s,@export_name@,$export_name,;t t -s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t -s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t -s,@INSTALL_DATA@,$INSTALL_DATA,;t t -s,@CXX@,$CXX,;t t -s,@CXXFLAGS@,$CXXFLAGS,;t t -s,@ac_ct_CXX@,$ac_ct_CXX,;t t -s,@F77@,$F77,;t t -s,@FFLAGS@,$FFLAGS,;t t -s,@ac_ct_F77@,$ac_ct_F77,;t t -s,@FLIBS@,$FLIBS,;t t -s,@F90@,$F90,;t t -s,@BUILD_F90@,$BUILD_F90,;t t -s,@F90FLAGS@,$F90FLAGS,;t t -s,@F90BUILDFLAGS@,$F90BUILDFLAGS,;t t -s,@precompile_headers@,$precompile_headers,;t t -s,@CXX_DEPENDS@,$CXX_DEPENDS,;t t -s,@OS_IS_DARWIN@,$OS_IS_DARWIN,;t t -s,@OS_IS_WIN@,$OS_IS_WIN,;t t -s,@OS_IS_CYGWIN@,$OS_IS_CYGWIN,;t t -s,@SHARED_CTLIB@,$SHARED_CTLIB,;t t -s,@mex_ext@,$mex_ext,;t t -s,@F77_EXT@,$F77_EXT,;t t -s,@CXX_EXT@,$CXX_EXT,;t t -s,@OBJ_EXT@,$OBJ_EXT,;t t -s,@EXE_EXT@,$EXE_EXT,;t t -s,@math_libs@,$math_libs,;t t -s,@SO@,$SO,;t t -s,@LDSHARED@,$LDSHARED,;t t -s,@EXTRA_LINK@,$EXTRA_LINK,;t t -s,@LIBOBJS@,$LIBOBJS,;t t -s,@LTLIBOBJS@,$LTLIBOBJS,;t t -CEOF - -_ACEOF - - cat >>$CONFIG_STATUS <<\_ACEOF - # Split the substitutions into bite-sized pieces for seds with - # small command number limits, like on Digital OSF/1 and HP-UX. - ac_max_sed_lines=48 - ac_sed_frag=1 # Number of current file. - ac_beg=1 # First line for current file. - ac_end=$ac_max_sed_lines # Line after last line for current file. - ac_more_lines=: - ac_sed_cmds= - while $ac_more_lines; do - if test $ac_beg -gt 1; then - sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - else - sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - fi - if test ! -s $tmp/subs.frag; then - ac_more_lines=false - else - # The purpose of the label and of the branching condition is to - # speed up the sed processing (if there are no `@' at all, there - # is no need to browse any of the substitutions). - # These are the two extra sed commands mentioned above. - (echo ':t - /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed - if test -z "$ac_sed_cmds"; then - ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" - else - ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" - fi - ac_sed_frag=`expr $ac_sed_frag + 1` - ac_beg=$ac_end - ac_end=`expr $ac_end + $ac_max_sed_lines` - fi - done - if test -z "$ac_sed_cmds"; then - ac_sed_cmds=cat - fi -fi # test -n "$CONFIG_FILES" - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac -# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be -# absolute. -ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd` -ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd` -ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` -ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` - - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_builddir$INSTALL ;; - esac - - if test x"$ac_file" != x-; then - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - rm -f "$ac_file" - fi - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - configure_input= - else - configure_input="$ac_file. " - fi - configure_input=$configure_input"Generated from `echo $ac_file_in | - sed 's,.*/,,'` by configure." - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - echo $f;; - *) # Relative - if test -f "$f"; then - # Build tree - echo $f - elif test -f "$srcdir/$f"; then - # Source tree - echo $srcdir/$f - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF - sed "$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s,@configure_input@,$configure_input,;t t -s,@srcdir@,$ac_srcdir,;t t -s,@abs_srcdir@,$ac_abs_srcdir,;t t -s,@top_srcdir@,$ac_top_srcdir,;t t -s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t -s,@builddir@,$ac_builddir,;t t -s,@abs_builddir@,$ac_abs_builddir,;t t -s,@top_builddir@,$ac_top_builddir,;t t -s,@abs_top_builddir@,$ac_abs_top_builddir,;t t -s,@INSTALL@,$ac_INSTALL,;t t -" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out - rm -f $tmp/stdin - if test x"$ac_file" != x-; then - mv $tmp/out $ac_file - else - cat $tmp/out - rm -f $tmp/out - fi - -done -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -# -# CONFIG_HEADER section. -# - -# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where -# NAME is the cpp macro being defined and VALUE is the value it is being given. -# -# ac_d sets the value in "#define NAME VALUE" lines. -ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' -ac_dB='[ ].*$,\1#\2' -ac_dC=' ' -ac_dD=',;t' -# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". -ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' -ac_uB='$,\1#\2define\3' -ac_uC=' ' -ac_uD=',;t' - -for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - echo $f;; - *) # Relative - if test -f "$f"; then - # Build tree - echo $f - elif test -f "$srcdir/$f"; then - # Source tree - echo $srcdir/$f - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } - # Remove the trailing spaces. - sed 's/[ ]*$//' $ac_file_inputs >$tmp/in - -_ACEOF - -# Transform confdefs.h into two sed scripts, `conftest.defines' and -# `conftest.undefs', that substitutes the proper values into -# config.h.in to produce config.h. The first handles `#define' -# templates, and the second `#undef' templates. -# And first: Protect against being on the right side of a sed subst in -# config.status. Protect against being in an unquoted here document -# in config.status. -rm -f conftest.defines conftest.undefs -# Using a here document instead of a string reduces the quoting nightmare. -# Putting comments in sed scripts is not portable. -# -# `end' is used to avoid that the second main sed command (meant for -# 0-ary CPP macros) applies to n-ary macro definitions. -# See the Autoconf documentation for `clear'. -cat >confdef2sed.sed <<\_ACEOF -s/[\\&,]/\\&/g -s,[\\$`],\\&,g -t clear -: clear -s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp -t end -s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp -: end -_ACEOF -# If some macros were called several times there might be several times -# the same #defines, which is useless. Nevertheless, we may not want to -# sort them, since we want the *last* AC-DEFINE to be honored. -uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines -sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs -rm -f confdef2sed.sed - -# This sed command replaces #undef with comments. This is necessary, for -# example, in the case of _POSIX_SOURCE, which is predefined and required -# on some systems where configure will not decide to define it. -cat >>conftest.undefs <<\_ACEOF -s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, -_ACEOF - -# Break up conftest.defines because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS -echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS -echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS -echo ' :' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.defines >/dev/null -do - # Write a limited-size here document to $tmp/defines.sed. - echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS - # Speed up: don't consider the non `#define' lines. - echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS - # Work around the forget-to-reset-the-flag bug. - echo 't clr' >>$CONFIG_STATUS - echo ': clr' >>$CONFIG_STATUS - sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS - echo 'CEOF - sed -f $tmp/defines.sed $tmp/in >$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in -' >>$CONFIG_STATUS - sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail - rm -f conftest.defines - mv conftest.tail conftest.defines -done -rm -f conftest.defines -echo ' fi # grep' >>$CONFIG_STATUS -echo >>$CONFIG_STATUS - -# Break up conftest.undefs because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo ' # Handle all the #undef templates' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.undefs >/dev/null -do - # Write a limited-size here document to $tmp/undefs.sed. - echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS - # Speed up: don't consider the non `#undef' - echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS - # Work around the forget-to-reset-the-flag bug. - echo 't clr' >>$CONFIG_STATUS - echo ': clr' >>$CONFIG_STATUS - sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS - echo 'CEOF - sed -f $tmp/undefs.sed $tmp/in >$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in -' >>$CONFIG_STATUS - sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail - rm -f conftest.undefs - mv conftest.tail conftest.undefs -done -rm -f conftest.undefs - -cat >>$CONFIG_STATUS <<\_ACEOF - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - echo "/* Generated by configure. */" >$tmp/config.h - else - echo "/* $ac_file. Generated by configure. */" >$tmp/config.h - fi - cat $tmp/in >>$tmp/config.h - rm -f $tmp/in - if test x"$ac_file" != x-; then - if diff $ac_file $tmp/config.h >/dev/null 2>&1; then - { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} - else - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - rm -f $ac_file - mv $tmp/config.h $ac_file - fi - else - cat $tmp/config.h - rm -f $tmp/config.h - fi -done -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF - -{ (exit 0); exit 0; } -_ACEOF -chmod +x $CONFIG_STATUS -ac_clean_files=$ac_clean_files_save - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || { (exit 1); exit 1; } -fi - -# ) -if test "x${OS_IS_WIN}" = "x1"; then -#cp -f ../config.h ../Cantera/src -cd ../ext/f2c_libs -cp arith.hwin32 arith.h -cd ../../config -fi -if test -f "../test_problems/ck2cti_test/runtest"; then - chmod +x ../test_problems/ck2cti_test/runtest -fi -if test -f "../bin/install_tsc"; then - chmod +x ../bin/install_tsc -fi - - -echo -if test "x${OS_IS_WIN}" = "x0"; then - echo "Now type '${MAKE}' to build Cantera" -# else -# echo "Now start Visual Studio, open workspace 'win32/cantera.dsw'," -# echo "and build project 'all'. When this finishes, come back here and " -# echo "type 'make win' to make the Python and/or MATLAB interfaces." -fi -echo - diff --git a/config/configure.in b/config/configure.in deleted file mode 100755 index 9dc8554f1..000000000 --- a/config/configure.in +++ /dev/null @@ -1,1000 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. -define([AC_CACHE_LOAD], )dnl -define([AC_CACHE_SAVE], )dnl -AC_INIT(Cantera.README) -AC_CONFIG_HEADER(../config.h) -AC_CONFIG_AUX_DIR(.) - -echo " " -echo "--------------------------------------------------------------" -echo " " -echo " Cantera Configuration Script " -echo " " -echo "--------------------------------------------------------------" -echo " " - -AC_DEFINE(NDEBUG) - -ac_sys_system=`uname -s` -ac_sys_release=`uname -r` -sys_hardware='unknown' - -# -# Determine the number of hardware bits in the system -# -# BITHARDWARE is the default number of compilation bits in pointers -# -case $ac_sys_system in - Linux* ) - sys_harware=`uname -i` - echo 'linux ' $sys_hardware - case $sys_hardware in - x86_64 ) BITHARDWARE=64 ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; -esac -# -# BITCOMPILE is the desired number of compilation bits in pointers -# Note, it can be different than the number of hardware bits. -# Many times you will want to compile 32 bits on a 64 bit -# machine -if test -z $BITCOMPILE ; then - BITCOMPILE=$BITHARDWARE -fi - -BITCHANGE= -if test $BITCOMPILE != $BITHARDWARE ; then - BITCHANGE='y' -fi - -# echo 'BITHARDWARE= ' $BITHARDWARE -# echo 'BITCOMPILE= ' $BITCOMPILE -AC_SUBST(BITCOMPILE) -AC_SUBST(BITHARDWARE) -AC_SUBST(BITCHANGE) - -SHARED_CTLIB=0 -OS_IS_DARWIN=0 -OS_IS_WIN=0 -OS_IS_CYGWIN=0 -EXTRA_LINK=${EXTRA_LINK:=""} - -mex_ext=mexglx -ldemulationarg= - -case $ac_sys_system in - Darwin*) OS_IS_DARWIN=1 - EXTRA_LINK="-framework Accelerate "$EXTRA_LINK - CXX_INCLUDES="$CXX_INCLUDES -I/System/Library/Frameworks/Accelerate.framework/Headers" - mex_ext=mexmac;; - CYGWIN*) OS_IS_CYGWIN=1; mex_ext=dll;; - Linux* ) case $BITHARDWARE in - 64 ) if test "$BITCHANGE" = "y" ; then - ldemulationarg='-melf_i386' - fi ;; - esac -esac - -CVF_LIBDIR="" -if test "x${OS_IS_CYGWIN}" = "x1"; then - if test "${USE_VISUAL_STUDIO}" = "y"; then - OS_IS_WIN=1; - OS_IS_CYGWIN=0; - CVF_LIBDIR=$FORTRAN_LIB_DIR - fi -fi -AC_SUBST(CVF_LIBDIR) - -#echo "ldemulationarg = " $ldemulationarg -AC_SUBST(ldemulationarg) - -# -# Determine if clib is to be a static or dynamic library -# -> will test to see if USE_DLL is defined in the cygwmin environment -# -USE_CLIB_DLL=0 -if test "x${OS_IS_WIN}" = "x1"; then - if test -n ${USE_CLIB_DLL} ; then - USE_CLIB_DLL=1 - fi -fi -AC_SUBST(USE_CLIB_DLL) - -prdef="/usr/local/cantera" -if test "x$OS_IS_DARWIN" = "x1"; then prdef="/Applications/Cantera"; fi - -local_inst=1 -if test "x${prefix}" = "xNONE"; then - prefix=${prdef} - local_inst=0 -fi -exec_prefix=${prefix} - -if test "x${OS_IS_WIN}" = "x1"; then - prefix=`cygpath -a -m "${prefix}" ` -fi -echo "Cantera will be installed in ${prefix}" -AC_SUBST(prefix) - -AC_SUBST(local_inst) - -# -# Determination of Python site-package directory location -# -local_python_inst=${local_inst} -if test "x${SET_PYTHON_SITE_PACKAGE_TOPDIR}" = "xy"; then - python_prefix=${PYTHON_SITE_PACKAGE_TOPDIR} - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1" ; then - python_prefix=`cygpath -a -m "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - elif test "x${OS_IS_CYGWIN}" = "x1" ; then - python_prefix=`cygpath -a -u "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - fi - local_python_inst=1 - echo "Cantera's Python packages will be installed in ${python_prefix}" -else - python_prefix=$prefix - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1"; then - python_win_prefix=`cygpath -a -w "${python_prefix}" ` - fi -fi - -AC_SUBST(local_python_inst) -AC_SUBST(python_prefix) -AC_SUBST(python_win_prefix) - -ctversion=${CANTERA_VERSION} -AC_SUBST(ctversion) -AC_DEFINE_UNQUOTED(CANTERA_VERSION,"$ctversion") - -homedir=${HOME} -AC_SUBST(homedir) - -# A compact installation is one in which the $prefix directory -# contains only Cantera files. It is different than a local -# installation, in that the Python package is installed with other -# Python packages and modules in site-packages, rather than with the -# rest of the Cantera files, as in a local installation. Therefore, -# with a compact installation, there is no need to set PYTHONPATH. A -# compact installation is done on all machines now by default. -# This simplifies the installation issues, because now all Cantera -# installations look the same, except perhaps for the locations -# of the python packages. -# An option called, "distributed installations", is no longer -# supported. - -ct_libdir=${prefix}/lib -ct_bindir=${prefix}/bin -ct_incdir=${prefix}/include/cantera -ct_incroot=${prefix}/include -ct_datadir=${prefix}/data -ct_demodir=${prefix}/demos -ct_templdir=${prefix}/templates -ct_tutdir=${prefix}/tutorials -ct_docdir=${prefix}/doc -ct_dir=${prefix} -ct_mandir=${prefix} - -AC_SUBST(ct_libdir) -AC_SUBST(ct_bindir) -AC_SUBST(ct_incdir) -AC_SUBST(ct_incroot) -AC_SUBST(ct_datadir) -AC_SUBST(ct_demodir) -AC_SUBST(ct_templdir) -AC_SUBST(ct_tutdir) -AC_SUBST(ct_docdir) -AC_SUBST(ct_dir) -AC_SUBST(ct_mandir) - -COMPACT_INSTALL=1 -AC_SUBST(COMPACT_INSTALL) - -AC_CANONICAL_SYSTEM() -# the root of the source tree -ctroot=`(cd ..;pwd)` -builddir=$target -if test "x${OS_IS_WIN}" = "x1"; then - ctroot=`cygpath -a -m "${ctroot}" | sed 's/\\\/\\//g'` - builddir="i686-pc-win32" -fi - -if test -z "$username"; then username=$USER; fi -AC_SUBST(username) - -AC_SUBST(ctroot) - -# The include directory in the 'build' subdirectory. -# This is required to build the test problems -# before Cantera has been installed. -buildinc=$ctroot/build/include -AC_SUBST(buildinc) - -buildlib=$ctroot/build/lib/$builddir -AC_SUBST(buildlib) -buildbin=$ctroot/build/bin/$builddir -AC_SUBST(buildbin) - -# add definitions to config.h -if test "x${OS_IS_DARWIN}" = "x1"; then - AC_DEFINE_UNQUOTED(DARWIN,$OS_IS_DARWIN) -fi -if test "x${OS_IS_CYGWIN}" = "x1"; then - AC_DEFINE_UNQUOTED(CYGWIN,$OS_IS_CYGWIN) -fi -if test "x${OS_IS_WIN}" = "x1"; then - AC_DEFINE_UNQUOTED(WINMSVC,$OS_IS_WIN) -fi -AC_DEFINE_UNQUOTED(RXNPATH_FONT,"$RPFONT") -#AC_DEFINE_UNQUOTED(CANTERA_ROOT,"$prefix/cantera") -AC_DEFINE_UNQUOTED(CANTERA_DATA,"$ct_datadir") - - -if test -z "$MAKE"; then MAKE='make'; fi -AC_SUBST(MAKE) - -#----------- ARCHIVE -------------------- - -if test "x${OS_IS_DARWIN}" = "x1"; then -ARCHIVE='libtool -static -o' -fi - -AC_SUBST(ARCHIVE) - -DO_RANLIB=1 -if test "x${RANLIB}" = "x"; then -DO_RANLIB=0 -fi - -AC_SUBST(DO_RANLIB) -AC_SUBST(RANLIB) - -#---------------------------------------- - - -AC_SUBST(SOEXT) - -if test -z "$SHARED"; then SHARED='-shared'; fi -AC_SUBST(SHARED) - -if test -z "$PIC"; then PIC='-fPIC'; fi -AC_SUBST(PIC) - -#if test -z "$LCXX_FLAGS"; then LCXX_FLAGS="$CXXFLAGS"; fi -AC_SUBST(LCXX_FLAGS) - -#if test -z "$LCXX_END_LIBS"; then LCXX_END_LIBS='-lm'; fi -AC_SUBST(LCXX_END_LIBS) - -AC_SUBST(CXX_INCLUDES) - -######################################################### -# User Code -######################################################### -USERDIR="" -INCL_USER_CODE=0 -if test -n "$USER_SRC_DIR"; then USERDIR=$USER_SRC_DIR; INCL_USER_CODE=1; fi -AC_SUBST(USERDIR) -AC_SUBST(INCL_USER_CODE) - -use_sundials=0 -sundials_inc= -CVODE_LIBS='-lcvode' - -############################################################################ -# SUNDIALS SETUP -########################################################################### -if test "$USE_SUNDIALS" = "default"; then -ldsave=$LDFLAGS -LDFLAGS='-L'$SUNDIALS_HOME/lib' '$ldsave -fi - -AC_CHECK_LIB(sundials_cvodes, CVodeCreate, [use_sundials=1], [use_sundials=0],\ -[-lsundials_shared -lsundials_nvecserial -lm]) - -if test "x$USE_SUNDIALS" = "xy"; then -use_sundials=1 -fi - -if test ${use_sundials} = 1; then -AC_DEFINE(HAS_SUNDIALS) -echo "using CVODES from SUNDIALS... Sensitivity analysis enabled." -CVODE_LIBS='-lsundials_cvodes -lsundials_shared -lsundials_nvecserial' -sundials_include='-I'${SUNDIALS_HOME}/include -fi - -if test ${use_sundials} = 0; then -echo "using CVODE... Sensitivity analysis disabled." -echo "-> To enable sensitivity analysis, install the SUNDIALS package with CVODES." -fi - -AC_SUBST(use_sundials) -AC_SUBST(CVODE_LIBS) -AC_SUBST(sundials_include) - - -######################################################### -# The Cantera Kernel -######################################################### -KERNEL='base' -KERNEL_OBJ='$(BASE_OBJ)' -BUILD_CK= - -NEED_CKREADER= -NEED_LAPACK= -#NEED_RECIPES= -NEED_MATH= -NEED_TPX= -NEED_F2C= -NEED_CVODE= -NEED_TRANSPORT= -NEED_ZEROD= -NEED_ONED= - -if test "$ENABLE_THERMO" = "y"; then - KERNEL=$KERNEL' 'thermo; - KERNEL_OBJ=$KERNEL_OBJ' $(THERMO_OBJ)' -fi - -if test "$WITH_METAL" = "y"; then - AC_DEFINE(WITH_METAL) - hdrs=$hdrs' MetalPhase.h' -fi -if test "$WITH_STOICH_SUBSTANCE" = "y"; then - AC_DEFINE(WITH_STOICH_SUBSTANCE) - hdrs=$hdrs' StoichSubstance.h' - objs=$objs' StoichSubstance.o' -fi -if test "$WITH_PURE_FLUIDS" = "y"; then - AC_DEFINE(WITH_PURE_FLUIDS) - hdrs=$hdrs' PureFluidPhase.h' - objs=$objs' PureFluidPhase.o' -fi -if test "$WITH_LATTICE_SOLID" = "y"; then - AC_DEFINE(WITH_LATTICE_SOLID) - hdrs=$hdrs' LatticeSolidPhase.h' - objs=$objs' LatticeSolidPhase.o' -fi -phase_object_files=$objs -phase_header_files=$hdrs -AC_SUBST(phase_object_files) -AC_SUBST(phase_header_files) - -COMPILE_CATHERMO=0 -if test "$WITH_ELECTROLYTES" = "y"; then - AC_DEFINE(WITH_ELECTROLYTES) - COMPILE_CATHERMO=1 -fi -AC_SUBST(COMPILE_CATHERMO) - -if test "$ENABLE_KINETICS" = "y"; then - KERNEL=$KERNEL' 'kinetics; - KERNEL_OBJ=$KERNEL_OBJ' $(KINETICS_OBJ) $(HETEROKIN_OBJ)' -fi - -if test "$ENABLE_CK" = "y" ; then - BUILD_CK=1 - NEED_CKREADER=1 - KERNEL=$KERNEL' 'ck -fi - -if test "$ENABLE_TRANSPORT" = "y" ; then - KERNEL=$KERNEL' 'trprops - NEED_LAPACK=1 - NEED_MATH=1 - NEED_TRANSPORT=1 -fi - -if test "$ENABLE_EQUIL" = "y" ; then - KERNEL=$KERNEL' 'equil - KERNEL_OBJ=$KERNEL_OBJ' $(EQUIL_OBJ)' - NEED_LAPACK=1 -# NEED_RECIPES=1 -fi - -if test "$ENABLE_REACTORS" = "y" ; then - KERNEL=$KERNEL' 'reactor - NEED_CVODE=1 - NEED_ZEROD=1 -fi - -if test "$ENABLE_SOLVERS" = "y" ; then - KERNEL=$KERNEL' 'solvers - KERNEL_OBJ=$KERNEL_OBJ' $(SOLVERS_OBJ)' - NEED_CVODE=1 - NEED_MATH=1 -fi - -if test "$ENABLE_FLOW1D" = "y" ; then - KERNEL=$KERNEL' 'flow1D - NEED_LAPACK=1 - NEED_MATH=1 - NEED_ONED=1 -fi - -if test "$ENABLE_RXNPATH" = "y" ; then - KERNEL=$KERNEL' 'rpath - KERNEL_OBJ=$KERNEL_OBJ' $(RPATH_OBJ)' -fi - -if test "$WITH_PURE_FLUIDS" = "y" ; then - KERNEL=$KERNEL' 'tpx - NEED_TPX=1 - AC_DEFINE(INCL_PURE_FLUIDS) -fi - -AC_SUBST(KERNEL) -AC_SUBST(KERNEL_OBJ) -AC_SUBST(BUILD_CK) -AC_SUBST(LIB_DIR) - - -######################################################## -# BLAS and LAPACK -######################################################## -# -# if lapack and blas libraries have been specified, then skip building the -# supplied libraries - - -build_lapack=0 -build_blas=0 -if test -z "$BLAS_LAPACK_LIBS"; then - if test "x$OS_IS_DARWIN" = "x0"; then - BLAS_LAPACK_LIBS="-lctlapack -lctblas" - BLAS_LAPACK_DIR="$buildlib" - build_blas=1 - build_lapack=1 - fi -fi - -AC_SUBST(build_lapack) - -AC_SUBST(build_blas) - -AC_SUBST(BLAS_LAPACK_LIBS) -AC_SUBST(BLAS_LAPACK_DIR) - -# -# Stubout section for f2c versions of lapack: -# Define these variables, but turn them off in main version of code -# -build_with_f2c=0 -if test -n $BUILD_WITH_F2C ; then - if test $BUILD_WITH_F2C = "y" -o $BUILD_WITH_F2C = "Y" ; then - build_with_f2c=1 - elif test $BUILD_WITH_F2C = "n" -o $BUILD_WITH_F2C = "N" ; then - build_with_f2c=0 - elif test $BUILD_WITH_F2C = "default" ; then - if test x$OS_IS_WIN = "x1" ; then - build_with_f2c=1 - else - build_with_f2c=0 - fi - fi -fi - -# -# Determine if you need the f2c library at link time -# -> Note, Linux systems already have the g2c library -# added in, which is the same thing as our -# f2c library. -if test x"$build_with_f2c" = "x1" ; then - NEED_F2C=1 - case $ac_sys_system in - Linux) NEED_F2C= ;; - esac -fi -# Darwin*) NEED_F2C= ;; - -AC_SUBST(build_with_f2c) - -# LOCAL_LIBS: -# Build a string of Cantera libraries necessary to link -# Cantera applications -# -LOCAL_LIBS= - -if test -n "$INCL_USER_CODE" -then LOCAL_LIBS=$LOCAL_LIBS' '-luser -fi - -if test -n "$NEED_ONED" -then LOCAL_LIBS=$LOCAL_LIBS' '-loneD -fi - -if test -n "$NEED_ZEROD" -then LOCAL_LIBS=$LOCAL_LIBS' '-lzeroD -fi - -if test -n "$NEED_TRANSPORT" -then LOCAL_LIBS=$LOCAL_LIBS' '-ltransport -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lcantera - -#if test -n "$NEED_RECIPES" -#then LOCAL_LIBS=$LOCAL_LIBS' '-lrecipes -#fi - -if test -n "$NEED_CVODE"; then -LOCAL_LIBS=$LOCAL_LIBS' '$CVODE_LIBS -fi - -if test -n "$NEED_LAPACK" -then LOCAL_LIBS=$LOCAL_LIBS' '$BLAS_LAPACK_LIBS -fi - -if test -n "$NEED_MATH" -then LOCAL_LIBS=$LOCAL_LIBS' '-lctmath -fi - -if test -n "$NEED_TPX" -then LOCAL_LIBS=$LOCAL_LIBS' '-ltpx -fi - -if test -n "$NEED_F2C" -then LOCAL_LIBS=$LOCAL_LIBS' '-lctf2c -else - case $ac_sys_system in - Linux) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - esac -fi -# Darwin*) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - -if test -n "$NEED_CKREADER" -then LOCAL_LIBS=$LOCAL_LIBS' '-lconverters -fi - -LOCAL_LIB_DIRS= -if test -n "$BLAS_LAPACK_DIR" -then LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BLAS_LAPACK_DIR -fi - - -if test -n "$SUNDIALS_HOME" -then LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$SUNDIALS_HOME/lib -fi - - -AC_SUBST(LOCAL_LIB_DIRS) -AC_SUBST(LOCAL_LIBS) - -#------------------------------------------------- -# Language Interfaces -#------------------------------------------------- - -AC_SUBST(CT_SHARED_LIB) - - -BUILD_F90=1 -if test "x$BUILD_F90_INTERFACE" = "xn"; then - BUILD_F90=0 -fi - -if test "x$F77FLAGS" = "x"; then - F77FLAGS=$FFLAGS -fi -AC_SUBST(F77FLAGS) - -BUILD_CLIB=1 - - - -#---------------------------------------------------------------- -# Python Interface -#---------------------------------------------------------------- - -BUILD_PYTHON=0 -if test "x$PYTHON_PACKAGE" = "xfull"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xdefault"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xminimal"; then - BUILD_PYTHON=1 -elif test "x$PYTHON_PACKAGE" = "xnone"; then - BUILD_PYTHON=0 -fi - -if test "$PYTHON_CMD" = "default" -o \ - "$PYTHON_CMD"x = "x"; then - AC_PATH_PROGS(PYTHON_CMD, python2 python, "none") - if test "$PYTHON_CMD" = "none"; then - BUILD_PYTHON=0 - echo "Python not found. Only those portions of Cantera that" - echo "can be installed without Python will be installed." -# echo -# echo "********************************************************************" -# echo "Configuration error. Python is required to build Cantera, but it" -# echo "cannot be found. Set environment variable PYTHON_CMD to the full path to" -# echo "the Python interpreter on your system, and run configure again." -# echo "********************************************************************" -# exit 1 - else - echo "Python command set by configure to " $PYTHON_CMD - fi -else - echo "Python command preset to $PYTHON_CMD" -fi - - -AC_SUBST(BUILD_PYTHON) -AC_DEFINE_UNQUOTED(PYTHON_EXE,"$PYTHON_CMD") - -if test "$USE_NUMERIC" = "y"; then -AC_DEFINE(HAS_NUMERIC) -fi - -NUMARRAY_INC_DIR="" -if test -n "$NUMARRAY_HOME"; then -NUMARRAY_INC_DIR="$NUMARRAY_HOME/include/python" -fi -AC_SUBST(NUMARRAY_INC_DIR) -AC_SUBST(NUMARRAY_HOME) -AC_SUBST(CANTERA_PYTHON_HOME) - -#-------------------------- -# CVS Tag -#-------------------------- -CVSTAG=`${PYTHON_CMD} ../tools/src/findtag.py ..` -if test "x$CVSTAG" = "x"; then -CVSTAG="HEAD" -fi -AC_SUBST(CVSTAG) - - -# -# Matlab Interface -# -BUILD_MATLAB=0 -if test "$BUILD_MATLAB_TOOLBOX" != "n"; then - if test -z "$MATLAB_CMD"; then - AC_PATH_PROG(MATLAB_CMD, matlab, "none") - if test "$MATLAB_CMD" != "none"; then BUILD_MATLAB=1; BUILD_CLIB=1; fi - else - echo "Matlab command preset to $(MATLAB_CMD)$" - fi - if test "x$OS_IS_WIN" = "x1"; then - MATLAB_CMD=`cygpath -a -m "$MATLAB_CMD" ` - echo "Windows MATLAB command: ${MATLAB_CMD}" - fi -else - echo "MATLAB interface will not be installed" - if test -z "$MATLAB_CMD"; then - MATLAB_CMD="matlab" - fi -fi -AC_SUBST(BUILD_MATLAB) -AC_SUBST(MATLAB_CMD) -AC_SUBST(BUILD_CLIB) - -#------------------------------------------------- - -export_name=$target -AC_SUBST(export_name) - - -dnl Checks for programs. -AC_PROG_INSTALL -precompile_headers=no -if test "x$OS_IS_WIN" = "x1"; then -CXX=cl.exe -CC=cl.exe -else - -AC_PROG_CXX() -AC_PROG_CC() - -AC_MSG_CHECKING(for ability to precompile headers) - -if test -n "$GCC"; then - msg=`rm -f *h.gch; $CXX testpch.h &> /dev/null` - if test -f testpch.h.gch; then - precompile_headers=yes - AC_DEFINE(USE_PCH) - fi -fi -AC_MSG_RESULT(${precompile_headers}) -fi - -has_sstream=no -AC_MSG_CHECKING(for sstream) -cat >> testsstream.cpp << EOF -#include -main() {} -EOF - msg=`${CXX} -c testsstream.cpp &> /dev/null` - if test -f testsstream.o; then - has_sstream=yes - rm testsstream.o - AC_DEFINE(HAS_SSTREAM) - fi -rm -f testsstream.cpp -AC_MSG_RESULT(${has_sstream}) - - -#--------------------------------- -# Fortran -#--------------------------------- - -#if test x"$build_with_f2c" = "x0"; then - AC_PROG_F77() - -# if G77 is defined, then add a flag to turn off adding a second underscore -# to procedures that have an underscore in the name - if test -n "$G77"; then - FFLAGS=$FFLAGS' -fno-second-underscore' - fi - -dnl Checks for libraries. -AC_F77_LIBRARY_LDFLAGS() - -override_f77_libs=0; -case $ac_sys_system in - Darwin*) FLIBS='-lSystem'; override_f77_libs=1; SHARED_CTLIB=0;; -esac - -if test $override_f77_libs -gt 0; then - echo The Fortran 77 libraries on this platform are not correctly determined by - echo the configuration process. They are being manually set to - echo FLIBS = $FLIBS -fi - -#fi - -#-------------------------------------------- - - -if test "x${BUILD_F90}" != "x0"; then - if test "$F90" = "default" -o \ - "$F90"x = "x"; then - AC_PATH_PROGS(F90, f95 gfortran g95, "none") - if test "$F90" = "none" ; then - echo "ERROR: Fortran 90 requested, but no Fortran 90/95 compiler found!" - else - echo "Fortran compiler set to " $F90 - fi - else - echo "Fortran 90/95 compiler preset to $F90" - fi -fi - -has_f90=no -f90type=none -f90_module_dir='-I' -f90_opts='' - -if test "x${BUILD_F90}" != "x0"; then - AC_MSG_CHECKING(Fortran 90 compiler ($F90) type) - cat >> testf90.f90 << EOF -module mt -double precision, parameter :: x = 2.3 -end module mt -program testf90 -use mt -integer :: i -end program testf90 -EOF - msg=`${F90} -c testf90.f90 &> /dev/null` - if test -f testf90.o; then - has_f90=yes - rm testf90.o - f90type=unknown - fi -# - msg=`${F90} --version &> f90out` - isgfortran=`grep -c 'GNU Fortran 95' f90out` - if test "x${isgfortran}" != "x0"; then - f90type="gfortran" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - fi - - isg95=`grep -c 'G95' f90out` - if test "x${isg95}" != "x0"; then - f90type="g95" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - #case $ac_sys_system in - # Darwin*) FLIBS='-lg2c -lcc_dynamic';; - #esac - fi - - msg=`${F90} -V &> f90out` - isnag=`grep -c NAGWare f90out` - if test "x${isnag}" != "x0"; then - f90type="NAG" - f90opts="-I. -I${ct_incdir}" - f90buildopts="-I." - fi -# - msg=`${F90} -V -c testf90.f90 &> f90out` - isabsoft=`grep -c Absoft f90out` - if test "x${isabsoft}" != "x0"; then - f90type="Absoft" - f90opts="-p. -p${ct_incdir} -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - f90buildopts="-p. -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - fi - rm -f testf90.f90 - AC_MSG_RESULT(${f90type}) - if test -n $BUILD_F90; then - if test "x${has_f90}" = "xno"; then - echo " -> cannot build the Fortran 90 interface" - BUILD_F90=0 - fi - fi -fi -savef90flags=${F90FLAGS} -F90FLAGS=${f90opts}' '${F90FLAGS} -F90BUILDFLAGS=${f90buildopts}' '${savef90flags} -AC_SUBST(BUILD_F90) -AC_SUBST(F90) -AC_SUBST(F90FLAGS) -AC_SUBST(F90BUILDFLAGS) - -AC_OBJEXT -AC_EXEEXT - -AC_SUBST(precompile_headers) -AC_SUBST(CXX_DEPENDS) -AC_SUBST(FLIBS) -AC_SUBST(OS_IS_DARWIN) -AC_SUBST(OS_IS_WIN) -AC_SUBST(OS_IS_CYGWIN) -AC_SUBST(SHARED_CTLIB) -AC_SUBST(mex_ext) - -# filename extensions for Fortran 77 -if test -z "$F77_EXT"; then F77_EXT=f; fi -AC_SUBST(F77_EXT) - - -AC_LANG_CPLUSPLUS - -if test -z "$CXX_EXT"; then CXX_EXT=cpp; fi -AC_SUBST(CXX_EXT) - -if test -z "$OBJ_EXT"; then OBJ_EXT='o'; fi -AC_SUBST(OBJ_EXT) - -if test -z "$EXE_EXT"; then EXE_EXT=$EXEEXT; fi -AC_SUBST(EXE_EXT) - -dnl AC_LANG_FORTRAN77 -#local_math_libs='-lcvode' -#AC_SUBST(local_math_libs) - - -math_libs='-lcvode -lctmath' -AC_SUBST(math_libs) - -if test "$LAPACK_FTN_TRAILING_UNDERSCORE" = "y" -then AC_DEFINE(LAPACK_FTN_TRAILING_UNDERSCORE) -fi - -if test "$LAPACK_FTN_STRING_LEN_AT_END" = "y" -then AC_DEFINE(LAPACK_FTN_STRING_LEN_AT_END) -fi - -if test "$LAPACK_NAMES" = "lower" -then AC_DEFINE(LAPACK_NAMES_LOWERCASE) -fi - -# from the Python configure.in file... - -# Set info about shared libraries. -AC_SUBST(SO) -AC_SUBST(LDSHARED) -# -# This command is used in the the linking statement -# of the shared libraries used to communicate with python. -# -AC_SUBST(EXTRA_LINK) - -# SO is the extension of shared libraries `(including the dot!) -# -- usually .so, .sl on HP-UX, .dll on Cygwin -AC_MSG_CHECKING(SO) -if test -z "$SO" -then - case $ac_sys_system in - hp*|HP*) SO=.sl;; - CYGWIN*) SO=.dll;; - Darwin*) SO=.dylib;; - *) SO=.so;; - esac -fi -AC_MSG_RESULT($SO) - -dnl Checks for header files. - -dnl Checks for typedefs, structures, and compiler characteristics. - -AC_LANG_CPLUSPLUS - -dnl AC_MSG_CHECKING(for the Standard Template Library) - -dnl Checks for library functions. - -AC_OUTPUT(../Cantera/Makefile \ - ../Cantera/src/Makefile \ - ../Cantera/src/zeroD/Makefile \ - ../Cantera/src/oneD/Makefile \ - ../Cantera/src/converters/Makefile \ - ../Cantera/src/transport/Makefile \ - ../Cantera/src/thermo/Makefile \ - ../Cantera/clib/src/Makefile \ - ../Cantera/fortran/src/Makefile \ - ../Cantera/fortran/f77demos/f77demos.mak \ - ../Cantera/fortran/f77demos/isentropic.dsp \ - ../Cantera/matlab/Makefile \ - ../Cantera/matlab/setup_matlab.py \ - ../Cantera/matlab/setup_winmatlab.py \ - ../Cantera/python/Makefile \ - ../Cantera/python/setup.py \ - ../Cantera/cxx/Makefile \ - ../Cantera/cxx/src/Makefile \ - ../Cantera/cxx/demos/Makefile \ - ../Cantera/user/Makefile \ - ../Cantera/python/src/Makefile \ - ../ext/lapack/Makefile \ - ../ext/blas/Makefile \ - ../ext/cvode/Makefile \ - ../ext/math/Makefile \ - ../ext/tpx/Makefile \ - ../ext/Makefile \ - ../ext/f2c_libs/Makefile \ - ../ext/f2c_blas/Makefile \ - ../ext/f2c_lapack/Makefile \ - ../ext/f2c_math/Makefile \ - ../examples/Makefile \ - ../examples/cxx/Makefile \ - ../Makefile \ - ../tools/Makefile \ - ../tools/src/Makefile \ - ../tools/src/sample.mak \ - ../tools/src/finish_install.py \ - ../tools/src/package4mac \ - ../tools/templates/f77/demo.mak \ - ../tools/templates/f90/demo.mak \ - ../tools/templates/cxx/demo.mak \ - ../tools/testtools/Makefile \ - ../data/inputs/Makefile \ - ../test_problems/Makefile \ - ../test_problems/cxx_ex/Makefile \ - ../test_problems/silane_equil/Makefile \ - ../test_problems/surfkin/Makefile \ - ../test_problems/diamondSurf/Makefile \ - ../test_problems/ck2cti_test/Makefile \ - ../test_problems/ck2cti_test/runtest \ - ../test_problems/python/Makefile \ - ../bin/install_tsc \ - ) -# ) -if test "x${OS_IS_WIN}" = "x1"; then -#cp -f ../config.h ../Cantera/src -cd ../ext/f2c_libs -cp arith.hwin32 arith.h -cd ../../config -fi -if test -f "../test_problems/ck2cti_test/runtest"; then - chmod +x ../test_problems/ck2cti_test/runtest -fi -if test -f "../bin/install_tsc"; then - chmod +x ../bin/install_tsc -fi - - -echo -if test "x${OS_IS_WIN}" = "x0"; then - echo "Now type '${MAKE}' to build Cantera" -# else -# echo "Now start Visual Studio, open workspace 'win32/cantera.dsw'," -# echo "and build project 'all'. When this finishes, come back here and " -# echo "type 'make win' to make the Python and/or MATLAB interfaces." -fi -echo - diff --git a/config/testpch.h b/config/testpch.h deleted file mode 100644 index e33a809a2..000000000 --- a/config/testpch.h +++ /dev/null @@ -1,4 +0,0 @@ -// dummy header file used to test whether the compiler can precompile headers -#ifndef TESTPCH_H -#define TESTPCH_H -#endif diff --git a/configure b/configure deleted file mode 100755 index 5f3a58df0..000000000 --- a/configure +++ /dev/null @@ -1,12328 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for Cantera 1.7.0. -# -# Copyright (C) 2003 Free Software Foundation, Inc. -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -exec 6>&1 - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_config_libobj_dir=. -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} - -# Maximum number of lines to put in a shell here document. -# This variable seems obsolete. It should probably be removed, and -# only ac_max_sed_lines should be used. -: ${ac_max_here_lines=38} - -# Identity of this package. -PACKAGE_NAME='Cantera' -PACKAGE_TARNAME='cantera' -PACKAGE_VERSION='1.7.0' -PACKAGE_STRING='Cantera 1.7.0' -PACKAGE_BUGREPORT='' - -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#if HAVE_SYS_TYPES_H -# include -#endif -#if HAVE_SYS_STAT_H -# include -#endif -#if STDC_HEADERS -# include -# include -#else -# if HAVE_STDLIB_H -# include -# endif -#endif -#if HAVE_STRING_H -# if !STDC_HEADERS && HAVE_MEMORY_H -# include -# endif -# include -#endif -#if HAVE_STRINGS_H -# include -#endif -#if HAVE_INTTYPES_H -# include -#else -# if HAVE_STDINT_H -# include -# endif -#endif -#if HAVE_UNISTD_H -# include -#endif" - -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS BITCOMPILE BITHARDWARE BITCHANGE ldemulationarg CVF_LIBDIR USE_CLIB_DLL local_inst local_python_inst python_prefix python_win_prefix ctversion homedir ct_libdir ct_bindir ct_incdir ct_incroot ct_datadir ct_demodir ct_templdir ct_tutdir ct_docdir ct_dir ct_mandir build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os username ctroot buildinc buildlib buildbin MAKE GRAPHVIZDIR ARCHIVE DO_RANLIB RANLIB CXX_DEPENDS USERDIR INCL_USER_CODE CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT use_sundials CVODE_LIBS IDA_LIBS sundials_include sundials_lib_dir sundials_lib sundials_lib_dep CANTERA_DEBUG_MODE COMPILE_PURE_FLUIDS phase_object_files phase_header_files COMPILE_IDEAL_SOLUTIONS COMPILE_ELECTROLYTES NEED_CATHERMO COMPILE_KINETICS COMPILE_HETEROKIN COMPILE_RXNPATH WITH_REACTORS KERNEL KERNEL_OBJ BUILD_CK LIB_DIR COMPILE_VCSNONIDEAL COMPILE_H298MODIFY_CAPABILITY BOOST_INCLUDE BOOST_LIB PURIFY build_lapack build_blas BLAS_LAPACK_LIBS BLAS_LAPACK_LINK BLAS_LAPACK_DIR build_with_f2c build_f2c_lib F2C_SYSTEMLIB BOOST_LIB_DIR LOCAL_LIB_DIRS LOCAL_LIBS LOCAL_LIBS_DEP INSTALL_LIBS_DEP RAW_LIBS_DEP CANTERA_CORE_LIBS CANTERA_CORE_LIBS_DEP CT_SHARED_LIB PYTHON_CMD BUILD_PYTHON NUMPY_INC_DIR NUMPY_HOME NUMARRAY_INC_DIR NUMARRAY_HOME CANTERA_PYTHON_HOME CVSTAG MATLAB_CMD BUILD_MATLAB BUILD_CLIB export_name PIC INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CC CFLAGS ac_ct_CC CXXCPP EGREP SOEXT SHARED CXX_INCLUDES LCXX_FLAGS LCXX_END_LIBS HAVE_STRIPSYMBOLS F77 FFLAGS ac_ct_F77 FLIBS F90 BUILD_F90 F90FLAGS F90BUILDFLAGS F90LIBS LCXX_FLIBS precompile_headers OS_IS_DARWIN OS_IS_WIN OS_IS_CYGWIN SHARED_CTLIB mex_ext F77_EXT CXX_EXT OBJ_EXT EXE_EXT math_libs SO LDSHARED EXTRA_LINK TSCOMPARE_abs INSTALL_abs INSTALL_VERBOSE LIBOBJS LTLIBOBJS' -ac_subst_files='' - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datadir='${prefix}/share' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -libdir='${exec_prefix}/lib' -includedir='${prefix}/include' -oldincludedir='/usr/include' -infodir='${prefix}/info' -mandir='${prefix}/man' - -ac_prev= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval "$ac_prev=\$ac_option" - ac_prev= - continue - fi - - ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_option in - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad | --data | --dat | --da) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ - | --da=*) - datadir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - eval "enable_$ac_feature=no" ;; - - -enable-* | --enable-*) - ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; - *) ac_optarg=yes ;; - esac - eval "enable_$ac_feature='$ac_optarg'" ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst \ - | --locals | --local | --loca | --loc | --lo) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* \ - | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package| sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; - *) ac_optarg=yes ;; - esac - eval "with_$ac_package='$ac_optarg'" ;; - - -without-* | --without-*) - ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/-/_/g'` - eval "with_$ac_package=no" ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) { echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 - { (exit 1); exit 1; }; } - ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` - eval "$ac_envvar='$ac_optarg'" - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - { echo "$as_me: error: missing argument to $ac_option" >&2 - { (exit 1); exit 1; }; } -fi - -# Be sure to have absolute paths. -for ac_var in exec_prefix prefix -do - eval ac_val=$`echo $ac_var` - case $ac_val in - [\\/$]* | ?:[\\/]* | NONE | '' ) ;; - *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; };; - esac -done - -# Be sure to have absolute paths. -for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ - localstatedir libdir includedir oldincludedir infodir mandir -do - eval ac_val=$`echo $ac_var` - case $ac_val in - [\\/$]* | ?:[\\/]* ) ;; - *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; };; - esac -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then its parent. - ac_confdir=`(dirname "$0") 2>/dev/null || -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$0" : 'X\(//\)[^/]' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$0" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r $srcdir/$ac_unique_file; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r $srcdir/$ac_unique_file; then - if test "$ac_srcdir_defaulted" = yes; then - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 - { (exit 1); exit 1; }; } - else - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 - { (exit 1); exit 1; }; } - fi -fi -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || - { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 - { (exit 1); exit 1; }; } -srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` -ac_env_build_alias_set=${build_alias+set} -ac_env_build_alias_value=$build_alias -ac_cv_env_build_alias_set=${build_alias+set} -ac_cv_env_build_alias_value=$build_alias -ac_env_host_alias_set=${host_alias+set} -ac_env_host_alias_value=$host_alias -ac_cv_env_host_alias_set=${host_alias+set} -ac_cv_env_host_alias_value=$host_alias -ac_env_target_alias_set=${target_alias+set} -ac_env_target_alias_value=$target_alias -ac_cv_env_target_alias_set=${target_alias+set} -ac_cv_env_target_alias_value=$target_alias -ac_env_CXX_set=${CXX+set} -ac_env_CXX_value=$CXX -ac_cv_env_CXX_set=${CXX+set} -ac_cv_env_CXX_value=$CXX -ac_env_CXXFLAGS_set=${CXXFLAGS+set} -ac_env_CXXFLAGS_value=$CXXFLAGS -ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} -ac_cv_env_CXXFLAGS_value=$CXXFLAGS -ac_env_LDFLAGS_set=${LDFLAGS+set} -ac_env_LDFLAGS_value=$LDFLAGS -ac_cv_env_LDFLAGS_set=${LDFLAGS+set} -ac_cv_env_LDFLAGS_value=$LDFLAGS -ac_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_env_CPPFLAGS_value=$CPPFLAGS -ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_cv_env_CPPFLAGS_value=$CPPFLAGS -ac_env_CC_set=${CC+set} -ac_env_CC_value=$CC -ac_cv_env_CC_set=${CC+set} -ac_cv_env_CC_value=$CC -ac_env_CFLAGS_set=${CFLAGS+set} -ac_env_CFLAGS_value=$CFLAGS -ac_cv_env_CFLAGS_set=${CFLAGS+set} -ac_cv_env_CFLAGS_value=$CFLAGS -ac_env_CXXCPP_set=${CXXCPP+set} -ac_env_CXXCPP_value=$CXXCPP -ac_cv_env_CXXCPP_set=${CXXCPP+set} -ac_cv_env_CXXCPP_value=$CXXCPP -ac_env_F77_set=${F77+set} -ac_env_F77_value=$F77 -ac_cv_env_F77_set=${F77+set} -ac_cv_env_F77_value=$F77 -ac_env_FFLAGS_set=${FFLAGS+set} -ac_env_FFLAGS_value=$FFLAGS -ac_cv_env_FFLAGS_set=${FFLAGS+set} -ac_cv_env_FFLAGS_value=$FFLAGS - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures Cantera 1.7.0 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -_ACEOF - - cat <<_ACEOF -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --datadir=DIR read-only architecture-independent data [PREFIX/share] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --infodir=DIR info documentation [PREFIX/info] - --mandir=DIR man documentation [PREFIX/man] -_ACEOF - - cat <<\_ACEOF - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] - --target=TARGET configure for building compilers for TARGET [HOST] -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of Cantera 1.7.0:";; - esac - cat <<\_ACEOF - -Some influential environment variables: - CXX C++ compiler command - CXXFLAGS C++ compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have - headers in a nonstandard directory - CC C compiler command - CFLAGS C compiler flags - CXXCPP C++ preprocessor - F77 Fortran 77 compiler command - FFLAGS Fortran 77 compiler flags - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -_ACEOF -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - ac_popdir=`pwd` - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d $ac_dir || continue - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac - - cd $ac_dir - # Check for guested configure; otherwise get Cygnus style configure. - if test -f $ac_srcdir/configure.gnu; then - echo - $SHELL $ac_srcdir/configure.gnu --help=recursive - elif test -f $ac_srcdir/configure; then - echo - $SHELL $ac_srcdir/configure --help=recursive - elif test -f $ac_srcdir/configure.ac || - test -f $ac_srcdir/configure.in; then - echo - $ac_configure --help - else - echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi - cd $ac_popdir - done -fi - -test -n "$ac_init_help" && exit 0 -if $ac_init_version; then - cat <<\_ACEOF -Cantera configure 1.7.0 -generated by GNU Autoconf 2.59 - -Copyright (C) 2003 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit 0 -fi -exec 5>config.log -cat >&5 <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by Cantera $as_me 1.7.0, which was -generated by GNU Autoconf 2.59. Invocation command line was - - $ $0 $@ - -_ACEOF -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -hostinfo = `(hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - echo "PATH: $as_dir" -done - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_sep= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) - ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; - 2) - ac_configure_args1="$ac_configure_args1 '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" - # Get rid of the leading space. - ac_sep=" " - ;; - esac - done -done -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Be sure not to use single quotes in there, as some shells, -# such as our DU 5.0 friend, will then `close' the trap. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - cat <<\_ASBOX -## ---------------- ## -## Cache variables. ## -## ---------------- ## -_ASBOX - echo - # The following way of writing the cache mishandles newlines in values, -{ - (set) 2>&1 | - case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in - *ac_space=\ *) - sed -n \ - "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" - ;; - *) - sed -n \ - "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" - ;; - esac; -} - echo - - cat <<\_ASBOX -## ----------------- ## -## Output variables. ## -## ----------------- ## -_ASBOX - echo - for ac_var in $ac_subst_vars - do - eval ac_val=$`echo $ac_var` - echo "$ac_var='"'"'$ac_val'"'"'" - done | sort - echo - - if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------- ## -## Output files. ## -## ------------- ## -_ASBOX - echo - for ac_var in $ac_subst_files - do - eval ac_val=$`echo $ac_var` - echo "$ac_var='"'"'$ac_val'"'"'" - done | sort - echo - fi - - if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## -## confdefs.h. ## -## ----------- ## -_ASBOX - echo - sed "/^$/d" confdefs.h | sort - echo - fi - test "$ac_signal" != 0 && - echo "$as_me: caught signal $ac_signal" - echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core && - rm -rf conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status - ' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -rf conftest* confdefs.h -# AIX cpp loses on an empty file, so make sure it contains at least a newline. -echo >confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer explicitly selected file to automatically selected ones. -if test -z "$CONFIG_SITE"; then - if test "x$prefix" != xNONE; then - CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" - else - CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" - fi -fi -for ac_site_file in $CONFIG_SITE; do - if test -r "$ac_site_file"; then - { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 -echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" - fi -done - - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in `(set) 2>&1 | - sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val="\$ac_cv_env_${ac_var}_value" - eval ac_new_val="\$ac_env_${ac_var}_value" - case $ac_old_set,$ac_new_set in - set,) - { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 -echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 -echo "$as_me: current value: $ac_new_val" >&2;} - ac_cache_corrupted=: - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) - ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 -echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} - { (exit 1); exit 1; }; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - - - - - - - - - - - - - - - - - - - - - - - - - ac_config_headers="$ac_config_headers config.h" - -# AC_CONFIG_AUX_DIR(.) -# AC_CONFIG_SRCDIR(./License.txt) -ac_aux_dir= -for ac_dir in config $srcdir/config; do - if test -f $ac_dir/install-sh; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f $ac_dir/install.sh; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f $ac_dir/shtool; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in config $srcdir/config" >&5 -echo "$as_me: error: cannot find install-sh or install.sh in config $srcdir/config" >&2;} - { (exit 1); exit 1; }; } -fi -ac_config_guess="$SHELL $ac_aux_dir/config.guess" -ac_config_sub="$SHELL $ac_aux_dir/config.sub" -ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. - - -if test -z $CANTERA_VERSION ; then - echo - echo ">>>>> Error <<<<<" - echo - echo "Run script 'preconfig', instead of running 'configure'" - echo "directly. The 'preconfig' script sets various variable values" - echo "needed by 'configure' and then runs 'configure.' You may want to" - echo "edit 'preconfig' first, to set various installation options." - echo - exit 1 -fi - - -echo " " -echo "--------------------------------------------------------------" -echo " " -echo " Cantera "$CANTERA_VERSION -echo " Configuration Script " -echo " " -echo "--------------------------------------------------------------" -echo " " - -cat >>confdefs.h <<\_ACEOF -#define NDEBUG 1 -_ACEOF - - -ac_sys_system=`uname -s` -ac_sys_release=`uname -r` - -# moved since MacOS deosn't support -i option -#sys_hardware=`uname -i` - -# -# Determine the number of hardware bits in the system -# -# -# BITHARDWARE is the default number of compilation bits in pointers -# -case $ac_sys_system in - Linux* ) - sys_hardware=`uname -i` - echo 'linux ' $sys_hardware - case $sys_hardware in - x86_64 ) BITHARDWARE=64 ;; - - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - SunOS* ) - sys_hardware=`uname -i` - echo 'SunOS ' $sys_hardware - case $sys_hardware in - "SUNW,Sun-Fire" ) BITHARDWARE=64 ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; -esac -# -# BITCOMPILE is the desired number of compilation bits in pointers -# Note, it can be different than the number of hardware bits. -# Many times you will want to compile 32 bits on a 64 bit -# machine -if test -z $BITCOMPILE ; then - BITCOMPILE=$BITHARDWARE -fi - -BITCHANGE= -if test $BITCOMPILE != $BITHARDWARE ; then - BITCHANGE='y' -fi - - - - - - - -SHARED_CTLIB=0 -OS_IS_DARWIN=0 -OS_IS_WIN=0 -OS_IS_CYGWIN=0 -OS_IS_SOLARIS=0 -EXTRA_LINK=${EXTRA_LINK:=""} - -# default Matlab MEX file extension -mex_ext=mexglx - -case $ac_sys_system in - Darwin*) OS_IS_DARWIN=1; - hardware=`uname -m`; - EXTRA_LINK="-framework Accelerate $EXTRA_LINK"; - #mex_ext=mexmac; - #if test "$hardware" = "i386" ; then - # mex_ext=mexmaci - ;;#fi;; - CYGWIN*) OS_IS_CYGWIN=1; mex_ext=mexw32;; - SunOS*) OS_IS_SOLARIS=1;; - Linux* ) case $BITHARDWARE in - 64 ) if test "$BITCHANGE" = "y" ; then - ldemulationarg='-melf_i386' - fi ;; - esac -esac - - - - -CVF_LIBDIR="" -if test "x${OS_IS_CYGWIN}" = "x1"; then - if test "${USE_VISUAL_STUDIO}" = "y"; then - OS_IS_WIN=1; - OS_IS_CYGWIN=0; - CVF_LIBDIR=$FORTRAN_LIB_DIR - fi -fi - - -# -# Determine if clib is to be a static or dynamic library -# -> will test to see if USE_DLL is defined in the cygwmin environment -# -USE_CLIB_DLL=0 -if test "x${OS_IS_WIN}" = "x1"; then - if test -n ${USE_CLIB_DLL} ; then - USE_CLIB_DLL=1 - fi -fi - - -prdef="/usr/local/cantera" -if test "x$OS_IS_DARWIN" = "x1"; then prdef="/Applications/Cantera"; fi - -local_inst=1 -if test "x${prefix}" = "xNONE"; then - prefix=${prdef} - local_inst=0 -fi -exec_prefix=${prefix} - -if test "x${OS_IS_WIN}" = "x1"; then - prefix=`cygpath -a -m "${prefix}" ` -fi -echo "Cantera will be installed in ${prefix}" - - - - -# -# Determination of Python site-package directory location -# -local_python_inst=${local_inst} -if test "x${SET_PYTHON_SITE_PACKAGE_TOPDIR}" = "xy"; then - python_prefix=${PYTHON_SITE_PACKAGE_TOPDIR} - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1" ; then - python_prefix=`cygpath -a -m "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - elif test "x${OS_IS_CYGWIN}" = "x1" ; then - python_prefix=`cygpath -a -u "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - fi - local_python_inst=1 - echo "Cantera's Python packages will be installed in ${python_prefix}" -else - python_prefix=$prefix - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1"; then - python_win_prefix=`cygpath -a -w "${python_prefix}" ` - fi -fi - - - - - -ctversion=${CANTERA_VERSION} - -cat >>confdefs.h <<_ACEOF -#define CANTERA_VERSION "$ctversion" -_ACEOF - - -homedir="${HOME}" - - - -# A compact installation is one in which the $prefix directory -# contains only Cantera files. It is different than a local -# installation, in that the Python package is installed with other -# Python packages and modules in site-packages, rather than with the -# rest of the Cantera files, as in a local installation. Therefore, -# with a compact installation, there is no need to set PYTHONPATH. A -# compact installation is done on all machines now by default. -# This simplifies the installation issues, because now all Cantera -# installations look the same, except perhaps for the locations -# of the python packages. -# An option called, "distributed installations", is no longer -# supported. - -ct_libdir=${prefix}/lib -ct_bindir=${prefix}/bin -ct_incdir=${prefix}/include/cantera -ct_incroot=${prefix}/include -ct_datadir=${prefix}/data -ct_demodir=${prefix}/demos -ct_templdir=${prefix}/templates -ct_tutdir=${prefix}/tutorials -ct_docdir=${prefix}/doc -ct_dir=${prefix} -ct_mandir=${prefix} - - - - - - - - - - - - - -# Make sure we can run config.sub. -$ac_config_sub sun4 >/dev/null 2>&1 || - { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 -echo "$as_me: error: cannot run $ac_config_sub" >&2;} - { (exit 1); exit 1; }; } - -echo "$as_me:$LINENO: checking build system type" >&5 -echo $ECHO_N "checking build system type... $ECHO_C" >&6 -if test "${ac_cv_build+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_build_alias=$build_alias -test -z "$ac_cv_build_alias" && - ac_cv_build_alias=`$ac_config_guess` -test -z "$ac_cv_build_alias" && - { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 -echo "$as_me: error: cannot guess build type; you must specify one" >&2;} - { (exit 1); exit 1; }; } -ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_build" >&5 -echo "${ECHO_T}$ac_cv_build" >&6 -build=$ac_cv_build -build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -echo "$as_me:$LINENO: checking host system type" >&5 -echo $ECHO_N "checking host system type... $ECHO_C" >&6 -if test "${ac_cv_host+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_host_alias=$host_alias -test -z "$ac_cv_host_alias" && - ac_cv_host_alias=$ac_cv_build_alias -ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_host" >&5 -echo "${ECHO_T}$ac_cv_host" >&6 -host=$ac_cv_host -host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -echo "$as_me:$LINENO: checking target system type" >&5 -echo $ECHO_N "checking target system type... $ECHO_C" >&6 -if test "${ac_cv_target+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_target_alias=$target_alias -test "x$ac_cv_target_alias" = "x" && - ac_cv_target_alias=$ac_cv_host_alias -ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_target" >&5 -echo "${ECHO_T}$ac_cv_target" >&6 -target=$ac_cv_target -target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -# The aliases save the names the user supplied, while $host etc. -# will get canonicalized. -test -n "$target_alias" && - test "$program_prefix$program_suffix$program_transform_name" = \ - NONENONEs,x,x, && - program_prefix=${target_alias}- -# the root of the source tree -ctroot=`(pwd)` -builddir=$target -if test "x${OS_IS_WIN}" = "x1"; then - ctroot=`cygpath -a -m "${ctroot}" | sed 's/\\\/\\//g'` - builddir="i686-pc-win32" -fi - -if test -z "$username"; then username=$USER; fi -if test -z "$username"; then username=$USERNAME; fi -if test -z "$username"; then username=`whoami`; fi - - - - - -# The include directory in the 'build' subdirectory. -# This is required to build the test problems -# before Cantera has been installed. -buildinc=$ctroot/build/include - - -buildlib=$ctroot/build/lib/$builddir - -buildbin=$ctroot/build/bin/$builddir - - -# add definitions to config.h -if test "x${OS_IS_DARWIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define DARWIN $OS_IS_DARWIN -_ACEOF - -fi -if test "x${OS_IS_CYGWIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define CYGWIN $OS_IS_CYGWIN -_ACEOF - -fi -if test "x${OS_IS_SOLARIS}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define SOLARIS $OS_IS_SOLARIS -_ACEOF - -fi -if test "x${OS_IS_WIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define WINMSVC $OS_IS_WIN -_ACEOF - -fi -cat >>confdefs.h <<_ACEOF -#define RXNPATH_FONT "$RPFONT" -_ACEOF - -#AC_DEFINE_UNQUOTED(CANTERA_ROOT,"$prefix/cantera") -cat >>confdefs.h <<_ACEOF -#define CANTERA_DATA "$ct_datadir" -_ACEOF - - - -if test -z "$MAKE"; then MAKE='make'; fi - - -if test -z "$GRAPHVIZDIR" ; then -GRAPHVIZDIR=" " -fi - - - -#----------- ARCHIVE -------------------- - -if test "x${OS_IS_DARWIN}" = "x1"; then -ARCHIVE='libtool -static -o' -fi - - - -DO_RANLIB=1 -if test "x${RANLIB}" = "x"; then -DO_RANLIB=0 -fi - - - - -#----------- DEPENDS -------------------- - -if test "x${CXX_DEPENDS}" = "x"; then -CXX_DEPENDS='g++ -MM' -fi - - -#---------------------------------------- - -#---------------------------------------- - -######################################################## -# User Code -######################################################### -USERDIR="" -INCL_USER_CODE=0 -if test -n "$USER_SRC_DIR"; then USERDIR=$USER_SRC_DIR; INCL_USER_CODE=1; fi - - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -use_sundials=0 -sundials_inc= -CVODE_LIBS='-lcvode' -IDA_LIBS='' - -if test "x$SUNDIALS_HOME" = "x"; then -SUNDIALS_LIB_DIR=/usr/local/lib -SUNDIALS_INC_DIR=/usr/local/include -else -SUNDIALS_LIB_DIR="$SUNDIALS_HOME/lib" -SUNDIALS_INC_DIR="$SUNDIALS_HOME/include" -fi - -if test "$USE_SUNDIALS" = "default"; then -# -# HKM Disabled this line as it was causing configure to fail when -# SUNDIALS_LIB_DIR had a space in it, despite use of double quotes everywhere -#ldsave="$LDFLAGS" -#LDFLAGS='-L'"$SUNDIALS_LIB_DIR"' '"$ldsave" -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - echo "$as_me:$LINENO: result: $CXX" >&5 -echo "${ECHO_T}$CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 -echo "${ECHO_T}$ac_ct_CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CXX" && break -done -test -n "$ac_ct_CXX" || ac_ct_CXX="g++" - - CXX=$ac_ct_CXX -fi - - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C++ compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -echo "$as_me:$LINENO: checking for C++ compiler default output file name" >&5 -echo $ECHO_N "checking for C++ compiler default output file name... $ECHO_C" >&6 -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 - (eval $ac_link_default) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # Find the output, starting from the most likely. This scheme is -# not robust to junk in `.', hence go to wildcards (a.*) only as a last -# resort. - -# Be careful to initialize this variable, since it used to be cached. -# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. -ac_cv_exeext= -# b.out is created by i960 compilers. -for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) - ;; - conftest.$ac_ext ) - # This is the source file. - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - # FIXME: I believe we export ac_cv_exeext for Libtool, - # but it would be cool to find out if it's true. Does anybody - # maintain Libtool? --akim. - export ac_cv_exeext - break;; - * ) - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: C++ compiler cannot create executables -See \`config.log' for more details." >&5 -echo "$as_me: error: C++ compiler cannot create executables -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } -fi - -ac_exeext=$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_file" >&5 -echo "${ECHO_T}$ac_file" >&6 - -# Check the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether the C++ compiler works" >&5 -echo $ECHO_N "checking whether the C++ compiler works... $ECHO_C" >&6 -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { echo "$as_me:$LINENO: error: cannot run C++ compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run C++ compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - fi - fi -fi -echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - -rm -f a.out a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -# Check the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:$LINENO: result: $cross_compiling" >&5 -echo "${ECHO_T}$cross_compiling" >&6 - -echo "$as_me:$LINENO: checking for suffix of executables" >&5 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - export ac_cv_exeext - break;; - * ) break;; - esac -done -else - { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 -echo "${ECHO_T}$ac_cv_exeext" >&6 - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -echo "$as_me:$LINENO: checking for suffix of object files" >&5 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 -if test "${ac_cv_objext+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 -echo "${ECHO_T}$ac_cv_objext" >&6 -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 -GXX=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -CXXFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 -echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cxx_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cxx_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cxx_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -echo "$as_me:$LINENO: checking for CVodeCreate in -lsundials_cvodes" >&5 -echo $ECHO_N "checking for CVodeCreate in -lsundials_cvodes... $ECHO_C" >&6 -if test "${ac_cv_lib_sundials_cvodes_CVodeCreate+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsundials_cvodes \ --lsundials_cvodes -lsundials_nvecserial -lm $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char CVodeCreate (); -int -main () -{ -CVodeCreate (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_sundials_cvodes_CVodeCreate=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_lib_sundials_cvodes_CVodeCreate=no -fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_sundials_cvodes_CVodeCreate" >&5 -echo "${ECHO_T}$ac_cv_lib_sundials_cvodes_CVodeCreate" >&6 -if test $ac_cv_lib_sundials_cvodes_CVodeCreate = yes; then - use_sundials=1 -else - use_sundials=0 -fi - - -if test ${use_sundials} = 0 ; then - tmpFile="$SUNDIALS_LIB_DIR/libsundials_cvodes.a" - if test -f $tmpFile ; then - use_sundials=1 - fi -fi - -if test ${use_sundials} = 1 ; then - echo SUNDIALS: succeeded in finding a sundials installation -else - echo SUNDIALS: failed at finding a sundials installation -fi -#LDFLAGS=$ldsave -fi - -if test "x$USE_SUNDIALS" = "xy"; then -use_sundials=1 -fi -sundials_lib_dir= -sundials_lib= -sundials_lib_dep= - - -if test ${use_sundials} = 1; then -echo "using CVODES from SUNDIALS... Sensitivity analysis enabled." - -CVODE_LIBS='-lsundials_cvodes -lsundials_nvecserial' -IDA_LIBS='-lsundials_ida -lsundials_nvecserial' - -if test "$SUNDIALS_VERSION" = "2.2"; then - cat >>confdefs.h <<\_ACEOF -#define HAS_SUNDIALS 1 -_ACEOF - - cat >>confdefs.h <<\_ACEOF -#define SUNDIALS_VERSION_22 1 -_ACEOF - - sundials_include='-I'${SUNDIALS_HOME}'/include -I'${SUNDIALS_HOME}'/include/sundials -I'${SUNDIALS_HOME}'/include/cvodes -I'${SUNDIALS_HOME}'/include/ida' - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -elif test "$SUNDIALS_VERSION" = "2.3"; then - cat >>confdefs.h <<\_ACEOF -#define HAS_SUNDIALS 1 -_ACEOF - - cat >>confdefs.h <<\_ACEOF -#define SUNDIALS_VERSION_23 1 -_ACEOF - - sundials_include='-I'${SUNDIALS_INC_DIR} - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -# python tools/src/sundials_version.py $SUNDIALS_HOME -elif test "$SUNDIALS_VERSION" = "2.4"; then - cat >>confdefs.h <<\_ACEOF -#define HAS_SUNDIALS 1 -_ACEOF - - cat >>confdefs.h <<\_ACEOF -#define SUNDIALS_VERSION_24 1 -_ACEOF - - sundials_include='-I'${SUNDIALS_INC_DIR} - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -# python tools/src/sundials_version.py $SUNDIALS_HOME -else - echo "ERROR: unknown or unsupported sundials version #: $SUNDIALS_VERSION" - echo " Supported versions are 2.2, 2.3, and 2.4" - echo " Please fix or turn off the sundials option by setting USE_SUNDIALS to no" - use_sundials=0 -fi -fi - -if test ${use_sundials} = 0; then -echo "using CVODE... Sensitivity analysis disabled." -echo "-> To enable sensitivity analysis, install the SUNDIALS package with CVODES." -fi - - - - - - - - - - -######################################################### -# The Cantera Kernel -######################################################### -# -# DEBUG_MODE: Specify that additional code be compiled in -# that allows more debug printing where available. -# default = "n" -# -DEBUG_MODE=${DEBUG_MODE:="n"} -CANTERA_DEBUG_MODE=0 -if test "$DEBUG_MODE" = "y" -o "$DEBUG_MODE" = "Y" ; then - cat >>confdefs.h <<\_ACEOF -#define DEBUG_MODE 1 -_ACEOF - - CANTERA_DEBUG_MODE="1" -else - CANTERA_DEBUG_MODE="0" -fi - - -KERNEL='' -KERNEL_OBJ='' -BUILD_CK= - -NEED_CKREADER= -NEED_LAPACK= -#NEED_RECIPES= -NEED_MATH= -NEED_TPX= -NEED_F2C= -NEED_CVODE= -NEED_ZEROD= - -#if test "$ENABLE_THERMO" = "y"; then -# KERNEL=$KERNEL' 'thermo; -# KERNEL_OBJ=$KERNEL_OBJ' $(THERMO_OBJ)' -#fi - -if test "$WITH_METAL" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_METAL 1 -_ACEOF - - hdrs=$hdrs' MetalPhase.h' -fi - -if test "$WITH_SEMICONDUCTOR" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_SEMICONDUCTOR 1 -_ACEOF - - hdrs=$hdrs' SemiconductorPhase.h' - objs=$objs' SemiconductorPhase.o' -fi -if test "$WITH_ADSORBATE" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_ADSORBATE 1 -_ACEOF - - hdrs=$hdrs' AdsorbateThermo.h' -fi -if test "$WITH_STOICH_SUBSTANCE" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_STOICH_SUBSTANCE 1 -_ACEOF - - hdrs=$hdrs' StoichSubstance.h' - objs=$objs' StoichSubstance.o' -fi - -COMPILE_PURE_FLUIDS= -if test "$WITH_PURE_FLUIDS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_PURE_FLUIDS 1 -_ACEOF - - COMPILE_PURE_FLUIDS=1 - hdrs=$hdrs' PureFluidPhase.h' - objs=$objs' PureFluidPhase.o' -fi - - -if test "$WITH_LATTICE_SOLID" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_LATTICE_SOLID 1 -_ACEOF - - hdrs=$hdrs' LatticeSolidPhase.h' - objs=$objs' LatticeSolidPhase.o' - hdrs=$hdrs' LatticePhase.h' - objs=$objs' LatticePhase.o' -fi -phase_object_files=$objs -phase_header_files=$hdrs - - - - -NEED_CATHERMO= -COMPILE_IDEAL_SOLUTIONS=0 -if test "$WITH_IDEAL_SOLUTIONS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_IDEAL_SOLUTIONS 1 -_ACEOF - - NEED_CATHERMO=1 - COMPILE_IDEAL_SOLUTIONS=1 -fi - - -COMPILE_ELECTROLYTES=0 -if test "$WITH_ELECTROLYTES" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_ELECTROLYTES 1 -_ACEOF - - NEED_CATHERMO=1 - COMPILE_ELECTROLYTES=1 -fi - - - - -if test "$WITH_PRIME" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_PRIME 1 -_ACEOF - -fi - -COMPILE_KINETICS=0 -if test "$WITH_KINETICS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_KINETICS 1 -_ACEOF - - COMPILE_KINETICS=1 -fi - - - -COMPILE_HETEROKIN=0 -if test "$WITH_HETERO_KINETICS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_HETEROKINETICS 1 -_ACEOF - - COMPILE_HETEROKIN=1 -fi - - -COMPILE_RXNPATH=0 -if test "$WITH_REACTION_PATHS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_REACTIONPATHS 1 -_ACEOF - - COMPILE_RXNPATH=1 -fi - - - -if test "$ENABLE_CK" = "y" ; then - BUILD_CK=1 - NEED_CKREADER=1 - KERNEL=$KERNEL' 'ck -fi - -NEED_TRANSPORT= -if test "$ENABLE_TRANSPORT" = "y" ; then - KERNEL=$KERNEL' 'trprops - NEED_LAPACK=1 - NEED_MATH=1 - NEED_TRANSPORT=1 -fi - -NEED_EQUIL= -if test "$ENABLE_EQUIL" = "y" ; then - KERNEL=$KERNEL' 'equil - KERNEL_OBJ=$KERNEL_OBJ' $(EQUIL_OBJ)' - NEED_EQUIL=1 - NEED_LAPACK=1 -fi - -WITH_REACTORS=0 -if test "$ENABLE_REACTORS" = "y" ; then - KERNEL=$KERNEL' 'reactor - NEED_CVODE=1 - NEED_ZEROD=1 - WITH_REACTORS=1 -fi - - -NEED_ONED= -if test "$ENABLE_FLOW1D" = "y" ; then - KERNEL=$KERNEL' 'flow1D - NEED_LAPACK=1 - NEED_MATH=1 - NEED_ONED=1 -fi - -if test "$ENABLE_TPX" = "y" ; then - KERNEL=$KERNEL' 'tpx - NEED_TPX=1 - cat >>confdefs.h <<\_ACEOF -#define INCL_PURE_FLUIDS 1 -_ACEOF - -fi - -NEED_SPECTRA=0 -if test "$WITH_SPECTRA" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_SPECTRA 1 -_ACEOF - - KERNEL=$KERNEL' 'spectra - NEED_SPECTRA=1 -fi - - - - - - -COMPILE_VCSNONIDEAL=0 -if test "$WITH_VCSNONIDEAL" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_VCSNONIDEAL 1 -_ACEOF - - COMPILE_VCSNONIDEAL=1 -fi - - -COMPILE_H298MODIFY_CAPABILITY=0 -if test "$WITH_H298MODIFY_CAPABILITY" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define H298MODIFY_CAPABILITY 1 -_ACEOF - - COMPILE_H298MODIFY_CAPABILITY=1 -fi - - - -if test "$WITH_HTML_LOG_FILES" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_HTML_LOGS 1 -_ACEOF - -fi - -BOOST_INCLUDE= -BOOST_LIB= -if test "$BUILD_THREAD_SAFE" = "y" ; then - cat >>confdefs.h <<\_ACEOF -#define THREAD_SAFE_CANTERA 1 -_ACEOF - - BOOST_INCLUDE=-I$BOOST_INC_DIR - BOOST_LIB=$BOOST_THREAD_LIB -fi - - - - -# -# Report to the user what has been included/excluded from the compilation -# -echo " " -echo "Config SUMMARY OF INCLUDED/EXCLUDED CAPABILITIES:" - -if test "$CANTERA_DEBUG_MODE" = "1" ; then - echo " Cantera Debug Mode = ON" -else - echo " Cantera Debug Mode = OFF" -fi -if test "$BUILD_THREAD_SAFE" = "y" ; then - echo " Thread Safe = YES" -else - echo " Thread Safe = NO" -fi -if test "$NEED_TRANSPORT" = "1" ; then - echo " Calculation of Transport Props = ON" -else - echo " Calculation of Transport Props = OFF" -fi -if test "$NEED_ZEROD" = "1" ; then - echo " Zero-Dimensional Flow Reactors Models = ON" -else - echo " Zero-Dimensional Flow Reactors Models = OFF" -fi -if test "$NEED_ONED" = "1" ; then - echo " One Dimensional Flow Reactors Models = ON" -else - echo " One Dimensional Flow Reactors Models = OFF" -fi -if test "$NEED_TPX" = "1" ; then - echo " TPX Pure Fluid Capability = ON" -else - echo " TPX Pure Fluid Capability = OFF" -fi -if test "$NEED_SPECTRA" = "1" ; then - echo " Spectroscopy Capability = ON" -else - echo " Spectroscopy Capability = OFF" -fi -if test "$NEED_CKREADER" = "1" ; then - echo " Chemkin File Reader Capability = ON" -else - echo " Chemkin File Reader Capability = OFF" -fi -if test "$NEED_EQUIL" = "1" ; then - echo " MultiPhase Equilibrium Solver = ON" -else - echo " MultiPhase Equilibrium Solver = OFF" -fi -if test "$COMPILE_IDEAL_SOLUTIONS" = "1" ; then - echo " Ideal Solution Thermodynamics = ON" -else - echo " Ideal Solution Thermodynamics = OFF" -fi -if test "$COMPILE_ELECTROLYTES" = "1" ; then - echo " Electrolyte Thermodynamics = ON" -else - echo " Electrolyte Thermodynamics = OFF" -fi -if test "$COMPILE_KINETICS" = "1" ; then - echo " Homogeneous Kinetics = ON" -else - echo " Homogeneous Kinetics = OFF" -fi -if test "$COMPILE_HETEROKIN" = "1" ; then - echo " Heterogeneous Kinetics = ON" -else - echo " Heterogeneous Kinetics = OFF" -fi -if test "$COMPILE_RXNPATH" = "1" ; then - echo " Reaction Path Analysis = ON" -else - echo " Reaction Path Analysis = OFF" -fi -if test "$COMPILE_VCSNONIDEAL" = "1" ; then - echo " VCS NonIdeal equilibrium solver = ON" -else - echo " VCS NonIdeal equilibrium solver = OFF" -fi -if test "$COMPILE_H298MODIFY_CAPABILITY" = "1" ; then - echo " H298 Modify Capability = ON" -else - echo " H298 Modify Capability = OFF" -fi -echo " " - -echo " " -echo "Config SUMMARY OF INCLUDED/EXCLUDED THERMO MODELS:" - -if test "$WITH_IDEAL_SOLUTIONS" = "y" ; then - echo " Ideal Solution Phase Model = INCLUDED" -else - echo " Ideal Solution Phase Model = EXCLUDED" -fi -if test "$WITH_METAL" = "y" ; then - echo " Metal Phase Model = INCLUDED" -else - echo " Metal Phase Model = EXCLUDED" -fi -if test "$WITH_SEMICONDUCTOR" = "y" ; then - echo " Semiconductor Model = INCLUDED" -else - echo " Semiconductor Model = EXCLUDED" -fi -if test "$WITH_ADSORBATE" = "y" ; then - echo " Adsorbate Model = INCLUDED" -else - echo " Adsorbate Model = EXCLUDED" -fi -if test "$WITH_ELECTROLYTES" = "y" ; then - echo " Molality-based Electrolyte Models = INCLUDED" -else - echo " Molality-based Electrolyte Models = EXCLUDED" -fi -if test "$WITH_LATTICE_SOLID" = "y" ; then - echo " Lattice Solid based Models = INCLUDED" -else - echo " Lattice Solid based Models = EXCLUDED" -fi - - -echo " " - -########################################################## -# PURIFY -########################################################## - - -if test "x$PURIFY" != "x"; then - cat >>confdefs.h <<\_ACEOF -#define PURIFY_MODE 1 -_ACEOF - -fi - -######################################################## -# BLAS and LAPACK -######################################################## -# -# if lapack and blas libraries have been specified, then skip building the -# supplied libraries - - -build_lapack=0 -build_blas=0 -if test -z "$BLAS_LAPACK_LIBS"; then - BLAS_LAPACK_LIBS="-lctlapack -lctblas" - BLAS_LAPACK_DIR="$buildlib" - BLAS_LAPACK_LINK="-L$BLAS_LAPACK_DIR $BLAS_LAPACK_LIBS" - build_blas=1 - build_lapack=1 -else - BLAS_LAPACK_LINK="-L$BLAS_LAPACK_DIR $BLAS_LAPACK_LIBS" -fi - - - - - - - - - -# -# Stubout section for f2c versions of lapack: -# Define these variables, but turn them off in main version of code -# -build_with_f2c=0 -if test -n "$BUILD_WITH_F2C" ; then - if test "$BUILD_WITH_F2C" = "y" -o "$BUILD_WITH_F2C" = "Y" ; then - build_with_f2c=1 - elif test "$BUILD_WITH_F2C" = "n" -o "$BUILD_WITH_F2C" = "N" ; then - build_with_f2c=0 - elif test "$BUILD_WITH_F2C" = "default" ; then - if test "x$OS_IS_WIN" = "x1" ; then - build_with_f2c=1 - else - build_with_f2c=0 - fi - fi -fi - - -# -# Build a string of Canne if you need the f2c library at link time -# -> Note, Linux systems already have the g2c library -# added in, which is the same thing as our -# f2c library. However, the f2c library seems -# more reliable at resolving names -if test x"$build_with_f2c" = "x1" ; then - NEED_F2C=1 - case $ac_sys_system in - Linux) NEED_F2C= ;; - esac -fi -case $ac_sys_system in - Linux) NEED_F2C=1 ;; -esac - -# -# Create a variable build_f2c_lib that determines whether -# our f2c_lib will be built on a given platform -# -build_f2c_lib=0 -F2C_SYSTEMLIB= -if test -n "$NEED_F2C" ; then - build_f2c_lib=1 -else - case $ac_sys_system in - Linux) F2C_SYSTEMLIB="-lg2c" - esac -fi - - - -# -# LOCAL_LIBS: -# Build a string of Cantera libraries necessary to link -# Cantera applications -# -LOCAL_LIBS= -LOCAL_LIBS_DEP= -RAW_LIBS_DEP= -INSTALL_LIBS_DEP= - -if test -n "$INCL_USER_CODE" -then - LOCAL_LIBS=$LOCAL_LIBS' '-luser - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libuser.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libuser.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libuser.a -fi - -if test -n "$NEED_ONED" -then - LOCAL_LIBS=$LOCAL_LIBS' '-loneD - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/liboneD.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/liboneD.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'liboneD.a -fi - -if test -n "$NEED_ZEROD" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lzeroD - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libzeroD.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libzeroD.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libzeroD.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lequil -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libequil.a -INSTALL_LIBS_DEP=$INTALL_LIBS_DEP' '$ct_libdir/libequil.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libequil.a - -if test "$WITH_VCSNONIDEAL" = "y" ; then - LOCAL_LIBS=$LOCAL_LIBS' '-lVCSnonideal - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libVCSnonideal.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libVCSnonideal.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libVCSnonideal.a -fi - -if test -n "$COMPILE_KINETICS" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lkinetics - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libkinetics.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libkinetics.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libkinetics.a -fi - -if test -n "$NEED_TRANSPORT" -then - LOCAL_LIBS=$LOCAL_LIBS' '-ltransport - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libtransport.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libtransport.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libtransport.a -fi - -if test -n "$NEED_CATHERMO" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lthermo - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libthermo.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libthermo.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libthermo.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lctnumerics -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctnumerics.a -INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctnumerics.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctnumerics.a - -if test -n "$NEED_MATH" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctmath - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctmath.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctmath.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctmath.a -fi - -if test -n "$NEED_TPX" -then - LOCAL_LIBS=$LOCAL_LIBS' '-ltpx - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libtpx.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libtpx.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libtpx.a -fi - -if test -n "$NEED_SPECTRA" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctspectra - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctspectra.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctspectra.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctspectra.a -fi - -if test -n "$NEED_CKREADER" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lconverters - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libconverters.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libconverters.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libconverters.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lctbase -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctbase.a -INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctbase.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctbase.a - -CANTERA_CORE_LIBS=$LOCAL_LIBS -CANTERA_CORE_LIBS_DEP=$INSTALL_LIBS_DEP -CANTERA_CORE_LIBS_BT_DEP=$LOCAL_LIBS_DEP -CANTERA_CORE_LIBS_NAMES=$RAW_LIBS_DEP - -if test -n "$NEED_CVODE"; then - LOCAL_LIBS=$LOCAL_LIBS' '$CVODE_LIBS -fi - -if test -n "$NEED_LAPACK" -then - LOCAL_LIBS=$LOCAL_LIBS' '$BLAS_LAPACK_LIBS -fi - -if test -n "$NEED_F2C" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctf2c - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctf2c.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctf2c.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctf2c.a -else - case $ac_sys_system in - Linux) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - esac -fi -# Darwin*) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - -LOCAL_LIB_DIRS= -if test -n "$BLAS_LAPACK_DIR" -then LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BLAS_LAPACK_DIR -fi - -if test ${use_sundials} = 1; then -LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$SUNDIALS_LIB_DIR -fi - -if test ${BUILD_THREAD_SAFE} = "y"; then -LOCAL_LIBS=$LOCAL_LIBS' '-l$BOOST_LIB -LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BOOST_LIB_DIR -else -BOOST_LIB_DIR="" -fi - - - - - - - - - - -#------------------------------------------------- -# Language Interfaces -#------------------------------------------------- -# This define is needed to account for the variability for how -# static variables in templated classes are defined. Right now -# this is only turned on for the SunPro compiler on solaris. -# in that system , you need to declare the static storage variable. -# with the following line in the include file -# -# template Cabinet* Cabinet::__storage; -# -# Note, on other systems that declaration is treated as a definition -# and this leads to multiple defines at link time. This config.h addition -# is needed because there were irreconcilable issues between -# the Solaris SunPro compiler and the cygwin gcc compiler. -# -case $ac_sys_system in - SunOS* ) - cat >>confdefs.h <<\_ACEOF -#define NEEDS_GENERIC_TEMPL_STATIC_DECL 1 -_ACEOF - - echo 'Turned on special handing of static definitions in templated classes' - ;; - * ) - ;; -esac - - - - - -BUILD_F90=1 -if test "x$BUILD_F90_INTERFACE" = "xn"; then - BUILD_F90=0 -fi - -BUILD_CLIB=1 - -#---------------------------------------------------------------- -# Python Interface -#---------------------------------------------------------------- - -BUILD_PYTHON=0 -if test "x$PYTHON_PACKAGE" = "xfull"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xdefault"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xminimal"; then - BUILD_PYTHON=1 -elif test "x$PYTHON_PACKAGE" = "xnone"; then - BUILD_PYTHON=0 -else - echo "ERROR: PYTHON_PACKAGE variable, " $PYTHON_PACKAGE ", is not understood. Use:" - echo " full, default, minimal, or none" - exit 1 -fi -if test $BUILD_PYTHON = 0 ; then -cat >>confdefs.h <<\_ACEOF -#define HAS_NO_PYTHON 1 -_ACEOF - -fi - -if test "$PYTHON_CMD" = "default" -o \ - "$PYTHON_CMD"x = "x"; then - for ac_prog in python2 python -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PYTHON_CMD+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $PYTHON_CMD in - [\\/]* | ?:[\\/]*) - ac_cv_path_PYTHON_CMD="$PYTHON_CMD" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PYTHON_CMD="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - ;; -esac -fi -PYTHON_CMD=$ac_cv_path_PYTHON_CMD - -if test -n "$PYTHON_CMD"; then - echo "$as_me:$LINENO: result: $PYTHON_CMD" >&5 -echo "${ECHO_T}$PYTHON_CMD" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$PYTHON_CMD" && break -done -test -n "$PYTHON_CMD" || PYTHON_CMD=""none"" - - if test "$PYTHON_CMD" = "none"; then - BUILD_PYTHON=0 - echo "Python not found. Only those portions of Cantera that" - echo "can be installed without Python will be installed." - else - echo "Python command set by configure to " $PYTHON_CMD - fi -else - echo "Python command preset to $PYTHON_CMD" -fi - - - -cat >>confdefs.h <<_ACEOF -#define PYTHON_EXE "$PYTHON_CMD" -_ACEOF - - -USE_NUMARRAY='y' - -if test "$USE_NUMERIC" = "y"; then -USE_NUMARRAY='n' -USE_NUMPY='n' -cat >>confdefs.h <<\_ACEOF -#define HAS_NUMERIC 1 -_ACEOF - -fi - -if test "$USE_NUMPY" = "y"; then -USE_NUMARRAY='n' -cat >>confdefs.h <<\_ACEOF -#define HAS_NUMPY 1 -_ACEOF - -fi - -if test "$USE_NUMARRAY" = "y"; then -cat >>confdefs.h <<\_ACEOF -#define HAS_NUMARRAY 1 -_ACEOF - -fi - -if test "$USE_NUMARRAY" = "y"; then - if test -n "$NUMARRAY_INC_DIR" ; then - echo "setting NUMARRAY_INC_DIR to $NUMARRAY_INC_DIR" - else - NUMARRAY_INC_DIR="" - if test -n "$NUMARRAY_HOME"; then - dir5="$NUMARRAY_HOME/include/python2.5" - if test -d $dir5 ; then - NUMARRAY_INC_DIR=$dir5 - else - dir4="$NUMARRAY_HOME/include/python2.4" - if test -d $dir4 ; then - NUMARRAY_INC_DIR=$dir4 - else - dir3="$NUMARRAY_HOME/include/python2.3" - if test -d $dir3 ; then - NUMARRAY_INC_DIR=$dir3 - else - dir1="$NUMARRAY_HOME/include/python" - if test -d $dir1 ; then - NUMARRAY_INC_DIR=$dir1 - else - echo "WARNING: NUMARRAY include dir $dir1 does not exist." - NUMARRAY_INC_DIR=$dir1 - fi - fi - fi - fi - echo "setting NUMARRAY_INC_DIR to $NUMARRAY_INC_DIR" - fi - fi -else - NUMARRAY_INC_DIR="" - NUMARRAY_HOME="" -fi - - -if test "$USE_NUMPY" = "y"; then - if test -n "$NUMPY_INC_DIR" ; then - echo "setting NUMPY_INC_DIR to $NUMPY_INC_DIR" - else - NUMPY_INC_DIR="" - if test -n "$NUMPY_HOME"; then - dir6="$NUMPY_HOME/include/python2.6" - if test -d $dir6 ; then - NUMPY_INC_DIR=$dir6 - else - dir5="$NUMPY_HOME/include/python2.5" - if test -d $dir5 ; then - NUMPY_INC_DIR=$dir5 - else - dir4="$NUMPY_HOME/include/python2.4" - if test -d $dir4 ; then - NUMPY_INC_DIR=$dir4 - else - dir3="$NUMPY_HOME/include/python2.3" - if test -d $dir3 ; then - NUMPY_INC_DIR=$dir3 - else - dir2="$NUMPY_HOME/include/python2.2" - if test -d $dir2 ; then - NUMPY_INC_DIR=$dir2 - else - dir1="$NUMPY_HOME/include/python" - if test -d $dir1 ; then - NUMPY_INC_DIR=$dir1 - else - echo "WARNING: NUMPY include dir $dir1 does not exist." - NUMPY_INC_DIR=$dir1 - fi - fi - fi - fi - fi - fi - echo "setting NUMPY_INC_DIR to $NUMPY_INC_DIR" - fi - fi -else - NUMPY_INC_DIR="" - NUMPY_HOME="" -fi - - - -# this fails, at least on a Mac. By default, numarray include files -# are installed in the include directory in the Python framework. This -# does not require setting NUMARRAY_INC_DIR, so testing that it is -# non-null is not a valid test of whether numarray is -# installed. Commented out 7/26/07 by DGG. -#if test $BUILD_PYTHON = 2 ; then -#if test x"$NUMARRAY_INC_DIR" = "x" ; then -#if test ! "$USE_NUMERIC" = "y"; then -# echo 'NUMARRAY is being used but we can find it' -# if test "x$PYTHON_PACKAGE" = "xdefault"; then -# echo 'setting python package build back to minimal' -# BUILD_PYTHON=1 -# fi -#fi -#fi -#fi - - - - - - -#-------------------------- -# CVS Tag -#-------------------------- -CVSTAG=`${PYTHON_CMD} tools/src/findtag.py ..` -if test "x$CVSTAG" = "x"; then -CVSTAG="HEAD" -fi - - - -# -# Matlab Interface -# - -BUILD_MATLAB=0 - -if test "$BUILD_MATLAB_TOOLBOX" != "n"; then - if test "$MATLAB_CMD" = "default" -o \ - "$MATLAB_CMD"x = "x"; then - # Extract the first word of "matlab", so it can be a program name with args. -set dummy matlab; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_MATLAB_CMD+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $MATLAB_CMD in - [\\/]* | ?:[\\/]*) - ac_cv_path_MATLAB_CMD="$MATLAB_CMD" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MATLAB_CMD="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_MATLAB_CMD" && ac_cv_path_MATLAB_CMD=""none"" - ;; -esac -fi -MATLAB_CMD=$ac_cv_path_MATLAB_CMD - -if test -n "$MATLAB_CMD"; then - echo "$as_me:$LINENO: result: $MATLAB_CMD" >&5 -echo "${ECHO_T}$MATLAB_CMD" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - if test "$MATLAB_CMD" = "none"; then - MATLAB_CMD=`find /*/MATLAB*/bin/m* -name matlab` - fi - if test "$MATLAB_CMD" != "none" -a "x$MATLAB_CMD" != "x"; then - BUILD_MATLAB=1 - BUILD_CLIB=1 - #echo 'HKM -> BUILD turned on 1' - fi - else - echo "Matlab command preset to $MATLAB_CMD" - BUILD_MATLAB=1 - BUILD_CLIB=1 - fi - if test "x$OS_IS_WIN" = "x1"; then - MATLAB_CMD=`cygpath -a -m "$MATLAB_CMD" ` - echo "Windows MATLAB command: ${MATLAB_CMD}" - fi - - echo "$as_me:$LINENO: checking MATLAB ($MATLAB_CMD)" >&5 -echo $ECHO_N "checking MATLAB ($MATLAB_CMD)... $ECHO_C" >&6 - rm -f diary - cat >> testmat.m << EOF -diary; -try, mexext, catch, disp 'mex_unknown', end; -diary off; -exit; -EOF - ${MATLAB_CMD} -nojvm -nosplash -r testmat &> /dev/null -# &> /dev/null` - if test -f diary; then - BUILD_MATLAB=1 - echo $MATLAB_CMD - mex_ext=`grep mex* diary` - rm -f diary - else - BUILD_MATLAB=0 - echo 'failed!' - fi - rm -f testmat.m -else - echo "MATLAB interface will not be installed" - if test -z "$MATLAB_CMD"; then - MATLAB_CMD="matlab" - fi -fi - -if test "$mex_ext" = "mex_unknown"; then -case $ac_sys_system in - Darwin*) hardware=`uname -m`; - mex_ext=mexmac; - if test "$hardware" = "i386" ; then - mex_ext=mexmaci - fi;; - CYGWIN*) mex_ext=dll;; - Linux* ) mex_ext=mexglx;; -esac -fi - -if test "$BUILD_MATLAB" = "1"; then - echo " " - echo "---------------------------- MATLAB -------------------------------" - echo "MEX file extension: " $mex_ext - echo "MATLAB command: " $MATLAB_CMD - echo "--------------------------------------------------------------------" - echo " " -fi - - - - - -#------------------------------------------------- - -#----------------------------------------------------------------------- -# C++ Compilation -#----------------------------------------------------------------------- - - -export_name=$target - - -# -# PIC -# Compiler flag for specifying position independent code. -# This flag is needed in the compilation step -# for code that will go into a shared library. -# If Cantera is used in the Full python installation -# mode, this means that all of Cantera's code -# compiled into static libraries and all code linked into -# those routines, such as cvode and lapack, should be position independent -# and should be compiled with this flag. -# -if test -z "$PIC"; then - case $ac_sys_system in - SunOS* ) - PIC=' ';; - CYGWIN* ) - PIC=' ';; - * ) - PIC='-fPIC';; - esac -fi -echo 'checking for Position independent code command ... ' $PIC - - -# -# This script will find and set the $INSTALL -# environmental variable, and set a substitution -# rule for that variable -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 -if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in - ./ | .// | /cC/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - done - done - ;; -esac -done - - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. We don't cache a - # path for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the path is relative. - INSTALL=$ac_install_sh - fi -fi -echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6 - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -# -# HKM - -# However, recently, I've had problems with -# the default LINUX /usr/bin/install program wrt -# files/directories which are group writeable, but -# which are not owned by the current user (this happens -# in a group environment). The default config/install-sh -# doesn't have this problem. So, I changed the default -# install program to config/install-sh, which should work -# on all platforms since its a bourne shell script -# HKM 12/24/2009 - Ran into another problem with the new cygwin 1.7.1. -# THe install (and even cp -f in some cases) program will fail -# when an existing different file is in place. This occurs sometimes -# and I can not quite nail down when. However replacing -# the install command for cygwin. Note, install no longer -# needs to have a wildcard capability within Cantera. - -case $ac_sys_system in - CYGWIN* ) - INSTALL=${INSTALL_BIN:=config/install-sh} - echo 'INSTALL program has been set to ' $INSTALL;; -esac - -# -# precompile_headers still relevant? -# -precompile_headers=no -# -# CFLAGS: flags that get attached to the C compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# FFLAGS: flags that get attached to the Fortran compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# -# CXXFLAGS: Flags that get attached to the CXX compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# -if test -z "$AFLAGS" ; then - AFLAGS=" " -fi -if test -z "$CXXFLAGS" ; then - CXXFLAGS="$AFLAGS" -else - CXXFLAGS="$CXXFLAGS"" ""$AFLAGS" -fi -if test -z "$CFLAGS" ; then - CFLAGS="$AFLAGS" -else - CFLAGS="$CFLAGS"" ""$AFLAGS" -fi -if test -z "$FFLAGS" ; then - FFLAGS="$AFLAGS" -else - FFLAGS="$FFLAGS"" ""$AFLAGS" -fi - -if test "x$OS_IS_WIN" = "x1"; then - #CXX=cl.exe - #CC=cl.exe - #export CXX - ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - echo "$as_me:$LINENO: result: $CXX" >&5 -echo "${ECHO_T}$CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 -echo "${ECHO_T}$ac_ct_CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CXX" && break -done -test -n "$ac_ct_CXX" || ac_ct_CXX="g++" - - CXX=$ac_ct_CXX -fi - - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C++ compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 -GXX=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -CXXFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 -echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cxx_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cxx_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cxx_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CC" && break -done - - CC=$ac_ct_CC -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -CFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cc_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_prog_cc_stdc=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std1 is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std1. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_stdc=$ac_arg -break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext -done -rm -f conftest.$ac_ext conftest.$ac_objext -CC=$ac_save_CC - -fi - -case "x$ac_cv_prog_cc_stdc" in - x|xno) - echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 ;; - *) - echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 - CC="$CC $ac_cv_prog_cc_stdc" ;; -esac - -# Some people use a C++ compiler to compile C. Since we use `exit', -# in C++ we need to declare it. In case someone uses the same compiler -# for both compiling C and C++ we need to have the C++ compiler decide -# the declaration of exit, since it's the most demanding environment. -cat >conftest.$ac_ext <<_ACEOF -#ifndef __cplusplus - choke me -#endif -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -else - -# -# Determines the CXX compiler to use -# -export CXX -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - echo "$as_me:$LINENO: result: $CXX" >&5 -echo "${ECHO_T}$CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 -echo "${ECHO_T}$ac_ct_CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CXX" && break -done -test -n "$ac_ct_CXX" || ac_ct_CXX="g++" - - CXX=$ac_ct_CXX -fi - - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C++ compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 -GXX=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -CXXFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 -echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cxx_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cxx_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cxx_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CC" && break -done - - CC=$ac_ct_CC -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -CFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cc_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_prog_cc_stdc=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std1 is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std1. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_stdc=$ac_arg -break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext -done -rm -f conftest.$ac_ext conftest.$ac_objext -CC=$ac_save_CC - -fi - -case "x$ac_cv_prog_cc_stdc" in - x|xno) - echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 ;; - *) - echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 - CC="$CC $ac_cv_prog_cc_stdc" ;; -esac - -# Some people use a C++ compiler to compile C. Since we use `exit', -# in C++ we need to declare it. In case someone uses the same compiler -# for both compiling C and C++ we need to have the C++ compiler decide -# the declaration of exit, since it's the most demanding environment. -cat >conftest.$ac_ext <<_ACEOF -#ifndef __cplusplus - choke me -#endif -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - - -echo "$as_me:$LINENO: checking for ability to precompile headers" >&5 -echo $ECHO_N "checking for ability to precompile headers... $ECHO_C" >&6 - -if test -n "$GCC"; then - msg=`rm -f *h.gch; $CXX testpch.h &> /dev/null` - if test -f testpch.h.gch; then - precompile_headers=yes - cat >>confdefs.h <<\_ACEOF -#define USE_PCH 1 -_ACEOF - - fi -fi -echo "$as_me:$LINENO: result: ${precompile_headers}" >&5 -echo "${ECHO_T}${precompile_headers}" >&6 -# End of the OS_IS_WIN section -fi - -# Sizes of various common basic types -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 -echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6 -if test -z "$CXXCPP"; then - if test "${ac_cv_prog_CXXCPP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - # Double quotes because CXXCPP needs to be expanded - for CXXCPP in "$CXX -E" "/lib/cpp" - do - ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_cxx_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether non-existent headers - # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_cxx_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - # Broken: success on invalid input. -continue -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - break -fi - - done - ac_cv_prog_CXXCPP=$CXXCPP - -fi - CXXCPP=$ac_cv_prog_CXXCPP -else - ac_cv_prog_CXXCPP=$CXXCPP -fi -echo "$as_me:$LINENO: result: $CXXCPP" >&5 -echo "${ECHO_T}$CXXCPP" >&6 -ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_cxx_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether non-existent headers - # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_cxx_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - # Broken: success on invalid input. -continue -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - : -else - { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details." >&5 -echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -echo "$as_me:$LINENO: checking for egrep" >&5 -echo $ECHO_N "checking for egrep... $ECHO_C" >&6 -if test "${ac_cv_prog_egrep+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if echo a | (grep -E '(a|b)') >/dev/null 2>&1 - then ac_cv_prog_egrep='grep -E' - else ac_cv_prog_egrep='egrep' - fi -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 -echo "${ECHO_T}$ac_cv_prog_egrep" >&6 - EGREP=$ac_cv_prog_egrep - - -echo "$as_me:$LINENO: checking for ANSI C header files" >&5 -echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 -if test "${ac_cv_header_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_header_stdc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_header_stdc=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then - : -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then - : -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then - : -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - exit(2); - exit (0); -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -ac_cv_header_stdc=no -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 -echo "${ECHO_T}$ac_cv_header_stdc" >&6 -if test $ac_cv_header_stdc = yes; then - -cat >>confdefs.h <<\_ACEOF -#define STDC_HEADERS 1 -_ACEOF - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. - - - - - - - - - -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - eval "$as_ac_Header=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -eval "$as_ac_Header=no" -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 -if test `eval echo '${'$as_ac_Header'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -echo "$as_me:$LINENO: checking for int" >&5 -echo $ECHO_N "checking for int... $ECHO_C" >&6 -if test "${ac_cv_type_int+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((int *) 0) - return 0; -if (sizeof (int)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_int=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_int=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5 -echo "${ECHO_T}$ac_cv_type_int" >&6 - -echo "$as_me:$LINENO: checking size of int" >&5 -echo $ECHO_N "checking size of int... $ECHO_C" >&6 -if test "${ac_cv_sizeof_int+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_int" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_int=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (int), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (int)); } -unsigned long ulongval () { return (long) (sizeof (int)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (int))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (int)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (int)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_int=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (int), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_int=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 -echo "${ECHO_T}$ac_cv_sizeof_int" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_INT $ac_cv_sizeof_int -_ACEOF - - -echo "$as_me:$LINENO: checking for long" >&5 -echo $ECHO_N "checking for long... $ECHO_C" >&6 -if test "${ac_cv_type_long+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((long *) 0) - return 0; -if (sizeof (long)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_long=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_long=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_long" >&5 -echo "${ECHO_T}$ac_cv_type_long" >&6 - -echo "$as_me:$LINENO: checking size of long" >&5 -echo $ECHO_N "checking size of long... $ECHO_C" >&6 -if test "${ac_cv_sizeof_long+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_long" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_long=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (long), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (long)); } -unsigned long ulongval () { return (long) (sizeof (long)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (long))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (long)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (long)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_long=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (long), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (long), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_long=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5 -echo "${ECHO_T}$ac_cv_sizeof_long" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_LONG $ac_cv_sizeof_long -_ACEOF - - -echo "$as_me:$LINENO: checking for void *" >&5 -echo $ECHO_N "checking for void *... $ECHO_C" >&6 -if test "${ac_cv_type_void_p+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((void * *) 0) - return 0; -if (sizeof (void *)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_void_p=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_void_p=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_void_p" >&5 -echo "${ECHO_T}$ac_cv_type_void_p" >&6 - -echo "$as_me:$LINENO: checking size of void *" >&5 -echo $ECHO_N "checking size of void *... $ECHO_C" >&6 -if test "${ac_cv_sizeof_void_p+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_void_p" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_void_p=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (void *), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (void *), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (void *)); } -unsigned long ulongval () { return (long) (sizeof (void *)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (void *))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (void *)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (void *)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_void_p=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (void *), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (void *), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_void_p=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_void_p" >&5 -echo "${ECHO_T}$ac_cv_sizeof_void_p" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_VOID_P $ac_cv_sizeof_void_p -_ACEOF - - -echo "$as_me:$LINENO: checking for char" >&5 -echo $ECHO_N "checking for char... $ECHO_C" >&6 -if test "${ac_cv_type_char+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((char *) 0) - return 0; -if (sizeof (char)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_char=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_char=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_char" >&5 -echo "${ECHO_T}$ac_cv_type_char" >&6 - -echo "$as_me:$LINENO: checking size of char" >&5 -echo $ECHO_N "checking size of char... $ECHO_C" >&6 -if test "${ac_cv_sizeof_char+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_char" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_char=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (char), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (char)); } -unsigned long ulongval () { return (long) (sizeof (char)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (char))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (char)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (char)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_char=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (char), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_char=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_char" >&5 -echo "${ECHO_T}$ac_cv_sizeof_char" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_CHAR $ac_cv_sizeof_char -_ACEOF - - -echo "$as_me:$LINENO: checking for short" >&5 -echo $ECHO_N "checking for short... $ECHO_C" >&6 -if test "${ac_cv_type_short+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((short *) 0) - return 0; -if (sizeof (short)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_short=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_short=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_short" >&5 -echo "${ECHO_T}$ac_cv_type_short" >&6 - -echo "$as_me:$LINENO: checking size of short" >&5 -echo $ECHO_N "checking size of short... $ECHO_C" >&6 -if test "${ac_cv_sizeof_short+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_short" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_short=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (short), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (short), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (short)); } -unsigned long ulongval () { return (long) (sizeof (short)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (short))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (short)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (short)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_short=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (short), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (short), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_short=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5 -echo "${ECHO_T}$ac_cv_sizeof_short" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_SHORT $ac_cv_sizeof_short -_ACEOF - - -echo "$as_me:$LINENO: checking for float" >&5 -echo $ECHO_N "checking for float... $ECHO_C" >&6 -if test "${ac_cv_type_float+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((float *) 0) - return 0; -if (sizeof (float)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_float=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_float=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_float" >&5 -echo "${ECHO_T}$ac_cv_type_float" >&6 - -echo "$as_me:$LINENO: checking size of float" >&5 -echo $ECHO_N "checking size of float... $ECHO_C" >&6 -if test "${ac_cv_sizeof_float+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_float" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_float=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (float), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (float), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (float)); } -unsigned long ulongval () { return (long) (sizeof (float)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (float))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (float)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (float)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_float=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (float), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (float), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_float=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_float" >&5 -echo "${ECHO_T}$ac_cv_sizeof_float" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_FLOAT $ac_cv_sizeof_float -_ACEOF - - -echo "$as_me:$LINENO: checking for double" >&5 -echo $ECHO_N "checking for double... $ECHO_C" >&6 -if test "${ac_cv_type_double+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((double *) 0) - return 0; -if (sizeof (double)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_double=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_double=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_double" >&5 -echo "${ECHO_T}$ac_cv_type_double" >&6 - -echo "$as_me:$LINENO: checking size of double" >&5 -echo $ECHO_N "checking size of double... $ECHO_C" >&6 -if test "${ac_cv_sizeof_double+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_double" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_double=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (double), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (double), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (double)); } -unsigned long ulongval () { return (long) (sizeof (double)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (double))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (double)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (double)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_double=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (double), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (double), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_double=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_double" >&5 -echo "${ECHO_T}$ac_cv_sizeof_double" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_DOUBLE $ac_cv_sizeof_double -_ACEOF - - -echo "$as_me:$LINENO: checking for fpos_t" >&5 -echo $ECHO_N "checking for fpos_t... $ECHO_C" >&6 -if test "${ac_cv_type_fpos_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((fpos_t *) 0) - return 0; -if (sizeof (fpos_t)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_fpos_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_fpos_t=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_fpos_t" >&5 -echo "${ECHO_T}$ac_cv_type_fpos_t" >&6 - -echo "$as_me:$LINENO: checking size of fpos_t" >&5 -echo $ECHO_N "checking size of fpos_t... $ECHO_C" >&6 -if test "${ac_cv_sizeof_fpos_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_fpos_t" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_fpos_t=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (fpos_t), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (fpos_t), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (fpos_t)); } -unsigned long ulongval () { return (long) (sizeof (fpos_t)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (fpos_t))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (fpos_t)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (fpos_t)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_fpos_t=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (fpos_t), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (fpos_t), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_fpos_t=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_fpos_t" >&5 -echo "${ECHO_T}$ac_cv_sizeof_fpos_t" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_FPOS_T $ac_cv_sizeof_fpos_t -_ACEOF - - - - - -if test -z "$SHARED"; then SHARED='-shared'; fi - - -CXX_INCLUDES=$BOOST_INCLUDE - -# -# LCXX_FLAGS: Flags that get attached to the CXX loader -# statement AFLAGS are base flags that -# get added to compilers and loaders. -# -if test ! -z "$AFLAGS" ; then - if test -z "$LCXX_FLAGS" ; then - LCXX_FLAGS="$AFLAGS" - else - LCXX_FLAGS="$LCXXFLAGS"" ""$AFLAGS" - fi -fi -if test "$BUILD_WITH_F2C"="n"; then - if test ! -z "$LFORT_FLAGS"; then - LCXX_FLAGS="$LCXX_FLAGS"" ""$LFORT_FLAGS" - fi -fi - - - -# -# Ending Libs for compiling static applications and -# dynamically loaded libraries -# (sunpro solaris needs a few for dynamic linking) -# -# -# Check to see if we have a -lm line -# -echo "$as_me:$LINENO: checking for printf in -lm" >&5 -echo $ECHO_N "checking for printf in -lm... $ECHO_C" >&6 -if test "${ac_cv_lib_m_printf+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lm $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char printf (); -int -main () -{ -printf (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_m_printf=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_lib_m_printf=no -fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_m_printf" >&5 -echo "${ECHO_T}$ac_cv_lib_m_printf" >&6 -if test $ac_cv_lib_m_printf = yes; then - add_stm=1 -else - add_stm=0 -fi - - -# -# Check to see if we have a -lstdc++ line -# -echo "$as_me:$LINENO: checking for printf in -lstdc++" >&5 -echo $ECHO_N "checking for printf in -lstdc++... $ECHO_C" >&6 -if test "${ac_cv_lib_stdcpp_printf+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lstdc++ $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char printf (); -int -main () -{ -printf (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_stdcpp_printf=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_lib_stdcpp_printf=no -fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_stdcpp_printf" >&5 -echo "${ECHO_T}$ac_cv_lib_stdcpp_printf" >&6 -if test $ac_cv_lib_stdcpp_printf = yes; then - add_stdc=1 -else - add_stdc=0 -fi - - - -if test -n "$NEED_F2C" ; then - LCXX_END_LIBS="-lctf2c ""$LCXX_END_LIBS" -fi -case $ac_sys_system in - SunOS* ) - case $CXX in - CC* ) - LCXX_END_LIBS="$LCXX_END_LIBS"" -lCrun -lCstd -lfsu" ;; - esac ;; -esac -if test $add_stm = 1 ; then - echo 'Adding -lm to the end of the LCXX_END_LIBS variable' - LCXX_END_LIBS="$LCXX_END_LIBS"" -lm" - echo 'LCXX_END_LIBS = ' $LCXX_END_LIBS -fi -if test $add_stdc = 1 ; then - echo 'Adding -lstdc++ to the end of the LCXX_END_LIBS variable' - LCXX_END_LIBS="$LCXX_END_LIBS"" -lstdc++ " - echo 'LCXX_END_LIBS = ' $LCXX_END_LIBS -fi - - - - - -has_sstream=no -echo "$as_me:$LINENO: checking for sstream" >&5 -echo $ECHO_N "checking for sstream... $ECHO_C" >&6 -cat >> testsstream.cpp << EOF -#include -main() {} -EOF - msg=`${CXX} -c testsstream.cpp &> /dev/null` - if test -f testsstream.o; then - has_sstream=yes - rm testsstream.o - cat >>confdefs.h <<\_ACEOF -#define HAS_SSTREAM 1 -_ACEOF - - fi -rm -f testsstream.cpp -echo "$as_me:$LINENO: result: ${has_sstream}" >&5 -echo "${ECHO_T}${has_sstream}" >&6 - -# -# Determine if we have a command to strip symbols from an object file -# -HAVE_STRIPSYMBOLS='yes' -case $ac_sys_system in - SunOS* ) - HAVE_STRIPSYMBOLS='no';; - Darwin* ) - HAVE_STRIPSYMBOLS='no';; -esac -echo 'checking for a strip symbol command ... ' $HAVE_STRIPSYMBOLS - - -#--------------------------------------------------------------------------- -# Fortran -#--------------------------------------------------------------------------- - -#if test x"$build_with_f2c" = "x0"; then -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_F77+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$F77"; then - ac_cv_prog_F77="$F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_F77="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -F77=$ac_cv_prog_F77 -if test -n "$F77"; then - echo "$as_me:$LINENO: result: $F77" >&5 -echo "${ECHO_T}$F77" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$F77" && break - done -fi -if test -z "$F77"; then - ac_ct_F77=$F77 - for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_F77+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_F77"; then - ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_F77="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_F77=$ac_cv_prog_ac_ct_F77 -if test -n "$ac_ct_F77"; then - echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 -echo "${ECHO_T}$ac_ct_F77" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_F77" && break -done - - F77=$ac_ct_F77 -fi - - -# Provide some information about the compiler. -echo "$as_me:10051:" \ - "checking for Fortran 77 compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -rm -f a.out - -# If we don't use `.F' as extension, the preprocessor is not run on the -# input file. (Note that this only needs to work for GNU compilers.) -ac_save_ext=$ac_ext -ac_ext=F -echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6 -if test "${ac_cv_f77_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF - program main -#ifndef __GNUC__ - choke me -#endif - - end -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_f77_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_f77_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6 -ac_ext=$ac_save_ext -ac_test_FFLAGS=${FFLAGS+set} -ac_save_FFLAGS=$FFLAGS -FFLAGS= -echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 -echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_f77_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - FFLAGS=-g -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_f77_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_f77_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_f77_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 -echo "${ECHO_T}$ac_cv_prog_f77_g" >&6 -if test "$ac_test_FFLAGS" = set; then - FFLAGS=$ac_save_FFLAGS -elif test $ac_cv_prog_f77_g = yes; then - if test "x$ac_cv_f77_compiler_gnu" = xyes; then - FFLAGS="-g -O2" - else - FFLAGS="-g" - fi -else - if test "x$ac_cv_f77_compiler_gnu" = xyes; then - FFLAGS="-O2" - else - FFLAGS= - fi -fi - -G77=`test $ac_compiler_gnu = yes && echo yes` -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -# if G77 is defined, then add a flag to turn off adding a second underscore -# to procedures that have an underscore in the name -if test -n "$G77"; then - FFLAGS=$FFLAGS' -fno-second-underscore' -else - if test $F77 = "g77" -o $F77 = "mpif77" -o $F77 = "gfortran" ; then - FFLAGS=$FFLAGS' -fno-second-underscore' - fi -fi - - -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu -echo "$as_me:$LINENO: checking how to get verbose linking output from $F77" >&5 -echo $ECHO_N "checking how to get verbose linking output from $F77... $ECHO_C" >&6 -if test "${ac_cv_prog_f77_v+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_f77_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_f77_v= -# Try some options frequently used verbose output -for ac_verb in -v -verbose --verbose -V -\#\#\#; do - cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF - -# Compile and link our simple test program by passing a flag (argument -# 1 to this macro) to the Fortran compiler in order to get -# "verbose" output that we can then parse for the Fortran linker -# flags. -ac_save_FFLAGS=$FFLAGS -FFLAGS="$FFLAGS $ac_verb" -(eval echo $as_me:10258: \"$ac_link\") >&5 -ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` -echo "$ac_f77_v_output" >&5 -FFLAGS=$ac_save_FFLAGS - -rm -f conftest* - -# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where -# /foo, /bar, and /baz are search directories for the Fortran linker. -# Here, we change these into -L/foo -L/bar -L/baz (and put it first): -ac_f77_v_output="`echo $ac_f77_v_output | - grep 'LPATH is:' | - sed 's,.*LPATH is\(: *[^ ]*\).*,\1,;s,: */, -L/,g'` $ac_f77_v_output" - -case $ac_f77_v_output in - # If we are using xlf then replace all the commas with spaces. - *xlfentry*) - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/,/ /g'` ;; - - # With Intel ifc, ignore the quoted -mGLOB_options_string stuff (quoted - # $LIBS confuse us, and the libraries appear later in the output anyway). - *mGLOB_options_string*) - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/\"-mGLOB[^\"]*\"/ /g'` ;; - - # If we are using Cray Fortran then delete quotes. - # Use "\"" instead of '"' for font-lock-mode. - # FIXME: a more general fix for quoted arguments with spaces? - *cft90*) - ac_f77_v_output=`echo $ac_f77_v_output | sed "s/\"//g"` ;; -esac - - - # look for -l* and *.a constructs in the output - for ac_arg in $ac_f77_v_output; do - case $ac_arg in - [\\/]*.a | ?:[\\/]*.a | -[lLRu]*) - ac_cv_prog_f77_v=$ac_verb - break 2 ;; - esac - done -done -if test -z "$ac_cv_prog_f77_v"; then - { echo "$as_me:$LINENO: WARNING: cannot determine how to obtain linking information from $F77" >&5 -echo "$as_me: WARNING: cannot determine how to obtain linking information from $F77" >&2;} -fi -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ echo "$as_me:$LINENO: WARNING: compilation failed" >&5 -echo "$as_me: WARNING: compilation failed" >&2;} -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_f77_v" >&5 -echo "${ECHO_T}$ac_cv_prog_f77_v" >&6 -echo "$as_me:$LINENO: checking for Fortran libraries of $F77" >&5 -echo $ECHO_N "checking for Fortran libraries of $F77... $ECHO_C" >&6 -if test "${ac_cv_f77_libs+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "x$FLIBS" != "x"; then - ac_cv_f77_libs="$FLIBS" # Let the user override the test. -else - -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF - -# Compile and link our simple test program by passing a flag (argument -# 1 to this macro) to the Fortran compiler in order to get -# "verbose" output that we can then parse for the Fortran linker -# flags. -ac_save_FFLAGS=$FFLAGS -FFLAGS="$FFLAGS $ac_cv_prog_f77_v" -(eval echo $as_me:10336: \"$ac_link\") >&5 -ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` -echo "$ac_f77_v_output" >&5 -FFLAGS=$ac_save_FFLAGS - -rm -f conftest* - -# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where -# /foo, /bar, and /baz are search directories for the Fortran linker. -# Here, we change these into -L/foo -L/bar -L/baz (and put it first): -ac_f77_v_output="`echo $ac_f77_v_output | - grep 'LPATH is:' | - sed 's,.*LPATH is\(: *[^ ]*\).*,\1,;s,: */, -L/,g'` $ac_f77_v_output" - -case $ac_f77_v_output in - # If we are using xlf then replace all the commas with spaces. - *xlfentry*) - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/,/ /g'` ;; - - # With Intel ifc, ignore the quoted -mGLOB_options_string stuff (quoted - # $LIBS confuse us, and the libraries appear later in the output anyway). - *mGLOB_options_string*) - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/\"-mGLOB[^\"]*\"/ /g'` ;; - - # If we are using Cray Fortran then delete quotes. - # Use "\"" instead of '"' for font-lock-mode. - # FIXME: a more general fix for quoted arguments with spaces? - *cft90*) - ac_f77_v_output=`echo $ac_f77_v_output | sed "s/\"//g"` ;; -esac - - - -ac_cv_f77_libs= - -# Save positional arguments (if any) -ac_save_positional="$@" - -set X $ac_f77_v_output -while test $# != 1; do - shift - ac_arg=$1 - case $ac_arg in - [\\/]*.a | ?:[\\/]*.a) - ac_exists=false - for ac_i in $ac_cv_f77_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg" -fi - - ;; - -bI:*) - ac_exists=false - for ac_i in $ac_cv_f77_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - if test "$ac_compiler_gnu" = yes; then - for ac_link_opt in $ac_arg; do - ac_cv_f77_libs="$ac_cv_f77_libs -Xlinker $ac_link_opt" - done -else - ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg" -fi -fi - - ;; - # Ignore these flags. - -lang* | -lcrt[01].o | -lcrtbegin.o | -lc | -lgcc | -libmil | -LANG:=*) - ;; - -lkernel32) - test x"$CYGWIN" != xyes && ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg" - ;; - -[LRuY]) - # These flags, when seen by themselves, take an argument. - # We remove the space between option and argument and re-iterate - # unless we find an empty arg or a new option (starting with -) - case $2 in - "" | -*);; - *) - ac_arg="$ac_arg$2" - shift; shift - set X $ac_arg "$@" - ;; - esac - ;; - -YP,*) - for ac_j in `echo $ac_arg | sed -e 's/-YP,/-L/;s/:/ -L/g'`; do - ac_exists=false - for ac_i in $ac_cv_f77_libs; do - if test x"$ac_j" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_arg="$ac_arg $ac_j" - ac_cv_f77_libs="$ac_cv_f77_libs $ac_j" -fi - - done - ;; - -[lLR]*) - ac_exists=false - for ac_i in $ac_cv_f77_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg" -fi - - ;; - # Ignore everything else. - esac -done -# restore positional arguments -set X $ac_save_positional; shift - -# We only consider "LD_RUN_PATH" on Solaris systems. If this is seen, -# then we insist that the "run path" must be an absolute path (i.e. it -# must begin with a "/"). -case `(uname -sr) 2>/dev/null` in - "SunOS 5"*) - ac_ld_run_path=`echo $ac_f77_v_output | - sed -n 's,^.*LD_RUN_PATH *= *\(/[^ ]*\).*$,-R\1,p'` - test "x$ac_ld_run_path" != x && - if test "$ac_compiler_gnu" = yes; then - for ac_link_opt in $ac_ld_run_path; do - ac_cv_f77_libs="$ac_cv_f77_libs -Xlinker $ac_link_opt" - done -else - ac_cv_f77_libs="$ac_cv_f77_libs $ac_ld_run_path" -fi - ;; -esac -fi # test "x$[]_AC_LANG_PREFIX[]LIBS" = "x" - -fi -echo "$as_me:$LINENO: result: $ac_cv_f77_libs" >&5 -echo "${ECHO_T}$ac_cv_f77_libs" >&6 -FLIBS="$ac_cv_f77_libs" - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -override_f77_libs=0; - -#case $ac_sys_system in -# Darwin*) FLIBS='-lSystem'; override_f77_libs=1; SHARED_CTLIB=0;; -#esac -# -#if test $override_f77_libs -gt 0; then -# echo The Fortran 77 libraries on this platform are not correctly determined by -# echo the configuration process. They are being manually set to -# echo FLIBS = $FLIBS -#fi - -#fi - -# ---------------------------------------------------------------------- -# LCXX_FLIBS are extra libraries the CXX linker needs -# in order to link in fortran programs where fortran is the main program - -LCXX_FLIBS= - -case $ac_sys_system in - SunOS*) LCXX_FLIBS="-lCrun -lCstd -lfsu" ;; -esac - -#-------------------------------------------- - - -if test "x${BUILD_F90}" != "x0"; then - if test "$F90" = "default" -o \ - "$F90"x = "x"; then - for ac_prog in f95 gfortran g95 -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_F90+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $F90 in - [\\/]* | ?:[\\/]*) - ac_cv_path_F90="$F90" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_F90="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - ;; -esac -fi -F90=$ac_cv_path_F90 - -if test -n "$F90"; then - echo "$as_me:$LINENO: result: $F90" >&5 -echo "${ECHO_T}$F90" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$F90" && break -done -test -n "$F90" || F90=""none"" - - if test "$F90" = "none" ; then - echo "ERROR: Fortran 90 requested, but no Fortran 90/95 compiler found!" - else - echo "Fortran compiler set to " $F90 - fi - else - echo "Fortran 90/95 compiler preset to $F90" - fi -fi - -has_f90=no -f90type=none -f90_module_dir='-I' -f90_opts='' - -if test "x${BUILD_F90}" != "x0"; then - echo "$as_me:$LINENO: checking Fortran 90 compiler ($F90) type" >&5 -echo $ECHO_N "checking Fortran 90 compiler ($F90) type... $ECHO_C" >&6 - cat >> testf90.f90 << EOF -module mt -double precision, parameter :: x = 2.3 -end module mt -program testf90 -use mt -integer :: i -end program testf90 -EOF - msg=`${F90} -c testf90.f90 &> /dev/null` - if test -f testf90.o; then - has_f90=yes - rm testf90.o - f90type=unknown - fi -# -F90LIBS= - - msg=`${F90} --version &> f90out` - isgfortran=`grep -c 'GNU Fortran' f90out` - if test "x${isgfortran}" != "x0"; then - f90type="gfortran" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - F90LIBS="-lgfortran" - fi - - isg95=`grep -c 'G95' f90out` - if test "x${isg95}" != "x0"; then - f90type="g95" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - #case $ac_sys_system in - # Darwin*) FLIBS='-lg2c -lcc_dynamic';; - #esac - fi - - msg=`${F90} -V &> f90out` - isnag=`grep -c NAGWare f90out` - if test "x${isnag}" != "x0"; then - f90type="NAG" - f90opts="-I. -I${ct_incdir}" - f90buildopts="-I." - fi -# - msg=`${F90} -V -c testf90.f90 &> f90out` - isabsoft=`grep -c Absoft f90out` - if test "x${isabsoft}" != "x0"; then - f90type="Absoft" - f90opts="-p. -p${ct_incdir} -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - f90buildopts="-p. -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - fi - rm -f testf90.f90 - echo "$as_me:$LINENO: result: ${f90type}" >&5 -echo "${ECHO_T}${f90type}" >&6 - if test "x${BUILD_F90}" != "x0"; then - if test "x${has_f90}" = "xno"; then - echo " -> cannot build the Fortran 90 interface" - BUILD_F90=0 - fi - fi -fi -if test -e f90out ; then - rm -f f90out -fi -savef90flags=${F90FLAGS} -F90FLAGS=${f90opts}' '${F90FLAGS} -F90BUILDFLAGS=${f90buildopts}' '${savef90flags} - - - - - - - - - - - - - - - - - - -# filename extensions for Fortran 77 -if test -z "$F77_EXT"; then F77_EXT=f; fi - - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -if test -z "$CXX_EXT"; then CXX_EXT=cpp; fi - - -if test -z "$OBJ_EXT"; then OBJ_EXT='o'; fi - - -if test -z "$EXE_EXT"; then EXE_EXT=$EXEEXT; fi - - -#local_math_libs='-lcvode' -#AC_SUBST(local_math_libs) - - -math_libs='-lcvode -lctmath' - - -if test "$LAPACK_FTN_TRAILING_UNDERSCORE" = "y" -then - cat >>confdefs.h <<\_ACEOF -#define LAPACK_FTN_TRAILING_UNDERSCORE 1 -_ACEOF - - cat >>confdefs.h <<\_ACEOF -#define FTN_TRAILING_UNDERSCORE 1 -_ACEOF - -fi - -if test "$LAPACK_FTN_STRING_LEN_AT_END" = "y" -then cat >>confdefs.h <<\_ACEOF -#define LAPACK_FTN_STRING_LEN_AT_END 1 -_ACEOF - -fi - -if test "$LAPACK_NAMES" = "lower" -then cat >>confdefs.h <<\_ACEOF -#define LAPACK_NAMES_LOWERCASE 1 -_ACEOF - -fi - -# from the Python configure.in file... - -# Set info about shared libraries. - - - - - -# SO is the extension of shared libraries `(including the dot!) -# -- usually .so, .sl on HP-UX, .dll on Cygwin -echo "$as_me:$LINENO: checking SO" >&5 -echo $ECHO_N "checking SO... $ECHO_C" >&6 -if test -z "$SO" -then - case $ac_sys_system in - hp*|HP*) SO=.sl;; - CYGWIN*) SO=.dll;; - Darwin*) SO=.dylib;; - *) SO=.so;; - esac -fi -echo "$as_me:$LINENO: result: $SO" >&5 -echo "${ECHO_T}$SO" >&6 - - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - - -# -# Section to handle tscompare -# -cd bin -touch s1 -sleep 1 -touch s2 -tsc=tscompare_alwaystrue -./tscompare_sh s2 s1 2> /dev/null -res=$? -if test "$res" = "0" ; then - tsc=tscompare_sh -else - ./tscompare_csh s2 s1 2> /dev/null - res=$? - if test "$res" = "0" ; then - tsc=tscompare_csh - else - ./tscompare_ksh s2 s1 2> /dev/null - res=$? - if test "$res" = "0" ; then - tsc=tsccompare_ksh - fi - fi -fi -/bin/rm s2 s1 -echo "checking for a time step comparison checker ... " $tsc -cp $tsc tscompare -currPath=`pwd` -TSCOMPARE_abs="$currPath"'/'tscompare -cd .. - - -# -# Create an absolute path for the $INSTALL function -# named INSTALL_abs -# (note m4 expansions [ = left bracket, ] = right bracket) -#echo "HKM - INSTALL = " $INSTALL -case "$INSTALL" in - [\\/$]* | ?:[\\/]* ) - INSTALL_abs="$INSTALL" ;; - *) - currPath=`pwd` - INSTALL_abs="$currPath"'/'"$INSTALL" ;; -esac -#echo 'INSTALL_abs = ' $INSTALL_abs - - -# -# See if the install rule accepts the -v flag -# -$INSTALL -v License.txt config > config/e.out 2>&1 -dd=$? -INSTALL_VERBOSE= -if test "$dd" = "0" ; then - INSTALL_VERBOSE="-v" -fi -if test -e "config/License.txt" ; then - rm -f config/License.txt -fi -if test -e config/e.out ; then - rm -f e.out -fi - - - - - ac_config_files="$ac_config_files Makefile Cantera/Makefile Cantera/src/Makefile Cantera/src/base/Makefile Cantera/src/zeroD/Makefile Cantera/src/oneD/Makefile Cantera/src/converters/Makefile Cantera/src/transport/Makefile Cantera/src/thermo/Makefile Cantera/src/kinetics/Makefile Cantera/src/numerics/Makefile Cantera/src/spectra/Makefile Cantera/src/equil/Makefile Cantera/clib/src/Makefile Cantera/fortran/src/Makefile Cantera/fortran/f77demos/f77demos.mak Cantera/fortran/f77demos/Makefile Cantera/matlab/Makefile Cantera/matlab/setup_matlab.py Cantera/python/Makefile Cantera/python/setup.py Cantera/cxx/Makefile Cantera/cxx/src/Makefile Cantera/cxx/demos/Makefile Cantera/cxx/demos/combustor/Makefile Cantera/cxx/demos/combustor/Makefile.install Cantera/cxx/demos/flamespeed/Makefile Cantera/cxx/demos/flamespeed/Makefile.install Cantera/cxx/demos/kinetics1/Makefile Cantera/cxx/demos/kinetics1/Makefile.install Cantera/cxx/demos/NASA_coeffs/Makefile Cantera/cxx/demos/NASA_coeffs/Makefile.install Cantera/cxx/demos/rankine/Makefile Cantera/cxx/demos/rankine/Makefile.install Cantera/cxx/include/Cantera.mak Cantera/cxx/include/Cantera_bt.mak Cantera/user/Makefile Cantera/python/src/Makefile Cantera/python/examples/Makefile Cantera/python/examples/equilibrium/Makefile Cantera/python/examples/equilibrium/adiabatic_flame/Makefile Cantera/python/examples/equilibrium/multiphase_plasma/Makefile Cantera/python/examples/equilibrium/simple_test/Makefile Cantera/python/examples/equilibrium/stoich_flame/Makefile Cantera/python/examples/gasdynamics/isentropic/Makefile Cantera/python/examples/gasdynamics/soundSpeed/Makefile Cantera/python/examples/flames/adiabatic_flame/Makefile Cantera/python/examples/flames/flame1/Makefile Cantera/python/examples/flames/flame2/Makefile Cantera/python/examples/flames/flame_fixed_T/Makefile Cantera/python/examples/flames/free_h2_air/Makefile Cantera/python/examples/flames/npflame1/Makefile Cantera/python/examples/flames/stflame1/Makefile Cantera/python/examples/fuel_cells/Makefile Cantera/python/examples/liquid_vapor/critProperties/Makefile Cantera/python/examples/liquid_vapor/rankine/Makefile Cantera/python/examples/kinetics/Makefile Cantera/python/examples/misc/Makefile Cantera/python/examples/reactors/combustor_sim/Makefile Cantera/python/examples/reactors/functors_sim/Makefile Cantera/python/examples/reactors/mix1_sim/Makefile Cantera/python/examples/reactors/mix2_sim/Makefile Cantera/python/examples/reactors/piston_sim/Makefile Cantera/python/examples/reactors/reactor1_sim/Makefile Cantera/python/examples/reactors/reactor2_sim/Makefile Cantera/python/examples/reactors/sensitivity_sim/Makefile Cantera/python/examples/reactors/surf_pfr_sim/Makefile Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile Cantera/python/examples/transport/Makefile Cantera/python/examples/flames/Makefile Cantera/python/examples/gasdynamics/Makefile Cantera/python/examples/liquid_vapor/Makefile Cantera/python/examples/reactors/Makefile Cantera/python/examples/surface_chemistry/Makefile ext/lapack/Makefile ext/blas/Makefile ext/cvode/Makefile ext/math/Makefile ext/recipes/Makefile ext/tpx/Makefile ext/Makefile ext/f2c_libs/Makefile ext/f2c_blas/Makefile ext/f2c_lapack/Makefile ext/f2c_math/Makefile examples/Makefile examples/cxx/Makefile tools/Makefile tools/doc/Cantera.cfg tools/doc/Makefile tools/src/Makefile tools/src/sample.mak tools/src/finish_install.py tools/src/package4mac tools/templates/f77/demo.mak tools/templates/f90/demo.mak tools/templates/cxx/demo.mak tools/testtools/Makefile data/inputs/Makefile data/inputs/mkxml test_problems/Makefile test_problems/cxx_ex/Makefile test_problems/silane_equil/Makefile test_problems/surfkin/Makefile test_problems/spectroscopy/Makefile test_problems/surfSolverTest/Makefile test_problems/diamondSurf/Makefile test_problems/diamondSurf_dupl/Makefile test_problems/ChemEquil_gri_matrix/Makefile test_problems/ChemEquil_gri_pairs/Makefile test_problems/ChemEquil_ionizedGas/Makefile test_problems/ChemEquil_red1/Makefile test_problems/CpJump/Makefile test_problems/mixGasTransport/Makefile test_problems/multiGasTransport/Makefile test_problems/printUtilUnitTest/Makefile test_problems/fracCoeff/Makefile test_problems/negATest/Makefile test_problems/NASA9poly_test/Makefile test_problems/ck2cti_test/Makefile test_problems/ck2cti_test/runtest test_problems/nasa9_reader/Makefile test_problems/nasa9_reader/runtest test_problems/min_python/Makefile test_problems/min_python/minDiamond/Makefile test_problems/min_python/negATest/Makefile test_problems/pureFluidTest/Makefile test_problems/rankine_democxx/Makefile test_problems/python/Makefile test_problems/cathermo/Makefile test_problems/cathermo/issp/Makefile test_problems/cathermo/ims/Makefile test_problems/cathermo/stoichSubSSTP/Makefile test_problems/cathermo/testIAPWS/Makefile test_problems/cathermo/testIAPWSPres/Makefile test_problems/cathermo/testIAPWSTripP/Makefile test_problems/cathermo/testWaterPDSS/Makefile test_problems/cathermo/testWaterTP/Makefile test_problems/cathermo/HMW_test_1/Makefile test_problems/cathermo/HMW_test_3/Makefile test_problems/cathermo/HMW_graph_GvT/Makefile test_problems/cathermo/HMW_graph_GvI/Makefile test_problems/cathermo/HMW_graph_HvT/Makefile test_problems/cathermo/HMW_graph_CpvT/Makefile test_problems/cathermo/HMW_graph_VvT/Makefile test_problems/cathermo/DH_graph_1/Makefile test_problems/cathermo/DH_graph_acommon/Makefile test_problems/cathermo/DH_graph_NM/Makefile test_problems/cathermo/DH_graph_Pitzer/Makefile test_problems/cathermo/DH_graph_bdotak/Makefile test_problems/cathermo/HMW_dupl_test/Makefile test_problems/cathermo/VPissp/Makefile test_problems/cathermo/wtWater/Makefile test_problems/VCSnonideal/Makefile test_problems/VPsilane_test/Makefile test_problems/VPsilane_test/runtest test_problems/VCSnonideal/NaCl_equil/Makefile bin/install_tsc" - - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/; -s/:*\${srcdir}:*/:/; -s/:*@srcdir@:*/:/; -s/^\([^=]*=[ ]*\):*/\1/; -s/:*$//; -s/^[^=]*=[ ]*$//; -}' -fi - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_i=`echo "$ac_i" | - sed 's/\$U\././;s/\.o$//;s/\.obj$//'` - # 2. Add them. - ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" - ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - -: ${CONFIG_STATUS=./config.status} -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 -echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 -echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 -echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - -exec 6>&1 - -# Open the log real soon, to keep \$[0] and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. Logging --version etc. is OK. -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX -} >&5 -cat >&5 <<_CSEOF - -This file was extended by Cantera $as_me 1.7.0, which was -generated by GNU Autoconf 2.59. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -_CSEOF -echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 -echo >&5 -_ACEOF - -# Files that config.status was made for. -if test -n "$ac_config_files"; then - echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_headers"; then - echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_links"; then - echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_commands"; then - echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS -fi - -cat >>$CONFIG_STATUS <<\_ACEOF - -ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. - -Usage: $0 [OPTIONS] [FILE]... - - -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Report bugs to ." -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF -ac_cs_version="\\ -Cantera config.status 1.7.0 -configured by $0, generated by GNU Autoconf 2.59, - with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" - -Copyright (C) 2003 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." -srcdir=$srcdir -INSTALL="$INSTALL" -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "x$1" : 'x\([^=]*\)='` - ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` - ac_shift=: - ;; - -*) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - *) # This is not an option, so the user has probably given explicit - # arguments. - ac_option=$1 - ac_need_defaults=false;; - esac - - case $ac_option in - # Handling of the options. -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --vers* | -V ) - echo "$ac_cs_version"; exit 0 ;; - --he | --h) - # Conflict between --help and --header - { { echo "$as_me:$LINENO: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; };; - --help | --hel | -h ) - echo "$ac_cs_usage"; exit 0 ;; - --debug | --d* | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" - ac_need_defaults=false;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; } ;; - - *) ac_config_targets="$ac_config_targets $1" ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -if \$ac_cs_recheck; then - echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 - exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -fi - -_ACEOF - - - - - -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_config_target in $ac_config_targets -do - case "$ac_config_target" in - # Handling of arguments. - "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "Cantera/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/Makefile" ;; - "Cantera/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/Makefile" ;; - "Cantera/src/base/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/base/Makefile" ;; - "Cantera/src/zeroD/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/zeroD/Makefile" ;; - "Cantera/src/oneD/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/oneD/Makefile" ;; - "Cantera/src/converters/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/converters/Makefile" ;; - "Cantera/src/transport/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/transport/Makefile" ;; - "Cantera/src/thermo/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/thermo/Makefile" ;; - "Cantera/src/kinetics/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/kinetics/Makefile" ;; - "Cantera/src/numerics/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/numerics/Makefile" ;; - "Cantera/src/spectra/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/spectra/Makefile" ;; - "Cantera/src/equil/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/equil/Makefile" ;; - "Cantera/clib/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/clib/src/Makefile" ;; - "Cantera/fortran/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/fortran/src/Makefile" ;; - "Cantera/fortran/f77demos/f77demos.mak" ) CONFIG_FILES="$CONFIG_FILES Cantera/fortran/f77demos/f77demos.mak" ;; - "Cantera/fortran/f77demos/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/fortran/f77demos/Makefile" ;; - "Cantera/matlab/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/matlab/Makefile" ;; - "Cantera/matlab/setup_matlab.py" ) CONFIG_FILES="$CONFIG_FILES Cantera/matlab/setup_matlab.py" ;; - "Cantera/python/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/Makefile" ;; - "Cantera/python/setup.py" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/setup.py" ;; - "Cantera/cxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/Makefile" ;; - "Cantera/cxx/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/src/Makefile" ;; - "Cantera/cxx/demos/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/Makefile" ;; - "Cantera/cxx/demos/combustor/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/combustor/Makefile" ;; - "Cantera/cxx/demos/combustor/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/combustor/Makefile.install" ;; - "Cantera/cxx/demos/flamespeed/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/flamespeed/Makefile" ;; - "Cantera/cxx/demos/flamespeed/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/flamespeed/Makefile.install" ;; - "Cantera/cxx/demos/kinetics1/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/kinetics1/Makefile" ;; - "Cantera/cxx/demos/kinetics1/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/kinetics1/Makefile.install" ;; - "Cantera/cxx/demos/NASA_coeffs/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/NASA_coeffs/Makefile" ;; - "Cantera/cxx/demos/NASA_coeffs/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/NASA_coeffs/Makefile.install" ;; - "Cantera/cxx/demos/rankine/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/rankine/Makefile" ;; - "Cantera/cxx/demos/rankine/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/rankine/Makefile.install" ;; - "Cantera/cxx/include/Cantera.mak" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/include/Cantera.mak" ;; - "Cantera/cxx/include/Cantera_bt.mak" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/include/Cantera_bt.mak" ;; - "Cantera/user/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/user/Makefile" ;; - "Cantera/python/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/src/Makefile" ;; - "Cantera/python/examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/Makefile" ;; - "Cantera/python/examples/equilibrium/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/Makefile" ;; - "Cantera/python/examples/equilibrium/adiabatic_flame/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/adiabatic_flame/Makefile" ;; - "Cantera/python/examples/equilibrium/multiphase_plasma/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/multiphase_plasma/Makefile" ;; - "Cantera/python/examples/equilibrium/simple_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/simple_test/Makefile" ;; - "Cantera/python/examples/equilibrium/stoich_flame/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/stoich_flame/Makefile" ;; - "Cantera/python/examples/gasdynamics/isentropic/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/gasdynamics/isentropic/Makefile" ;; - "Cantera/python/examples/gasdynamics/soundSpeed/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/gasdynamics/soundSpeed/Makefile" ;; - "Cantera/python/examples/flames/adiabatic_flame/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/adiabatic_flame/Makefile" ;; - "Cantera/python/examples/flames/flame1/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/flame1/Makefile" ;; - "Cantera/python/examples/flames/flame2/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/flame2/Makefile" ;; - "Cantera/python/examples/flames/flame_fixed_T/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/flame_fixed_T/Makefile" ;; - "Cantera/python/examples/flames/free_h2_air/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/free_h2_air/Makefile" ;; - "Cantera/python/examples/flames/npflame1/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/npflame1/Makefile" ;; - "Cantera/python/examples/flames/stflame1/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/stflame1/Makefile" ;; - "Cantera/python/examples/fuel_cells/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/fuel_cells/Makefile" ;; - "Cantera/python/examples/liquid_vapor/critProperties/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/liquid_vapor/critProperties/Makefile" ;; - "Cantera/python/examples/liquid_vapor/rankine/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/liquid_vapor/rankine/Makefile" ;; - "Cantera/python/examples/kinetics/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/kinetics/Makefile" ;; - "Cantera/python/examples/misc/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/misc/Makefile" ;; - "Cantera/python/examples/reactors/combustor_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/combustor_sim/Makefile" ;; - "Cantera/python/examples/reactors/functors_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/functors_sim/Makefile" ;; - "Cantera/python/examples/reactors/mix1_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/mix1_sim/Makefile" ;; - "Cantera/python/examples/reactors/mix2_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/mix2_sim/Makefile" ;; - "Cantera/python/examples/reactors/piston_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/piston_sim/Makefile" ;; - "Cantera/python/examples/reactors/reactor1_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/reactor1_sim/Makefile" ;; - "Cantera/python/examples/reactors/reactor2_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/reactor2_sim/Makefile" ;; - "Cantera/python/examples/reactors/sensitivity_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/sensitivity_sim/Makefile" ;; - "Cantera/python/examples/reactors/surf_pfr_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/surf_pfr_sim/Makefile" ;; - "Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile" ;; - "Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile" ;; - "Cantera/python/examples/transport/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/transport/Makefile" ;; - "Cantera/python/examples/flames/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/Makefile" ;; - "Cantera/python/examples/gasdynamics/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/gasdynamics/Makefile" ;; - "Cantera/python/examples/liquid_vapor/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/liquid_vapor/Makefile" ;; - "Cantera/python/examples/reactors/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/Makefile" ;; - "Cantera/python/examples/surface_chemistry/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/surface_chemistry/Makefile" ;; - "ext/lapack/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/lapack/Makefile" ;; - "ext/blas/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/blas/Makefile" ;; - "ext/cvode/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/cvode/Makefile" ;; - "ext/math/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/math/Makefile" ;; - "ext/recipes/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/recipes/Makefile" ;; - "ext/tpx/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/tpx/Makefile" ;; - "ext/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/Makefile" ;; - "ext/f2c_libs/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/f2c_libs/Makefile" ;; - "ext/f2c_blas/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/f2c_blas/Makefile" ;; - "ext/f2c_lapack/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/f2c_lapack/Makefile" ;; - "ext/f2c_math/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/f2c_math/Makefile" ;; - "examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; - "examples/cxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/cxx/Makefile" ;; - "tools/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; - "tools/doc/Cantera.cfg" ) CONFIG_FILES="$CONFIG_FILES tools/doc/Cantera.cfg" ;; - "tools/doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/doc/Makefile" ;; - "tools/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/src/Makefile" ;; - "tools/src/sample.mak" ) CONFIG_FILES="$CONFIG_FILES tools/src/sample.mak" ;; - "tools/src/finish_install.py" ) CONFIG_FILES="$CONFIG_FILES tools/src/finish_install.py" ;; - "tools/src/package4mac" ) CONFIG_FILES="$CONFIG_FILES tools/src/package4mac" ;; - "tools/templates/f77/demo.mak" ) CONFIG_FILES="$CONFIG_FILES tools/templates/f77/demo.mak" ;; - "tools/templates/f90/demo.mak" ) CONFIG_FILES="$CONFIG_FILES tools/templates/f90/demo.mak" ;; - "tools/templates/cxx/demo.mak" ) CONFIG_FILES="$CONFIG_FILES tools/templates/cxx/demo.mak" ;; - "tools/testtools/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/testtools/Makefile" ;; - "data/inputs/Makefile" ) CONFIG_FILES="$CONFIG_FILES data/inputs/Makefile" ;; - "data/inputs/mkxml" ) CONFIG_FILES="$CONFIG_FILES data/inputs/mkxml" ;; - "test_problems/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/Makefile" ;; - "test_problems/cxx_ex/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cxx_ex/Makefile" ;; - "test_problems/silane_equil/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/silane_equil/Makefile" ;; - "test_problems/surfkin/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/surfkin/Makefile" ;; - "test_problems/spectroscopy/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/spectroscopy/Makefile" ;; - "test_problems/surfSolverTest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/surfSolverTest/Makefile" ;; - "test_problems/diamondSurf/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/diamondSurf/Makefile" ;; - "test_problems/diamondSurf_dupl/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/diamondSurf_dupl/Makefile" ;; - "test_problems/ChemEquil_gri_matrix/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ChemEquil_gri_matrix/Makefile" ;; - "test_problems/ChemEquil_gri_pairs/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ChemEquil_gri_pairs/Makefile" ;; - "test_problems/ChemEquil_ionizedGas/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ChemEquil_ionizedGas/Makefile" ;; - "test_problems/ChemEquil_red1/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ChemEquil_red1/Makefile" ;; - "test_problems/CpJump/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/CpJump/Makefile" ;; - "test_problems/mixGasTransport/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/mixGasTransport/Makefile" ;; - "test_problems/multiGasTransport/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/multiGasTransport/Makefile" ;; - "test_problems/printUtilUnitTest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/printUtilUnitTest/Makefile" ;; - "test_problems/fracCoeff/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/fracCoeff/Makefile" ;; - "test_problems/negATest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/negATest/Makefile" ;; - "test_problems/NASA9poly_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/NASA9poly_test/Makefile" ;; - "test_problems/ck2cti_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ck2cti_test/Makefile" ;; - "test_problems/ck2cti_test/runtest" ) CONFIG_FILES="$CONFIG_FILES test_problems/ck2cti_test/runtest" ;; - "test_problems/nasa9_reader/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/nasa9_reader/Makefile" ;; - "test_problems/nasa9_reader/runtest" ) CONFIG_FILES="$CONFIG_FILES test_problems/nasa9_reader/runtest" ;; - "test_problems/min_python/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/min_python/Makefile" ;; - "test_problems/min_python/minDiamond/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/min_python/minDiamond/Makefile" ;; - "test_problems/min_python/negATest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/min_python/negATest/Makefile" ;; - "test_problems/pureFluidTest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/pureFluidTest/Makefile" ;; - "test_problems/rankine_democxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/rankine_democxx/Makefile" ;; - "test_problems/python/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/python/Makefile" ;; - "test_problems/cathermo/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/Makefile" ;; - "test_problems/cathermo/issp/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/issp/Makefile" ;; - "test_problems/cathermo/ims/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/ims/Makefile" ;; - "test_problems/cathermo/stoichSubSSTP/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/stoichSubSSTP/Makefile" ;; - "test_problems/cathermo/testIAPWS/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testIAPWS/Makefile" ;; - "test_problems/cathermo/testIAPWSPres/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testIAPWSPres/Makefile" ;; - "test_problems/cathermo/testIAPWSTripP/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testIAPWSTripP/Makefile" ;; - "test_problems/cathermo/testWaterPDSS/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testWaterPDSS/Makefile" ;; - "test_problems/cathermo/testWaterTP/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testWaterTP/Makefile" ;; - "test_problems/cathermo/HMW_test_1/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_test_1/Makefile" ;; - "test_problems/cathermo/HMW_test_3/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_test_3/Makefile" ;; - "test_problems/cathermo/HMW_graph_GvT/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_GvT/Makefile" ;; - "test_problems/cathermo/HMW_graph_GvI/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_GvI/Makefile" ;; - "test_problems/cathermo/HMW_graph_HvT/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_HvT/Makefile" ;; - "test_problems/cathermo/HMW_graph_CpvT/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_CpvT/Makefile" ;; - "test_problems/cathermo/HMW_graph_VvT/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_VvT/Makefile" ;; - "test_problems/cathermo/DH_graph_1/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_1/Makefile" ;; - "test_problems/cathermo/DH_graph_acommon/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_acommon/Makefile" ;; - "test_problems/cathermo/DH_graph_NM/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_NM/Makefile" ;; - "test_problems/cathermo/DH_graph_Pitzer/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_Pitzer/Makefile" ;; - "test_problems/cathermo/DH_graph_bdotak/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_bdotak/Makefile" ;; - "test_problems/cathermo/HMW_dupl_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_dupl_test/Makefile" ;; - "test_problems/cathermo/VPissp/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/VPissp/Makefile" ;; - "test_problems/cathermo/wtWater/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/wtWater/Makefile" ;; - "test_problems/VCSnonideal/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/VCSnonideal/Makefile" ;; - "test_problems/VPsilane_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/VPsilane_test/Makefile" ;; - "test_problems/VPsilane_test/runtest" ) CONFIG_FILES="$CONFIG_FILES test_problems/VPsilane_test/runtest" ;; - "test_problems/VCSnonideal/NaCl_equil/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/VCSnonideal/NaCl_equil/Makefile" ;; - "bin/install_tsc" ) CONFIG_FILES="$CONFIG_FILES bin/install_tsc" ;; - "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; - esac -done - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason to put it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Create a temporary directory, and hook for its removal unless debugging. -$debug || -{ - trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 -} - -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./confstat$$-$RANDOM - (umask 077 && mkdir $tmp) -} || -{ - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} - -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF - -# -# CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "\$CONFIG_FILES"; then - # Protect against being on the right side of a sed subst in config.status. - sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; - s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF -s,@SHELL@,$SHELL,;t t -s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t -s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t -s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t -s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t -s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t -s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t -s,@exec_prefix@,$exec_prefix,;t t -s,@prefix@,$prefix,;t t -s,@program_transform_name@,$program_transform_name,;t t -s,@bindir@,$bindir,;t t -s,@sbindir@,$sbindir,;t t -s,@libexecdir@,$libexecdir,;t t -s,@datadir@,$datadir,;t t -s,@sysconfdir@,$sysconfdir,;t t -s,@sharedstatedir@,$sharedstatedir,;t t -s,@localstatedir@,$localstatedir,;t t -s,@libdir@,$libdir,;t t -s,@includedir@,$includedir,;t t -s,@oldincludedir@,$oldincludedir,;t t -s,@infodir@,$infodir,;t t -s,@mandir@,$mandir,;t t -s,@build_alias@,$build_alias,;t t -s,@host_alias@,$host_alias,;t t -s,@target_alias@,$target_alias,;t t -s,@DEFS@,$DEFS,;t t -s,@ECHO_C@,$ECHO_C,;t t -s,@ECHO_N@,$ECHO_N,;t t -s,@ECHO_T@,$ECHO_T,;t t -s,@LIBS@,$LIBS,;t t -s,@BITCOMPILE@,$BITCOMPILE,;t t -s,@BITHARDWARE@,$BITHARDWARE,;t t -s,@BITCHANGE@,$BITCHANGE,;t t -s,@ldemulationarg@,$ldemulationarg,;t t -s,@CVF_LIBDIR@,$CVF_LIBDIR,;t t -s,@USE_CLIB_DLL@,$USE_CLIB_DLL,;t t -s,@local_inst@,$local_inst,;t t -s,@local_python_inst@,$local_python_inst,;t t -s,@python_prefix@,$python_prefix,;t t -s,@python_win_prefix@,$python_win_prefix,;t t -s,@ctversion@,$ctversion,;t t -s,@homedir@,$homedir,;t t -s,@ct_libdir@,$ct_libdir,;t t -s,@ct_bindir@,$ct_bindir,;t t -s,@ct_incdir@,$ct_incdir,;t t -s,@ct_incroot@,$ct_incroot,;t t -s,@ct_datadir@,$ct_datadir,;t t -s,@ct_demodir@,$ct_demodir,;t t -s,@ct_templdir@,$ct_templdir,;t t -s,@ct_tutdir@,$ct_tutdir,;t t -s,@ct_docdir@,$ct_docdir,;t t -s,@ct_dir@,$ct_dir,;t t -s,@ct_mandir@,$ct_mandir,;t t -s,@build@,$build,;t t -s,@build_cpu@,$build_cpu,;t t -s,@build_vendor@,$build_vendor,;t t -s,@build_os@,$build_os,;t t -s,@host@,$host,;t t -s,@host_cpu@,$host_cpu,;t t -s,@host_vendor@,$host_vendor,;t t -s,@host_os@,$host_os,;t t -s,@target@,$target,;t t -s,@target_cpu@,$target_cpu,;t t -s,@target_vendor@,$target_vendor,;t t -s,@target_os@,$target_os,;t t -s,@username@,$username,;t t -s,@ctroot@,$ctroot,;t t -s,@buildinc@,$buildinc,;t t -s,@buildlib@,$buildlib,;t t -s,@buildbin@,$buildbin,;t t -s,@MAKE@,$MAKE,;t t -s,@GRAPHVIZDIR@,$GRAPHVIZDIR,;t t -s,@ARCHIVE@,$ARCHIVE,;t t -s,@DO_RANLIB@,$DO_RANLIB,;t t -s,@RANLIB@,$RANLIB,;t t -s,@CXX_DEPENDS@,$CXX_DEPENDS,;t t -s,@USERDIR@,$USERDIR,;t t -s,@INCL_USER_CODE@,$INCL_USER_CODE,;t t -s,@CXX@,$CXX,;t t -s,@CXXFLAGS@,$CXXFLAGS,;t t -s,@LDFLAGS@,$LDFLAGS,;t t -s,@CPPFLAGS@,$CPPFLAGS,;t t -s,@ac_ct_CXX@,$ac_ct_CXX,;t t -s,@EXEEXT@,$EXEEXT,;t t -s,@OBJEXT@,$OBJEXT,;t t -s,@use_sundials@,$use_sundials,;t t -s,@CVODE_LIBS@,$CVODE_LIBS,;t t -s,@IDA_LIBS@,$IDA_LIBS,;t t -s,@sundials_include@,$sundials_include,;t t -s,@sundials_lib_dir@,$sundials_lib_dir,;t t -s,@sundials_lib@,$sundials_lib,;t t -s,@sundials_lib_dep@,$sundials_lib_dep,;t t -s,@CANTERA_DEBUG_MODE@,$CANTERA_DEBUG_MODE,;t t -s,@COMPILE_PURE_FLUIDS@,$COMPILE_PURE_FLUIDS,;t t -s,@phase_object_files@,$phase_object_files,;t t -s,@phase_header_files@,$phase_header_files,;t t -s,@COMPILE_IDEAL_SOLUTIONS@,$COMPILE_IDEAL_SOLUTIONS,;t t -s,@COMPILE_ELECTROLYTES@,$COMPILE_ELECTROLYTES,;t t -s,@NEED_CATHERMO@,$NEED_CATHERMO,;t t -s,@COMPILE_KINETICS@,$COMPILE_KINETICS,;t t -s,@COMPILE_HETEROKIN@,$COMPILE_HETEROKIN,;t t -s,@COMPILE_RXNPATH@,$COMPILE_RXNPATH,;t t -s,@WITH_REACTORS@,$WITH_REACTORS,;t t -s,@KERNEL@,$KERNEL,;t t -s,@KERNEL_OBJ@,$KERNEL_OBJ,;t t -s,@BUILD_CK@,$BUILD_CK,;t t -s,@LIB_DIR@,$LIB_DIR,;t t -s,@COMPILE_VCSNONIDEAL@,$COMPILE_VCSNONIDEAL,;t t -s,@COMPILE_H298MODIFY_CAPABILITY@,$COMPILE_H298MODIFY_CAPABILITY,;t t -s,@BOOST_INCLUDE@,$BOOST_INCLUDE,;t t -s,@BOOST_LIB@,$BOOST_LIB,;t t -s,@PURIFY@,$PURIFY,;t t -s,@build_lapack@,$build_lapack,;t t -s,@build_blas@,$build_blas,;t t -s,@BLAS_LAPACK_LIBS@,$BLAS_LAPACK_LIBS,;t t -s,@BLAS_LAPACK_LINK@,$BLAS_LAPACK_LINK,;t t -s,@BLAS_LAPACK_DIR@,$BLAS_LAPACK_DIR,;t t -s,@build_with_f2c@,$build_with_f2c,;t t -s,@build_f2c_lib@,$build_f2c_lib,;t t -s,@F2C_SYSTEMLIB@,$F2C_SYSTEMLIB,;t t -s,@BOOST_LIB_DIR@,$BOOST_LIB_DIR,;t t -s,@LOCAL_LIB_DIRS@,$LOCAL_LIB_DIRS,;t t -s,@LOCAL_LIBS@,$LOCAL_LIBS,;t t -s,@LOCAL_LIBS_DEP@,$LOCAL_LIBS_DEP,;t t -s,@INSTALL_LIBS_DEP@,$INSTALL_LIBS_DEP,;t t -s,@RAW_LIBS_DEP@,$RAW_LIBS_DEP,;t t -s,@CANTERA_CORE_LIBS@,$CANTERA_CORE_LIBS,;t t -s,@CANTERA_CORE_LIBS_DEP@,$CANTERA_CORE_LIBS_DEP,;t t -s,@CT_SHARED_LIB@,$CT_SHARED_LIB,;t t -s,@PYTHON_CMD@,$PYTHON_CMD,;t t -s,@BUILD_PYTHON@,$BUILD_PYTHON,;t t -s,@NUMPY_INC_DIR@,$NUMPY_INC_DIR,;t t -s,@NUMPY_HOME@,$NUMPY_HOME,;t t -s,@NUMARRAY_INC_DIR@,$NUMARRAY_INC_DIR,;t t -s,@NUMARRAY_HOME@,$NUMARRAY_HOME,;t t -s,@CANTERA_PYTHON_HOME@,$CANTERA_PYTHON_HOME,;t t -s,@CVSTAG@,$CVSTAG,;t t -s,@MATLAB_CMD@,$MATLAB_CMD,;t t -s,@BUILD_MATLAB@,$BUILD_MATLAB,;t t -s,@BUILD_CLIB@,$BUILD_CLIB,;t t -s,@export_name@,$export_name,;t t -s,@PIC@,$PIC,;t t -s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t -s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t -s,@INSTALL_DATA@,$INSTALL_DATA,;t t -s,@CC@,$CC,;t t -s,@CFLAGS@,$CFLAGS,;t t -s,@ac_ct_CC@,$ac_ct_CC,;t t -s,@CXXCPP@,$CXXCPP,;t t -s,@EGREP@,$EGREP,;t t -s,@SOEXT@,$SOEXT,;t t -s,@SHARED@,$SHARED,;t t -s,@CXX_INCLUDES@,$CXX_INCLUDES,;t t -s,@LCXX_FLAGS@,$LCXX_FLAGS,;t t -s,@LCXX_END_LIBS@,$LCXX_END_LIBS,;t t -s,@HAVE_STRIPSYMBOLS@,$HAVE_STRIPSYMBOLS,;t t -s,@F77@,$F77,;t t -s,@FFLAGS@,$FFLAGS,;t t -s,@ac_ct_F77@,$ac_ct_F77,;t t -s,@FLIBS@,$FLIBS,;t t -s,@F90@,$F90,;t t -s,@BUILD_F90@,$BUILD_F90,;t t -s,@F90FLAGS@,$F90FLAGS,;t t -s,@F90BUILDFLAGS@,$F90BUILDFLAGS,;t t -s,@F90LIBS@,$F90LIBS,;t t -s,@LCXX_FLIBS@,$LCXX_FLIBS,;t t -s,@precompile_headers@,$precompile_headers,;t t -s,@OS_IS_DARWIN@,$OS_IS_DARWIN,;t t -s,@OS_IS_WIN@,$OS_IS_WIN,;t t -s,@OS_IS_CYGWIN@,$OS_IS_CYGWIN,;t t -s,@SHARED_CTLIB@,$SHARED_CTLIB,;t t -s,@mex_ext@,$mex_ext,;t t -s,@F77_EXT@,$F77_EXT,;t t -s,@CXX_EXT@,$CXX_EXT,;t t -s,@OBJ_EXT@,$OBJ_EXT,;t t -s,@EXE_EXT@,$EXE_EXT,;t t -s,@math_libs@,$math_libs,;t t -s,@SO@,$SO,;t t -s,@LDSHARED@,$LDSHARED,;t t -s,@EXTRA_LINK@,$EXTRA_LINK,;t t -s,@TSCOMPARE_abs@,$TSCOMPARE_abs,;t t -s,@INSTALL_abs@,$INSTALL_abs,;t t -s,@INSTALL_VERBOSE@,$INSTALL_VERBOSE,;t t -s,@LIBOBJS@,$LIBOBJS,;t t -s,@LTLIBOBJS@,$LTLIBOBJS,;t t -CEOF - -_ACEOF - - cat >>$CONFIG_STATUS <<\_ACEOF - # Split the substitutions into bite-sized pieces for seds with - # small command number limits, like on Digital OSF/1 and HP-UX. - ac_max_sed_lines=48 - ac_sed_frag=1 # Number of current file. - ac_beg=1 # First line for current file. - ac_end=$ac_max_sed_lines # Line after last line for current file. - ac_more_lines=: - ac_sed_cmds= - while $ac_more_lines; do - if test $ac_beg -gt 1; then - sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - else - sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - fi - if test ! -s $tmp/subs.frag; then - ac_more_lines=false - else - # The purpose of the label and of the branching condition is to - # speed up the sed processing (if there are no `@' at all, there - # is no need to browse any of the substitutions). - # These are the two extra sed commands mentioned above. - (echo ':t - /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed - if test -z "$ac_sed_cmds"; then - ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" - else - ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" - fi - ac_sed_frag=`expr $ac_sed_frag + 1` - ac_beg=$ac_end - ac_end=`expr $ac_end + $ac_max_sed_lines` - fi - done - if test -z "$ac_sed_cmds"; then - ac_sed_cmds=cat - fi -fi # test -n "$CONFIG_FILES" - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac - - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_builddir$INSTALL ;; - esac - - if test x"$ac_file" != x-; then - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - rm -f "$ac_file" - fi - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - configure_input= - else - configure_input="$ac_file. " - fi - configure_input=$configure_input"Generated from `echo $ac_file_in | - sed 's,.*/,,'` by configure." - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - echo "$f";; - *) # Relative - if test -f "$f"; then - # Build tree - echo "$f" - elif test -f "$srcdir/$f"; then - # Source tree - echo "$srcdir/$f" - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF - sed "$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s,@configure_input@,$configure_input,;t t -s,@srcdir@,$ac_srcdir,;t t -s,@abs_srcdir@,$ac_abs_srcdir,;t t -s,@top_srcdir@,$ac_top_srcdir,;t t -s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t -s,@builddir@,$ac_builddir,;t t -s,@abs_builddir@,$ac_abs_builddir,;t t -s,@top_builddir@,$ac_top_builddir,;t t -s,@abs_top_builddir@,$ac_abs_top_builddir,;t t -s,@INSTALL@,$ac_INSTALL,;t t -" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out - rm -f $tmp/stdin - if test x"$ac_file" != x-; then - mv $tmp/out $ac_file - else - cat $tmp/out - rm -f $tmp/out - fi - -done -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -# -# CONFIG_HEADER section. -# - -# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where -# NAME is the cpp macro being defined and VALUE is the value it is being given. -# -# ac_d sets the value in "#define NAME VALUE" lines. -ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' -ac_dB='[ ].*$,\1#\2' -ac_dC=' ' -ac_dD=',;t' -# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". -ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' -ac_uB='$,\1#\2define\3' -ac_uC=' ' -ac_uD=',;t' - -for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - # Do quote $f, to prevent DOS paths from being IFS'd. - echo "$f";; - *) # Relative - if test -f "$f"; then - # Build tree - echo "$f" - elif test -f "$srcdir/$f"; then - # Source tree - echo "$srcdir/$f" - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } - # Remove the trailing spaces. - sed 's/[ ]*$//' $ac_file_inputs >$tmp/in - -_ACEOF - -# Transform confdefs.h into two sed scripts, `conftest.defines' and -# `conftest.undefs', that substitutes the proper values into -# config.h.in to produce config.h. The first handles `#define' -# templates, and the second `#undef' templates. -# And first: Protect against being on the right side of a sed subst in -# config.status. Protect against being in an unquoted here document -# in config.status. -rm -f conftest.defines conftest.undefs -# Using a here document instead of a string reduces the quoting nightmare. -# Putting comments in sed scripts is not portable. -# -# `end' is used to avoid that the second main sed command (meant for -# 0-ary CPP macros) applies to n-ary macro definitions. -# See the Autoconf documentation for `clear'. -cat >confdef2sed.sed <<\_ACEOF -s/[\\&,]/\\&/g -s,[\\$`],\\&,g -t clear -: clear -s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp -t end -s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp -: end -_ACEOF -# If some macros were called several times there might be several times -# the same #defines, which is useless. Nevertheless, we may not want to -# sort them, since we want the *last* AC-DEFINE to be honored. -uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines -sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs -rm -f confdef2sed.sed - -# This sed command replaces #undef with comments. This is necessary, for -# example, in the case of _POSIX_SOURCE, which is predefined and required -# on some systems where configure will not decide to define it. -cat >>conftest.undefs <<\_ACEOF -s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, -_ACEOF - -# Break up conftest.defines because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS -echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS -echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS -echo ' :' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.defines >/dev/null -do - # Write a limited-size here document to $tmp/defines.sed. - echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS - # Speed up: don't consider the non `#define' lines. - echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS - # Work around the forget-to-reset-the-flag bug. - echo 't clr' >>$CONFIG_STATUS - echo ': clr' >>$CONFIG_STATUS - sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS - echo 'CEOF - sed -f $tmp/defines.sed $tmp/in >$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in -' >>$CONFIG_STATUS - sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail - rm -f conftest.defines - mv conftest.tail conftest.defines -done -rm -f conftest.defines -echo ' fi # grep' >>$CONFIG_STATUS -echo >>$CONFIG_STATUS - -# Break up conftest.undefs because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo ' # Handle all the #undef templates' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.undefs >/dev/null -do - # Write a limited-size here document to $tmp/undefs.sed. - echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS - # Speed up: don't consider the non `#undef' - echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS - # Work around the forget-to-reset-the-flag bug. - echo 't clr' >>$CONFIG_STATUS - echo ': clr' >>$CONFIG_STATUS - sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS - echo 'CEOF - sed -f $tmp/undefs.sed $tmp/in >$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in -' >>$CONFIG_STATUS - sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail - rm -f conftest.undefs - mv conftest.tail conftest.undefs -done -rm -f conftest.undefs - -cat >>$CONFIG_STATUS <<\_ACEOF - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - echo "/* Generated by configure. */" >$tmp/config.h - else - echo "/* $ac_file. Generated by configure. */" >$tmp/config.h - fi - cat $tmp/in >>$tmp/config.h - rm -f $tmp/in - if test x"$ac_file" != x-; then - if diff $ac_file $tmp/config.h >/dev/null 2>&1; then - { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} - else - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - rm -f $ac_file - mv $tmp/config.h $ac_file - fi - else - cat $tmp/config.h - rm -f $tmp/config.h - fi -done -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF - -{ (exit 0); exit 0; } -_ACEOF -chmod +x $CONFIG_STATUS -ac_clean_files=$ac_clean_files_save - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || { (exit 1); exit 1; } -fi - -# ) -if test "x${OS_IS_WIN}" = "x1"; then - cp -f config.h winconfig.h - echo 'copying config.h, which we just customized for the requested configuration, to winconfg.h' - cd ext/f2c_libs - cp arith.hwin32 arith.h - cd ../.. -fi -if test -f "test_problems/ck2cti_test/runtest"; then - chmod +x test_problems/ck2cti_test/runtest -fi -if test -f "test_problems/nasa9_reader/runtest"; then - chmod +x test_problems/nasa9_reader/runtest -fi -if test -f "test_problems/VPsilane_test/runtest"; then - chmod +x test_problems/VPsilane_test/runtest -fi -if test -f "Cantera/python/examples/equilibrium/adiabatic_flame/runtest"; then - chmod +x Cantera/python/examples/equilibrium/adiabatic_flame/runtest -fi -if test -f "Cantera/python/examples/equilibrium/multiphase_plasma/runtest"; then - chmod +x Cantera/python/examples/equilibrium/multiphase_plasma/runtest -fi -if test -f "Cantera/python/examples/equilibrium/simple_test/runtest"; then - chmod +x Cantera/python/examples/equilibrium/simple_test/runtest -fi -if test -f "Cantera/python/examples/equilibrium/stoich_flame/runtest"; then - chmod +x Cantera/python/examples/equilibrium/stoich_flame/runtest -fi -if test -f "Cantera/python/examples/gasdynamics/isentropic/runtest"; then - chmod +x Cantera/python/examples/gasdynamics/isentropic/runtest -fi -if test -f "Cantera/python/examples/gasdynamics/soundSpeed/runtest"; then - chmod +x Cantera/python/examples/gasdynamics/soundSpeed/runtest -fi -if test -f "Cantera/python/examples/flames/adiabatic_flame/runtest"; then - chmod +x Cantera/python/examples/flames/adiabatic_flame/runtest -fi -if test -f "Cantera/python/examples/flames/flame1/runtest"; then - chmod +x Cantera/python/examples/flames/flame1/runtest -fi -if test -f "Cantera/python/examples/flames/flame2/runtest"; then - chmod +x Cantera/python/examples/flames/flame2/runtest -fi -if test -f "Cantera/python/examples/flames/flame_fixed_T/runtest"; then - chmod +x Cantera/python/examples/flames/flame_fixed_T/runtest -fi -if test -f "Cantera/python/examples/flames/free_h2_air/runtest"; then - chmod +x Cantera/python/examples/flames/free_h2_air/runtest -fi -if test -f "Cantera/python/examples/flames/npflame1/runtest"; then - chmod +x Cantera/python/examples/flames/npflame1/runtest -fi -if test -f "Cantera/python/examples/flames/stflame1/runtest"; then - chmod +x Cantera/python/examples/flames/stflame1/runtest -fi -if test -f "Cantera/python/examples/fuel_cells/runtest"; then - chmod +x Cantera/python/examples/fuel_cells/runtest -fi -if test -f "Cantera/python/examples/liquid_vapor/critProperties/runtest"; then - chmod +x Cantera/python/examples/liquid_vapor/critProperties/runtest -fi -if test -f "Cantera/python/examples/liquid_vapor/rankine/runtest"; then - chmod +x Cantera/python/examples/liquid_vapor/rankine/runtest -fi -if test -f "Cantera/python/examples/kinetics/runtest"; then - chmod +x Cantera/python/examples/kinetics/runtest -fi -if test -f "Cantera/python/examples/misc/runtest"; then - chmod +x Cantera/python/examples/misc/runtest -fi -if test -f "Cantera/python/examples/reactors/combustor_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/combustor_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/mix1_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/mix1_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/mix2_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/mix2_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/piston_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/piston_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/reactor1_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/reactor1_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/reactor2_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/reactor2_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/sensitivity_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/sensitivity_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/surf_pfr_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/surf_pfr_sim/runtest -fi -if test -f "Cantera/python/examples/surface_chemistry/diamond_cvd/runtest"; then - chmod +x Cantera/python/examples/surface_chemistry/diamond_cvd/runtest -fi -if test -f "Cantera/python/examples/surface_chemistry/catcomb_stagflow/runtest"; then - chmod +x Cantera/python/examples/surface_chemistry/catcomb_stagflow/runtest -fi -if test -f "Cantera/python/examples/transport/runtest"; then - chmod +x Cantera/python/examples/transport/runtest -fi -if test -f "bin/install_tsc"; then - chmod +x bin/install_tsc -fi -if test -f "data/inputs/mkxml"; then - chmod +x data/inputs/mkxml -fi - - -echo -if test "x${OS_IS_WIN}" = "x0"; then - echo "Now type '${MAKE}' to build Cantera" -else - echo "Now start Visual Studio, open workspace 'win32/vc9/cantera.sln'," - echo "and build project 'all'. " -# echo " When this finishes, come back here and " -# echo "type 'make win' to make the Python and/or MATLAB interfaces." -fi -echo - diff --git a/configure.in b/configure.in deleted file mode 100755 index 8631f8b89..000000000 --- a/configure.in +++ /dev/null @@ -1,2105 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. -define([AC_CACHE_LOAD], )dnl -define([AC_CACHE_SAVE], )dnl -AC_INIT(Cantera,1.7.0) -AC_CONFIG_HEADER(config.h) -# AC_CONFIG_AUX_DIR(.) -# AC_CONFIG_SRCDIR(./License.txt) -AC_CONFIG_AUX_DIR(config) - -if test -z $CANTERA_VERSION ; then - echo - echo ">>>>> Error <<<<<" - echo - echo "Run script 'preconfig', instead of running 'configure'" - echo "directly. The 'preconfig' script sets various variable values" - echo "needed by 'configure' and then runs 'configure.' You may want to" - echo "edit 'preconfig' first, to set various installation options." - echo - exit 1 -fi - - -echo " " -echo "--------------------------------------------------------------" -echo " " -echo " Cantera "$CANTERA_VERSION -echo " Configuration Script " -echo " " -echo "--------------------------------------------------------------" -echo " " - -AC_DEFINE(NDEBUG) - -ac_sys_system=`uname -s` -ac_sys_release=`uname -r` - -# moved since MacOS deosn't support -i option -#sys_hardware=`uname -i` - -# -# Determine the number of hardware bits in the system -# -# -# BITHARDWARE is the default number of compilation bits in pointers -# -case $ac_sys_system in - Linux* ) - sys_hardware=`uname -i` - echo 'linux ' $sys_hardware - case $sys_hardware in - x86_64 ) BITHARDWARE=64 ;; - - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - SunOS* ) - sys_hardware=`uname -i` - echo 'SunOS ' $sys_hardware - case $sys_hardware in - "SUNW,Sun-Fire" ) BITHARDWARE=64 ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; -esac -# -# BITCOMPILE is the desired number of compilation bits in pointers -# Note, it can be different than the number of hardware bits. -# Many times you will want to compile 32 bits on a 64 bit -# machine -if test -z $BITCOMPILE ; then - BITCOMPILE=$BITHARDWARE -fi - -BITCHANGE= -if test $BITCOMPILE != $BITHARDWARE ; then - BITCHANGE='y' -fi - - -AC_SUBST(BITCOMPILE) -AC_SUBST(BITHARDWARE) -AC_SUBST(BITCHANGE) - - -SHARED_CTLIB=0 -OS_IS_DARWIN=0 -OS_IS_WIN=0 -OS_IS_CYGWIN=0 -OS_IS_SOLARIS=0 -EXTRA_LINK=${EXTRA_LINK:=""} - -# default Matlab MEX file extension -mex_ext=mexglx - -case $ac_sys_system in - Darwin*) OS_IS_DARWIN=1; - hardware=`uname -m`; - EXTRA_LINK="-framework Accelerate $EXTRA_LINK"; - #mex_ext=mexmac; - #if test "$hardware" = "i386" ; then - # mex_ext=mexmaci - ;;#fi;; - CYGWIN*) OS_IS_CYGWIN=1; mex_ext=mexw32;; - SunOS*) OS_IS_SOLARIS=1;; - Linux* ) case $BITHARDWARE in - 64 ) if test "$BITCHANGE" = "y" ; then - ldemulationarg='-melf_i386' - fi ;; - esac -esac - -AC_SUBST(ldemulationarg) - - -CVF_LIBDIR="" -if test "x${OS_IS_CYGWIN}" = "x1"; then - if test "${USE_VISUAL_STUDIO}" = "y"; then - OS_IS_WIN=1; - OS_IS_CYGWIN=0; - CVF_LIBDIR=$FORTRAN_LIB_DIR - fi -fi -AC_SUBST(CVF_LIBDIR) - -# -# Determine if clib is to be a static or dynamic library -# -> will test to see if USE_DLL is defined in the cygwmin environment -# -USE_CLIB_DLL=0 -if test "x${OS_IS_WIN}" = "x1"; then - if test -n ${USE_CLIB_DLL} ; then - USE_CLIB_DLL=1 - fi -fi -AC_SUBST(USE_CLIB_DLL) - -prdef="/usr/local/cantera" -if test "x$OS_IS_DARWIN" = "x1"; then prdef="/Applications/Cantera"; fi - -local_inst=1 -if test "x${prefix}" = "xNONE"; then - prefix=${prdef} - local_inst=0 -fi -exec_prefix=${prefix} - -if test "x${OS_IS_WIN}" = "x1"; then - prefix=`cygpath -a -m "${prefix}" ` -fi -echo "Cantera will be installed in ${prefix}" -AC_SUBST(prefix) - -AC_SUBST(local_inst) - -# -# Determination of Python site-package directory location -# -local_python_inst=${local_inst} -if test "x${SET_PYTHON_SITE_PACKAGE_TOPDIR}" = "xy"; then - python_prefix=${PYTHON_SITE_PACKAGE_TOPDIR} - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1" ; then - python_prefix=`cygpath -a -m "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - elif test "x${OS_IS_CYGWIN}" = "x1" ; then - python_prefix=`cygpath -a -u "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - fi - local_python_inst=1 - echo "Cantera's Python packages will be installed in ${python_prefix}" -else - python_prefix=$prefix - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1"; then - python_win_prefix=`cygpath -a -w "${python_prefix}" ` - fi -fi - -AC_SUBST(local_python_inst) -AC_SUBST(python_prefix) -AC_SUBST(python_win_prefix) - -ctversion=${CANTERA_VERSION} -AC_SUBST(ctversion) -AC_DEFINE_UNQUOTED(CANTERA_VERSION,"$ctversion") - -homedir="${HOME}" - -AC_SUBST(homedir) - -# A compact installation is one in which the $prefix directory -# contains only Cantera files. It is different than a local -# installation, in that the Python package is installed with other -# Python packages and modules in site-packages, rather than with the -# rest of the Cantera files, as in a local installation. Therefore, -# with a compact installation, there is no need to set PYTHONPATH. A -# compact installation is done on all machines now by default. -# This simplifies the installation issues, because now all Cantera -# installations look the same, except perhaps for the locations -# of the python packages. -# An option called, "distributed installations", is no longer -# supported. - -ct_libdir=${prefix}/lib -ct_bindir=${prefix}/bin -ct_incdir=${prefix}/include/cantera -ct_incroot=${prefix}/include -ct_datadir=${prefix}/data -ct_demodir=${prefix}/demos -ct_templdir=${prefix}/templates -ct_tutdir=${prefix}/tutorials -ct_docdir=${prefix}/doc -ct_dir=${prefix} -ct_mandir=${prefix} - -AC_SUBST(ct_libdir) -AC_SUBST(ct_bindir) -AC_SUBST(ct_incdir) -AC_SUBST(ct_incroot) -AC_SUBST(ct_datadir) -AC_SUBST(ct_demodir) -AC_SUBST(ct_templdir) -AC_SUBST(ct_tutdir) -AC_SUBST(ct_docdir) -AC_SUBST(ct_dir) -AC_SUBST(ct_mandir) - -AC_CANONICAL_SYSTEM() -# the root of the source tree -ctroot=`(pwd)` -builddir=$target -if test "x${OS_IS_WIN}" = "x1"; then - ctroot=`cygpath -a -m "${ctroot}" | sed 's/\\\/\\//g'` - builddir="i686-pc-win32" -fi - -if test -z "$username"; then username=$USER; fi -if test -z "$username"; then username=$USERNAME; fi -if test -z "$username"; then username=`whoami`; fi - -AC_SUBST(username) - -AC_SUBST(ctroot) - -# The include directory in the 'build' subdirectory. -# This is required to build the test problems -# before Cantera has been installed. -buildinc=$ctroot/build/include -AC_SUBST(buildinc) - -buildlib=$ctroot/build/lib/$builddir -AC_SUBST(buildlib) -buildbin=$ctroot/build/bin/$builddir -AC_SUBST(buildbin) - -# add definitions to config.h -if test "x${OS_IS_DARWIN}" = "x1"; then - AC_DEFINE_UNQUOTED(DARWIN,$OS_IS_DARWIN) -fi -if test "x${OS_IS_CYGWIN}" = "x1"; then - AC_DEFINE_UNQUOTED(CYGWIN,$OS_IS_CYGWIN) -fi -if test "x${OS_IS_SOLARIS}" = "x1"; then - AC_DEFINE_UNQUOTED(SOLARIS,$OS_IS_SOLARIS) -fi -if test "x${OS_IS_WIN}" = "x1"; then - AC_DEFINE_UNQUOTED(WINMSVC,$OS_IS_WIN) -fi -AC_DEFINE_UNQUOTED(RXNPATH_FONT,"$RPFONT") -#AC_DEFINE_UNQUOTED(CANTERA_ROOT,"$prefix/cantera") -AC_DEFINE_UNQUOTED(CANTERA_DATA,"$ct_datadir") - - -if test -z "$MAKE"; then MAKE='make'; fi -AC_SUBST(MAKE) - -if test -z "$GRAPHVIZDIR" ; then -GRAPHVIZDIR=" " -fi -AC_SUBST(GRAPHVIZDIR) - - -#----------- ARCHIVE -------------------- - -if test "x${OS_IS_DARWIN}" = "x1"; then -ARCHIVE='libtool -static -o' -fi - -AC_SUBST(ARCHIVE) - -DO_RANLIB=1 -if test "x${RANLIB}" = "x"; then -DO_RANLIB=0 -fi - -AC_SUBST(DO_RANLIB) -AC_SUBST(RANLIB) - -#----------- DEPENDS -------------------- - -if test "x${CXX_DEPENDS}" = "x"; then -CXX_DEPENDS='g++ -MM' -fi -AC_SUBST(CXX_DEPENDS) - -#---------------------------------------- - -#---------------------------------------- - -######################################################## -# User Code -######################################################### -USERDIR="" -INCL_USER_CODE=0 -if test -n "$USER_SRC_DIR"; then USERDIR=$USER_SRC_DIR; INCL_USER_CODE=1; fi -AC_SUBST(USERDIR) -AC_SUBST(INCL_USER_CODE) - -AC_LANG_CPLUSPLUS - -use_sundials=0 -sundials_inc= -CVODE_LIBS='-lcvode' -IDA_LIBS='' - -if test "x$SUNDIALS_HOME" = "x"; then -SUNDIALS_LIB_DIR=/usr/local/lib -SUNDIALS_INC_DIR=/usr/local/include -else -SUNDIALS_LIB_DIR="$SUNDIALS_HOME/lib" -SUNDIALS_INC_DIR="$SUNDIALS_HOME/include" -fi - -if test "$USE_SUNDIALS" = "default"; then -# -# HKM Disabled this line as it was causing configure to fail when -# SUNDIALS_LIB_DIR had a space in it, despite use of double quotes everywhere -#ldsave="$LDFLAGS" -#LDFLAGS='-L'"$SUNDIALS_LIB_DIR"' '"$ldsave" -AC_CHECK_LIB(sundials_cvodes, CVodeCreate, [use_sundials=1], [use_sundials=0],\ -[-lsundials_cvodes -lsundials_nvecserial -lm]) - -if test ${use_sundials} = 0 ; then - tmpFile="$SUNDIALS_LIB_DIR/libsundials_cvodes.a" - if test -f $tmpFile ; then - use_sundials=1 - fi -fi - -if test ${use_sundials} = 1 ; then - echo SUNDIALS: succeeded in finding a sundials installation -else - echo SUNDIALS: failed at finding a sundials installation -fi -#LDFLAGS=$ldsave -fi - -if test "x$USE_SUNDIALS" = "xy"; then -use_sundials=1 -fi -sundials_lib_dir= -sundials_lib= -sundials_lib_dep= - - -if test ${use_sundials} = 1; then -echo "using CVODES from SUNDIALS... Sensitivity analysis enabled." - -CVODE_LIBS='-lsundials_cvodes -lsundials_nvecserial' -IDA_LIBS='-lsundials_ida -lsundials_nvecserial' - -if test "$SUNDIALS_VERSION" = "2.2"; then - AC_DEFINE(HAS_SUNDIALS) - AC_DEFINE(SUNDIALS_VERSION_22) - sundials_include='-I'${SUNDIALS_HOME}'/include -I'${SUNDIALS_HOME}'/include/sundials -I'${SUNDIALS_HOME}'/include/cvodes -I'${SUNDIALS_HOME}'/include/ida' - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -elif test "$SUNDIALS_VERSION" = "2.3"; then - AC_DEFINE(HAS_SUNDIALS) - AC_DEFINE(SUNDIALS_VERSION_23) - sundials_include='-I'${SUNDIALS_INC_DIR} - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -# python tools/src/sundials_version.py $SUNDIALS_HOME -elif test "$SUNDIALS_VERSION" = "2.4"; then - AC_DEFINE(HAS_SUNDIALS) - AC_DEFINE(SUNDIALS_VERSION_24) - sundials_include='-I'${SUNDIALS_INC_DIR} - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -# python tools/src/sundials_version.py $SUNDIALS_HOME -else - echo "ERROR: unknown or unsupported sundials version #: $SUNDIALS_VERSION" - echo " Supported versions are 2.2, 2.3, and 2.4" - echo " Please fix or turn off the sundials option by setting USE_SUNDIALS to no" - use_sundials=0 -fi -fi - -if test ${use_sundials} = 0; then -echo "using CVODE... Sensitivity analysis disabled." -echo "-> To enable sensitivity analysis, install the SUNDIALS package with CVODES." -fi - -AC_SUBST(use_sundials) -AC_SUBST(CVODE_LIBS) -AC_SUBST(IDA_LIBS) -AC_SUBST(sundials_include) -AC_SUBST(sundials_lib_dir) -AC_SUBST(sundials_lib) -AC_SUBST(sundials_lib_dep) - - -######################################################### -# The Cantera Kernel -######################################################### -# -# DEBUG_MODE: Specify that additional code be compiled in -# that allows more debug printing where available. -# default = "n" -# -DEBUG_MODE=${DEBUG_MODE:="n"} -CANTERA_DEBUG_MODE=0 -if test "$DEBUG_MODE" = "y" -o "$DEBUG_MODE" = "Y" ; then - AC_DEFINE(DEBUG_MODE) - CANTERA_DEBUG_MODE="1" -else - CANTERA_DEBUG_MODE="0" -fi -AC_SUBST(CANTERA_DEBUG_MODE) - -KERNEL='' -KERNEL_OBJ='' -BUILD_CK= - -NEED_CKREADER= -NEED_LAPACK= -#NEED_RECIPES= -NEED_MATH= -NEED_TPX= -NEED_F2C= -NEED_CVODE= -NEED_ZEROD= - -#if test "$ENABLE_THERMO" = "y"; then -# KERNEL=$KERNEL' 'thermo; -# KERNEL_OBJ=$KERNEL_OBJ' $(THERMO_OBJ)' -#fi - -if test "$WITH_METAL" = "y"; then - AC_DEFINE(WITH_METAL) - hdrs=$hdrs' MetalPhase.h' -fi - -if test "$WITH_SEMICONDUCTOR" = "y"; then - AC_DEFINE(WITH_SEMICONDUCTOR) - hdrs=$hdrs' SemiconductorPhase.h' - objs=$objs' SemiconductorPhase.o' -fi -if test "$WITH_ADSORBATE" = "y"; then - AC_DEFINE(WITH_ADSORBATE) - hdrs=$hdrs' AdsorbateThermo.h' -fi -if test "$WITH_STOICH_SUBSTANCE" = "y"; then - AC_DEFINE(WITH_STOICH_SUBSTANCE) - hdrs=$hdrs' StoichSubstance.h' - objs=$objs' StoichSubstance.o' -fi - -COMPILE_PURE_FLUIDS= -if test "$WITH_PURE_FLUIDS" = "y"; then - AC_DEFINE(WITH_PURE_FLUIDS) - COMPILE_PURE_FLUIDS=1 - hdrs=$hdrs' PureFluidPhase.h' - objs=$objs' PureFluidPhase.o' -fi -AC_SUBST(COMPILE_PURE_FLUIDS) - -if test "$WITH_LATTICE_SOLID" = "y"; then - AC_DEFINE(WITH_LATTICE_SOLID) - hdrs=$hdrs' LatticeSolidPhase.h' - objs=$objs' LatticeSolidPhase.o' - hdrs=$hdrs' LatticePhase.h' - objs=$objs' LatticePhase.o' -fi -phase_object_files=$objs -phase_header_files=$hdrs -AC_SUBST(phase_object_files) -AC_SUBST(phase_header_files) - - -NEED_CATHERMO= -COMPILE_IDEAL_SOLUTIONS=0 -if test "$WITH_IDEAL_SOLUTIONS" = "y"; then - AC_DEFINE(WITH_IDEAL_SOLUTIONS) - NEED_CATHERMO=1 - COMPILE_IDEAL_SOLUTIONS=1 -fi -AC_SUBST(COMPILE_IDEAL_SOLUTIONS) - -COMPILE_ELECTROLYTES=0 -if test "$WITH_ELECTROLYTES" = "y"; then - AC_DEFINE(WITH_ELECTROLYTES) - NEED_CATHERMO=1 - COMPILE_ELECTROLYTES=1 -fi -AC_SUBST(COMPILE_ELECTROLYTES) -AC_SUBST(NEED_CATHERMO) - - -if test "$WITH_PRIME" = "y"; then - AC_DEFINE(WITH_PRIME) -fi - -COMPILE_KINETICS=0 -if test "$WITH_KINETICS" = "y"; then - AC_DEFINE(WITH_KINETICS) - COMPILE_KINETICS=1 -fi -AC_SUBST(COMPILE_KINETICS) - - -COMPILE_HETEROKIN=0 -if test "$WITH_HETERO_KINETICS" = "y"; then - AC_DEFINE(WITH_HETEROKINETICS) - COMPILE_HETEROKIN=1 -fi -AC_SUBST(COMPILE_HETEROKIN) - -COMPILE_RXNPATH=0 -if test "$WITH_REACTION_PATHS" = "y"; then - AC_DEFINE(WITH_REACTIONPATHS) - COMPILE_RXNPATH=1 -fi -AC_SUBST(COMPILE_RXNPATH) - - -if test "$ENABLE_CK" = "y" ; then - BUILD_CK=1 - NEED_CKREADER=1 - KERNEL=$KERNEL' 'ck -fi - -NEED_TRANSPORT= -if test "$ENABLE_TRANSPORT" = "y" ; then - KERNEL=$KERNEL' 'trprops - NEED_LAPACK=1 - NEED_MATH=1 - NEED_TRANSPORT=1 -fi - -NEED_EQUIL= -if test "$ENABLE_EQUIL" = "y" ; then - KERNEL=$KERNEL' 'equil - KERNEL_OBJ=$KERNEL_OBJ' $(EQUIL_OBJ)' - NEED_EQUIL=1 - NEED_LAPACK=1 -fi - -WITH_REACTORS=0 -if test "$ENABLE_REACTORS" = "y" ; then - KERNEL=$KERNEL' 'reactor - NEED_CVODE=1 - NEED_ZEROD=1 - WITH_REACTORS=1 -fi -AC_SUBST(WITH_REACTORS) - -NEED_ONED= -if test "$ENABLE_FLOW1D" = "y" ; then - KERNEL=$KERNEL' 'flow1D - NEED_LAPACK=1 - NEED_MATH=1 - NEED_ONED=1 -fi - -if test "$ENABLE_TPX" = "y" ; then - KERNEL=$KERNEL' 'tpx - NEED_TPX=1 - AC_DEFINE(INCL_PURE_FLUIDS) -fi - -NEED_SPECTRA=0 -if test "$WITH_SPECTRA" = "y"; then - AC_DEFINE(WITH_SPECTRA) - KERNEL=$KERNEL' 'spectra - NEED_SPECTRA=1 -fi - -AC_SUBST(KERNEL) -AC_SUBST(KERNEL_OBJ) -AC_SUBST(BUILD_CK) -AC_SUBST(LIB_DIR) - -COMPILE_VCSNONIDEAL=0 -if test "$WITH_VCSNONIDEAL" = "y"; then - AC_DEFINE(WITH_VCSNONIDEAL) - COMPILE_VCSNONIDEAL=1 -fi -AC_SUBST(COMPILE_VCSNONIDEAL) - -COMPILE_H298MODIFY_CAPABILITY=0 -if test "$WITH_H298MODIFY_CAPABILITY" = "y"; then - AC_DEFINE(H298MODIFY_CAPABILITY) - COMPILE_H298MODIFY_CAPABILITY=1 -fi -AC_SUBST(COMPILE_H298MODIFY_CAPABILITY) - - -if test "$WITH_HTML_LOG_FILES" = "y"; then - AC_DEFINE(WITH_HTML_LOGS) -fi - -BOOST_INCLUDE= -BOOST_LIB= -if test "$BUILD_THREAD_SAFE" = "y" ; then - AC_DEFINE(THREAD_SAFE_CANTERA) - BOOST_INCLUDE=-I$BOOST_INC_DIR - BOOST_LIB=$BOOST_THREAD_LIB -fi -AC_SUBST(BOOST_INCLUDE) -AC_SUBST(BOOST_LIB) - - -# -# Report to the user what has been included/excluded from the compilation -# -echo " " -echo "Config SUMMARY OF INCLUDED/EXCLUDED CAPABILITIES:" - -if test "$CANTERA_DEBUG_MODE" = "1" ; then - echo " Cantera Debug Mode = ON" -else - echo " Cantera Debug Mode = OFF" -fi -if test "$BUILD_THREAD_SAFE" = "y" ; then - echo " Thread Safe = YES" -else - echo " Thread Safe = NO" -fi -if test "$NEED_TRANSPORT" = "1" ; then - echo " Calculation of Transport Props = ON" -else - echo " Calculation of Transport Props = OFF" -fi -if test "$NEED_ZEROD" = "1" ; then - echo " Zero-Dimensional Flow Reactors Models = ON" -else - echo " Zero-Dimensional Flow Reactors Models = OFF" -fi -if test "$NEED_ONED" = "1" ; then - echo " One Dimensional Flow Reactors Models = ON" -else - echo " One Dimensional Flow Reactors Models = OFF" -fi -if test "$NEED_TPX" = "1" ; then - echo " TPX Pure Fluid Capability = ON" -else - echo " TPX Pure Fluid Capability = OFF" -fi -if test "$NEED_SPECTRA" = "1" ; then - echo " Spectroscopy Capability = ON" -else - echo " Spectroscopy Capability = OFF" -fi -if test "$NEED_CKREADER" = "1" ; then - echo " Chemkin File Reader Capability = ON" -else - echo " Chemkin File Reader Capability = OFF" -fi -if test "$NEED_EQUIL" = "1" ; then - echo " MultiPhase Equilibrium Solver = ON" -else - echo " MultiPhase Equilibrium Solver = OFF" -fi -if test "$COMPILE_IDEAL_SOLUTIONS" = "1" ; then - echo " Ideal Solution Thermodynamics = ON" -else - echo " Ideal Solution Thermodynamics = OFF" -fi -if test "$COMPILE_ELECTROLYTES" = "1" ; then - echo " Electrolyte Thermodynamics = ON" -else - echo " Electrolyte Thermodynamics = OFF" -fi -if test "$COMPILE_KINETICS" = "1" ; then - echo " Homogeneous Kinetics = ON" -else - echo " Homogeneous Kinetics = OFF" -fi -if test "$COMPILE_HETEROKIN" = "1" ; then - echo " Heterogeneous Kinetics = ON" -else - echo " Heterogeneous Kinetics = OFF" -fi -if test "$COMPILE_RXNPATH" = "1" ; then - echo " Reaction Path Analysis = ON" -else - echo " Reaction Path Analysis = OFF" -fi -if test "$COMPILE_VCSNONIDEAL" = "1" ; then - echo " VCS NonIdeal equilibrium solver = ON" -else - echo " VCS NonIdeal equilibrium solver = OFF" -fi -if test "$COMPILE_H298MODIFY_CAPABILITY" = "1" ; then - echo " H298 Modify Capability = ON" -else - echo " H298 Modify Capability = OFF" -fi -echo " " - -echo " " -echo "Config SUMMARY OF INCLUDED/EXCLUDED THERMO MODELS:" - -if test "$WITH_IDEAL_SOLUTIONS" = "y" ; then - echo " Ideal Solution Phase Model = INCLUDED" -else - echo " Ideal Solution Phase Model = EXCLUDED" -fi -if test "$WITH_METAL" = "y" ; then - echo " Metal Phase Model = INCLUDED" -else - echo " Metal Phase Model = EXCLUDED" -fi -if test "$WITH_SEMICONDUCTOR" = "y" ; then - echo " Semiconductor Model = INCLUDED" -else - echo " Semiconductor Model = EXCLUDED" -fi -if test "$WITH_ADSORBATE" = "y" ; then - echo " Adsorbate Model = INCLUDED" -else - echo " Adsorbate Model = EXCLUDED" -fi -if test "$WITH_ELECTROLYTES" = "y" ; then - echo " Molality-based Electrolyte Models = INCLUDED" -else - echo " Molality-based Electrolyte Models = EXCLUDED" -fi -if test "$WITH_LATTICE_SOLID" = "y" ; then - echo " Lattice Solid based Models = INCLUDED" -else - echo " Lattice Solid based Models = EXCLUDED" -fi - - -echo " " - -########################################################## -# PURIFY -########################################################## - -AC_SUBST(PURIFY) -if test "x$PURIFY" != "x"; then - AC_DEFINE(PURIFY_MODE) -fi - -######################################################## -# BLAS and LAPACK -######################################################## -# -# if lapack and blas libraries have been specified, then skip building the -# supplied libraries - - -build_lapack=0 -build_blas=0 -if test -z "$BLAS_LAPACK_LIBS"; then - BLAS_LAPACK_LIBS="-lctlapack -lctblas" - BLAS_LAPACK_DIR="$buildlib" - BLAS_LAPACK_LINK="-L$BLAS_LAPACK_DIR $BLAS_LAPACK_LIBS" - build_blas=1 - build_lapack=1 -else - BLAS_LAPACK_LINK="-L$BLAS_LAPACK_DIR $BLAS_LAPACK_LIBS" -fi - -AC_SUBST(build_lapack) - -AC_SUBST(build_blas) - -AC_SUBST(BLAS_LAPACK_LIBS) -AC_SUBST(BLAS_LAPACK_LINK) -AC_SUBST(BLAS_LAPACK_DIR) - -# -# Stubout section for f2c versions of lapack: -# Define these variables, but turn them off in main version of code -# -build_with_f2c=0 -if test -n "$BUILD_WITH_F2C" ; then - if test "$BUILD_WITH_F2C" = "y" -o "$BUILD_WITH_F2C" = "Y" ; then - build_with_f2c=1 - elif test "$BUILD_WITH_F2C" = "n" -o "$BUILD_WITH_F2C" = "N" ; then - build_with_f2c=0 - elif test "$BUILD_WITH_F2C" = "default" ; then - if test "x$OS_IS_WIN" = "x1" ; then - build_with_f2c=1 - else - build_with_f2c=0 - fi - fi -fi -AC_SUBST(build_with_f2c) - -# -# Build a string of Canne if you need the f2c library at link time -# -> Note, Linux systems already have the g2c library -# added in, which is the same thing as our -# f2c library. However, the f2c library seems -# more reliable at resolving names -if test x"$build_with_f2c" = "x1" ; then - NEED_F2C=1 - case $ac_sys_system in - Linux) NEED_F2C= ;; - esac -fi -case $ac_sys_system in - Linux) NEED_F2C=1 ;; -esac - -# -# Create a variable build_f2c_lib that determines whether -# our f2c_lib will be built on a given platform -# -build_f2c_lib=0 -F2C_SYSTEMLIB= -if test -n "$NEED_F2C" ; then - build_f2c_lib=1 -else - case $ac_sys_system in - Linux) F2C_SYSTEMLIB="-lg2c" - esac -fi -AC_SUBST(build_f2c_lib) -AC_SUBST(F2C_SYSTEMLIB) - -# -# LOCAL_LIBS: -# Build a string of Cantera libraries necessary to link -# Cantera applications -# -LOCAL_LIBS= -LOCAL_LIBS_DEP= -RAW_LIBS_DEP= -INSTALL_LIBS_DEP= - -if test -n "$INCL_USER_CODE" -then - LOCAL_LIBS=$LOCAL_LIBS' '-luser - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libuser.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libuser.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libuser.a -fi - -if test -n "$NEED_ONED" -then - LOCAL_LIBS=$LOCAL_LIBS' '-loneD - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/liboneD.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/liboneD.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'liboneD.a -fi - -if test -n "$NEED_ZEROD" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lzeroD - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libzeroD.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libzeroD.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libzeroD.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lequil -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libequil.a -INSTALL_LIBS_DEP=$INTALL_LIBS_DEP' '$ct_libdir/libequil.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libequil.a - -if test "$WITH_VCSNONIDEAL" = "y" ; then - LOCAL_LIBS=$LOCAL_LIBS' '-lVCSnonideal - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libVCSnonideal.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libVCSnonideal.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libVCSnonideal.a -fi - -if test -n "$COMPILE_KINETICS" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lkinetics - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libkinetics.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libkinetics.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libkinetics.a -fi - -if test -n "$NEED_TRANSPORT" -then - LOCAL_LIBS=$LOCAL_LIBS' '-ltransport - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libtransport.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libtransport.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libtransport.a -fi - -if test -n "$NEED_CATHERMO" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lthermo - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libthermo.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libthermo.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libthermo.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lctnumerics -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctnumerics.a -INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctnumerics.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctnumerics.a - -if test -n "$NEED_MATH" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctmath - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctmath.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctmath.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctmath.a -fi - -if test -n "$NEED_TPX" -then - LOCAL_LIBS=$LOCAL_LIBS' '-ltpx - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libtpx.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libtpx.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libtpx.a -fi - -if test -n "$NEED_SPECTRA" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctspectra - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctspectra.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctspectra.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctspectra.a -fi - -if test -n "$NEED_CKREADER" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lconverters - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libconverters.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libconverters.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libconverters.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lctbase -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctbase.a -INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctbase.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctbase.a - -CANTERA_CORE_LIBS=$LOCAL_LIBS -CANTERA_CORE_LIBS_DEP=$INSTALL_LIBS_DEP -CANTERA_CORE_LIBS_BT_DEP=$LOCAL_LIBS_DEP -CANTERA_CORE_LIBS_NAMES=$RAW_LIBS_DEP - -if test -n "$NEED_CVODE"; then - LOCAL_LIBS=$LOCAL_LIBS' '$CVODE_LIBS -fi - -if test -n "$NEED_LAPACK" -then - LOCAL_LIBS=$LOCAL_LIBS' '$BLAS_LAPACK_LIBS -fi - -if test -n "$NEED_F2C" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctf2c - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctf2c.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctf2c.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctf2c.a -else - case $ac_sys_system in - Linux) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - esac -fi -# Darwin*) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - -LOCAL_LIB_DIRS= -if test -n "$BLAS_LAPACK_DIR" -then LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BLAS_LAPACK_DIR -fi - -if test ${use_sundials} = 1; then -LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$SUNDIALS_LIB_DIR -fi - -if test ${BUILD_THREAD_SAFE} = "y"; then -LOCAL_LIBS=$LOCAL_LIBS' '-l$BOOST_LIB -LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BOOST_LIB_DIR -else -BOOST_LIB_DIR="" -fi - -AC_SUBST(BOOST_LIB_DIR) -AC_SUBST(LOCAL_LIB_DIRS) -AC_SUBST(LOCAL_LIBS) -AC_SUBST(LOCAL_LIBS_DEP) -AC_SUBST(INSTALL_LIBS_DEP) -AC_SUBST(RAW_LIBS_DEP) -AC_SUBST(CANTERA_CORE_LIBS) -AC_SUBST(CANTERA_CORE_LIBS_DEP) - -#------------------------------------------------- -# Language Interfaces -#------------------------------------------------- -# This define is needed to account for the variability for how -# static variables in templated classes are defined. Right now -# this is only turned on for the SunPro compiler on solaris. -# in that system , you need to declare the static storage variable. -# with the following line in the include file -# -# template Cabinet* Cabinet::__storage; -# -# Note, on other systems that declaration is treated as a definition -# and this leads to multiple defines at link time. This config.h addition -# is needed because there were irreconcilable issues between -# the Solaris SunPro compiler and the cygwin gcc compiler. -# -case $ac_sys_system in - SunOS* ) - AC_DEFINE(NEEDS_GENERIC_TEMPL_STATIC_DECL) - echo 'Turned on special handing of static definitions in templated classes' - ;; - * ) - ;; -esac - - -AC_SUBST(CT_SHARED_LIB) - - -BUILD_F90=1 -if test "x$BUILD_F90_INTERFACE" = "xn"; then - BUILD_F90=0 -fi - -BUILD_CLIB=1 - -#---------------------------------------------------------------- -# Python Interface -#---------------------------------------------------------------- - -BUILD_PYTHON=0 -if test "x$PYTHON_PACKAGE" = "xfull"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xdefault"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xminimal"; then - BUILD_PYTHON=1 -elif test "x$PYTHON_PACKAGE" = "xnone"; then - BUILD_PYTHON=0 -else - echo "ERROR: PYTHON_PACKAGE variable, " $PYTHON_PACKAGE ", is not understood. Use:" - echo " full, default, minimal, or none" - exit 1 -fi -if test $BUILD_PYTHON = 0 ; then -AC_DEFINE(HAS_NO_PYTHON) -fi - -if test "$PYTHON_CMD" = "default" -o \ - "$PYTHON_CMD"x = "x"; then - AC_PATH_PROGS(PYTHON_CMD, python2 python, "none") - if test "$PYTHON_CMD" = "none"; then - BUILD_PYTHON=0 - echo "Python not found. Only those portions of Cantera that" - echo "can be installed without Python will be installed." - else - echo "Python command set by configure to " $PYTHON_CMD - fi -else - echo "Python command preset to $PYTHON_CMD" -fi - - -AC_SUBST(BUILD_PYTHON) -AC_DEFINE_UNQUOTED(PYTHON_EXE,"$PYTHON_CMD") - -USE_NUMARRAY='y' - -if test "$USE_NUMERIC" = "y"; then -USE_NUMARRAY='n' -USE_NUMPY='n' -AC_DEFINE(HAS_NUMERIC) -fi - -if test "$USE_NUMPY" = "y"; then -USE_NUMARRAY='n' -AC_DEFINE(HAS_NUMPY) -fi - -if test "$USE_NUMARRAY" = "y"; then -AC_DEFINE(HAS_NUMARRAY) -fi - -if test "$USE_NUMARRAY" = "y"; then - if test -n "$NUMARRAY_INC_DIR" ; then - echo "setting NUMARRAY_INC_DIR to $NUMARRAY_INC_DIR" - else - NUMARRAY_INC_DIR="" - if test -n "$NUMARRAY_HOME"; then - dir5="$NUMARRAY_HOME/include/python2.5" - if test -d $dir5 ; then - NUMARRAY_INC_DIR=$dir5 - else - dir4="$NUMARRAY_HOME/include/python2.4" - if test -d $dir4 ; then - NUMARRAY_INC_DIR=$dir4 - else - dir3="$NUMARRAY_HOME/include/python2.3" - if test -d $dir3 ; then - NUMARRAY_INC_DIR=$dir3 - else - dir1="$NUMARRAY_HOME/include/python" - if test -d $dir1 ; then - NUMARRAY_INC_DIR=$dir1 - else - echo "WARNING: NUMARRAY include dir $dir1 does not exist." - NUMARRAY_INC_DIR=$dir1 - fi - fi - fi - fi - echo "setting NUMARRAY_INC_DIR to $NUMARRAY_INC_DIR" - fi - fi -else - NUMARRAY_INC_DIR="" - NUMARRAY_HOME="" -fi - - -if test "$USE_NUMPY" = "y"; then - if test -n "$NUMPY_INC_DIR" ; then - echo "setting NUMPY_INC_DIR to $NUMPY_INC_DIR" - else - NUMPY_INC_DIR="" - if test -n "$NUMPY_HOME"; then - dir6="$NUMPY_HOME/include/python2.6" - if test -d $dir6 ; then - NUMPY_INC_DIR=$dir6 - else - dir5="$NUMPY_HOME/include/python2.5" - if test -d $dir5 ; then - NUMPY_INC_DIR=$dir5 - else - dir4="$NUMPY_HOME/include/python2.4" - if test -d $dir4 ; then - NUMPY_INC_DIR=$dir4 - else - dir3="$NUMPY_HOME/include/python2.3" - if test -d $dir3 ; then - NUMPY_INC_DIR=$dir3 - else - dir2="$NUMPY_HOME/include/python2.2" - if test -d $dir2 ; then - NUMPY_INC_DIR=$dir2 - else - dir1="$NUMPY_HOME/include/python" - if test -d $dir1 ; then - NUMPY_INC_DIR=$dir1 - else - echo "WARNING: NUMPY include dir $dir1 does not exist." - NUMPY_INC_DIR=$dir1 - fi - fi - fi - fi - fi - fi - echo "setting NUMPY_INC_DIR to $NUMPY_INC_DIR" - fi - fi -else - NUMPY_INC_DIR="" - NUMPY_HOME="" -fi -AC_SUBST(NUMPY_INC_DIR) -AC_SUBST(NUMPY_HOME) - -# this fails, at least on a Mac. By default, numarray include files -# are installed in the include directory in the Python framework. This -# does not require setting NUMARRAY_INC_DIR, so testing that it is -# non-null is not a valid test of whether numarray is -# installed. Commented out 7/26/07 by DGG. -#if test $BUILD_PYTHON = 2 ; then -#if test x"$NUMARRAY_INC_DIR" = "x" ; then -#if test ! "$USE_NUMERIC" = "y"; then -# echo 'NUMARRAY is being used but we can find it' -# if test "x$PYTHON_PACKAGE" = "xdefault"; then -# echo 'setting python package build back to minimal' -# BUILD_PYTHON=1 -# fi -#fi -#fi -#fi - - -AC_SUBST(NUMARRAY_INC_DIR) -AC_SUBST(NUMARRAY_HOME) -AC_SUBST(CANTERA_PYTHON_HOME) - -#-------------------------- -# CVS Tag -#-------------------------- -CVSTAG=`${PYTHON_CMD} tools/src/findtag.py ..` -if test "x$CVSTAG" = "x"; then -CVSTAG="HEAD" -fi -AC_SUBST(CVSTAG) - - -# -# Matlab Interface -# - -BUILD_MATLAB=0 - -if test "$BUILD_MATLAB_TOOLBOX" != "n"; then - if test "$MATLAB_CMD" = "default" -o \ - "$MATLAB_CMD"x = "x"; then - AC_PATH_PROG(MATLAB_CMD, matlab, "none") - if test "$MATLAB_CMD" = "none"; then - MATLAB_CMD=`find /*/MATLAB*/bin/m* -name matlab` - fi - if test "$MATLAB_CMD" != "none" -a "x$MATLAB_CMD" != "x"; then - BUILD_MATLAB=1 - BUILD_CLIB=1 - #echo 'HKM -> BUILD turned on 1' - fi - else - echo "Matlab command preset to $MATLAB_CMD" - BUILD_MATLAB=1 - BUILD_CLIB=1 - fi - if test "x$OS_IS_WIN" = "x1"; then - MATLAB_CMD=`cygpath -a -m "$MATLAB_CMD" ` - echo "Windows MATLAB command: ${MATLAB_CMD}" - fi - - AC_MSG_CHECKING(MATLAB ($MATLAB_CMD)) - rm -f diary - cat >> testmat.m << EOF -diary; -try, mexext, catch, disp 'mex_unknown', end; -diary off; -exit; -EOF - ${MATLAB_CMD} -nojvm -nosplash -r testmat &> /dev/null -# &> /dev/null` - if test -f diary; then - BUILD_MATLAB=1 - echo $MATLAB_CMD - mex_ext=`grep mex* diary` - rm -f diary - else - BUILD_MATLAB=0 - echo 'failed!' - fi - rm -f testmat.m -else - echo "MATLAB interface will not be installed" - if test -z "$MATLAB_CMD"; then - MATLAB_CMD="matlab" - fi -fi - -if test "$mex_ext" = "mex_unknown"; then -case $ac_sys_system in - Darwin*) hardware=`uname -m`; - mex_ext=mexmac; - if test "$hardware" = "i386" ; then - mex_ext=mexmaci - fi;; - CYGWIN*) mex_ext=dll;; - Linux* ) mex_ext=mexglx;; -esac -fi - -if test "$BUILD_MATLAB" = "1"; then - echo " " - echo "---------------------------- MATLAB -------------------------------" - echo "MEX file extension: " $mex_ext - echo "MATLAB command: " $MATLAB_CMD - echo "--------------------------------------------------------------------" - echo " " -fi - -AC_SUBST(BUILD_MATLAB) -AC_SUBST(MATLAB_CMD) -AC_SUBST(BUILD_CLIB) - -#------------------------------------------------- - -#----------------------------------------------------------------------- -# C++ Compilation -#----------------------------------------------------------------------- - - -export_name=$target -AC_SUBST(export_name) - -# -# PIC -# Compiler flag for specifying position independent code. -# This flag is needed in the compilation step -# for code that will go into a shared library. -# If Cantera is used in the Full python installation -# mode, this means that all of Cantera's code -# compiled into static libraries and all code linked into -# those routines, such as cvode and lapack, should be position independent -# and should be compiled with this flag. -# -if test -z "$PIC"; then - case $ac_sys_system in - SunOS* ) - PIC=' ';; - CYGWIN* ) - PIC=' ';; - * ) - PIC='-fPIC';; - esac -fi -echo 'checking for Position independent code command ... ' $PIC -AC_SUBST(PIC) - -dnl Checks for programs. -# -# This script will find and set the $INSTALL -# environmental variable, and set a substitution -# rule for that variable -AC_PROG_INSTALL -# -# HKM - -# However, recently, I've had problems with -# the default LINUX /usr/bin/install program wrt -# files/directories which are group writeable, but -# which are not owned by the current user (this happens -# in a group environment). The default config/install-sh -# doesn't have this problem. So, I changed the default -# install program to config/install-sh, which should work -# on all platforms since its a bourne shell script -# HKM 12/24/2009 - Ran into another problem with the new cygwin 1.7.1. -# THe install (and even cp -f in some cases) program will fail -# when an existing different file is in place. This occurs sometimes -# and I can not quite nail down when. However replacing -# the install command for cygwin. Note, install no longer -# needs to have a wildcard capability within Cantera. - -case $ac_sys_system in - CYGWIN* ) - INSTALL=${INSTALL_BIN:=config/install-sh} - echo 'INSTALL program has been set to ' $INSTALL;; -esac - -# -# precompile_headers still relevant? -# -precompile_headers=no -# -# CFLAGS: flags that get attached to the C compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# FFLAGS: flags that get attached to the Fortran compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# -# CXXFLAGS: Flags that get attached to the CXX compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# -if test -z "$AFLAGS" ; then - AFLAGS=" " -fi -if test -z "$CXXFLAGS" ; then - CXXFLAGS="$AFLAGS" -else - CXXFLAGS="$CXXFLAGS"" ""$AFLAGS" -fi -if test -z "$CFLAGS" ; then - CFLAGS="$AFLAGS" -else - CFLAGS="$CFLAGS"" ""$AFLAGS" -fi -if test -z "$FFLAGS" ; then - FFLAGS="$AFLAGS" -else - FFLAGS="$FFLAGS"" ""$AFLAGS" -fi - -if test "x$OS_IS_WIN" = "x1"; then - #CXX=cl.exe - #CC=cl.exe - #export CXX - AC_PROG_CXX() - AC_PROG_CC() -else - -# -# Determines the CXX compiler to use -# -export CXX -AC_PROG_CXX() -AC_PROG_CC() - - -AC_MSG_CHECKING(for ability to precompile headers) - -if test -n "$GCC"; then - msg=`rm -f *h.gch; $CXX testpch.h &> /dev/null` - if test -f testpch.h.gch; then - precompile_headers=yes - AC_DEFINE(USE_PCH) - fi -fi -AC_MSG_RESULT(${precompile_headers}) -# End of the OS_IS_WIN section -fi - -# Sizes of various common basic types -AC_CHECK_SIZEOF(int, 4) -AC_CHECK_SIZEOF(long, 4) -AC_CHECK_SIZEOF(void *, 4) -AC_CHECK_SIZEOF(char, 1) -AC_CHECK_SIZEOF(short, 2) -AC_CHECK_SIZEOF(float, 4) -AC_CHECK_SIZEOF(double, 8) -AC_CHECK_SIZEOF(fpos_t, 4) - -AC_SUBST(SOEXT) - -if test -z "$SHARED"; then SHARED='-shared'; fi -AC_SUBST(SHARED) - -CXX_INCLUDES=$BOOST_INCLUDE -AC_SUBST(CXX_INCLUDES) -# -# LCXX_FLAGS: Flags that get attached to the CXX loader -# statement AFLAGS are base flags that -# get added to compilers and loaders. -# -if test ! -z "$AFLAGS" ; then - if test -z "$LCXX_FLAGS" ; then - LCXX_FLAGS="$AFLAGS" - else - LCXX_FLAGS="$LCXXFLAGS"" ""$AFLAGS" - fi -fi -if test "$BUILD_WITH_F2C"="n"; then - if test ! -z "$LFORT_FLAGS"; then - LCXX_FLAGS="$LCXX_FLAGS"" ""$LFORT_FLAGS" - fi -fi - -AC_SUBST(LCXX_FLAGS) - -# -# Ending Libs for compiling static applications and -# dynamically loaded libraries -# (sunpro solaris needs a few for dynamic linking) -# -# -# Check to see if we have a -lm line -# -AC_CHECK_LIB(m, printf, [add_stm=1], [add_stm=0], [ ]) - -# -# Check to see if we have a -lstdc++ line -# -AC_CHECK_LIB(stdc++, printf, [add_stdc=1], [add_stdc=0], []) - - -if test -n "$NEED_F2C" ; then - LCXX_END_LIBS="-lctf2c ""$LCXX_END_LIBS" -fi -case $ac_sys_system in - SunOS* ) - case $CXX in - CC* ) - LCXX_END_LIBS="$LCXX_END_LIBS"" -lCrun -lCstd -lfsu" ;; - esac ;; -esac -if test $add_stm = 1 ; then - echo 'Adding -lm to the end of the LCXX_END_LIBS variable' - LCXX_END_LIBS="$LCXX_END_LIBS"" -lm" - echo 'LCXX_END_LIBS = ' $LCXX_END_LIBS -fi -if test $add_stdc = 1 ; then - echo 'Adding -lstdc++ to the end of the LCXX_END_LIBS variable' - LCXX_END_LIBS="$LCXX_END_LIBS"" -lstdc++ " - echo 'LCXX_END_LIBS = ' $LCXX_END_LIBS -fi - - -AC_SUBST(LCXX_END_LIBS) - - -has_sstream=no -AC_MSG_CHECKING(for sstream) -cat >> testsstream.cpp << EOF -#include -main() {} -EOF - msg=`${CXX} -c testsstream.cpp &> /dev/null` - if test -f testsstream.o; then - has_sstream=yes - rm testsstream.o - AC_DEFINE(HAS_SSTREAM) - fi -rm -f testsstream.cpp -AC_MSG_RESULT(${has_sstream}) - -# -# Determine if we have a command to strip symbols from an object file -# -HAVE_STRIPSYMBOLS='yes' -case $ac_sys_system in - SunOS* ) - HAVE_STRIPSYMBOLS='no';; - Darwin* ) - HAVE_STRIPSYMBOLS='no';; -esac -echo 'checking for a strip symbol command ... ' $HAVE_STRIPSYMBOLS -AC_SUBST(HAVE_STRIPSYMBOLS) - -#--------------------------------------------------------------------------- -# Fortran -#--------------------------------------------------------------------------- - -#if test x"$build_with_f2c" = "x0"; then -AC_PROG_F77() - -# if G77 is defined, then add a flag to turn off adding a second underscore -# to procedures that have an underscore in the name -if test -n "$G77"; then - FFLAGS=$FFLAGS' -fno-second-underscore' -else - if test $F77 = "g77" -o $F77 = "mpif77" -o $F77 = "gfortran" ; then - FFLAGS=$FFLAGS' -fno-second-underscore' - fi -fi - -dnl Checks for libraries. -AC_F77_LIBRARY_LDFLAGS() - -override_f77_libs=0; - -#case $ac_sys_system in -# Darwin*) FLIBS='-lSystem'; override_f77_libs=1; SHARED_CTLIB=0;; -#esac -# -#if test $override_f77_libs -gt 0; then -# echo The Fortran 77 libraries on this platform are not correctly determined by -# echo the configuration process. They are being manually set to -# echo FLIBS = $FLIBS -#fi - -#fi - -# ---------------------------------------------------------------------- -# LCXX_FLIBS are extra libraries the CXX linker needs -# in order to link in fortran programs where fortran is the main program - -LCXX_FLIBS= - -case $ac_sys_system in - SunOS*) LCXX_FLIBS="-lCrun -lCstd -lfsu" ;; -esac - -#-------------------------------------------- - - -if test "x${BUILD_F90}" != "x0"; then - if test "$F90" = "default" -o \ - "$F90"x = "x"; then - AC_PATH_PROGS(F90, f95 gfortran g95, "none") - if test "$F90" = "none" ; then - echo "ERROR: Fortran 90 requested, but no Fortran 90/95 compiler found!" - else - echo "Fortran compiler set to " $F90 - fi - else - echo "Fortran 90/95 compiler preset to $F90" - fi -fi - -has_f90=no -f90type=none -f90_module_dir='-I' -f90_opts='' - -if test "x${BUILD_F90}" != "x0"; then - AC_MSG_CHECKING(Fortran 90 compiler ($F90) type) - cat >> testf90.f90 << EOF -module mt -double precision, parameter :: x = 2.3 -end module mt -program testf90 -use mt -integer :: i -end program testf90 -EOF - msg=`${F90} -c testf90.f90 &> /dev/null` - if test -f testf90.o; then - has_f90=yes - rm testf90.o - f90type=unknown - fi -# -F90LIBS= - - msg=`${F90} --version &> f90out` - isgfortran=`grep -c 'GNU Fortran' f90out` - if test "x${isgfortran}" != "x0"; then - f90type="gfortran" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - F90LIBS="-lgfortran" - fi - - isg95=`grep -c 'G95' f90out` - if test "x${isg95}" != "x0"; then - f90type="g95" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - #case $ac_sys_system in - # Darwin*) FLIBS='-lg2c -lcc_dynamic';; - #esac - fi - - msg=`${F90} -V &> f90out` - isnag=`grep -c NAGWare f90out` - if test "x${isnag}" != "x0"; then - f90type="NAG" - f90opts="-I. -I${ct_incdir}" - f90buildopts="-I." - fi -# - msg=`${F90} -V -c testf90.f90 &> f90out` - isabsoft=`grep -c Absoft f90out` - if test "x${isabsoft}" != "x0"; then - f90type="Absoft" - f90opts="-p. -p${ct_incdir} -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - f90buildopts="-p. -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - fi - rm -f testf90.f90 - AC_MSG_RESULT(${f90type}) - if test "x${BUILD_F90}" != "x0"; then - if test "x${has_f90}" = "xno"; then - echo " -> cannot build the Fortran 90 interface" - BUILD_F90=0 - fi - fi -fi -if test -e f90out ; then - rm -f f90out -fi -savef90flags=${F90FLAGS} -F90FLAGS=${f90opts}' '${F90FLAGS} -F90BUILDFLAGS=${f90buildopts}' '${savef90flags} -AC_SUBST(BUILD_F90) -AC_SUBST(F90) -AC_SUBST(F90FLAGS) -AC_SUBST(F90BUILDFLAGS) -AC_SUBST(F90LIBS) -AC_SUBST(LCXX_FLIBS) - -AC_OBJEXT -AC_EXEEXT - -AC_SUBST(precompile_headers) -AC_SUBST(FLIBS) -AC_SUBST(OS_IS_DARWIN) -AC_SUBST(OS_IS_WIN) -AC_SUBST(OS_IS_CYGWIN) -AC_SUBST(SHARED_CTLIB) -AC_SUBST(mex_ext) - -# filename extensions for Fortran 77 -if test -z "$F77_EXT"; then F77_EXT=f; fi -AC_SUBST(F77_EXT) - - -AC_LANG_CPLUSPLUS - -if test -z "$CXX_EXT"; then CXX_EXT=cpp; fi -AC_SUBST(CXX_EXT) - -if test -z "$OBJ_EXT"; then OBJ_EXT='o'; fi -AC_SUBST(OBJ_EXT) - -if test -z "$EXE_EXT"; then EXE_EXT=$EXEEXT; fi -AC_SUBST(EXE_EXT) - -dnl AC_LANG_FORTRAN77 -#local_math_libs='-lcvode' -#AC_SUBST(local_math_libs) - - -math_libs='-lcvode -lctmath' -AC_SUBST(math_libs) - -if test "$LAPACK_FTN_TRAILING_UNDERSCORE" = "y" -then - AC_DEFINE(LAPACK_FTN_TRAILING_UNDERSCORE) - AC_DEFINE(FTN_TRAILING_UNDERSCORE) -fi - -if test "$LAPACK_FTN_STRING_LEN_AT_END" = "y" -then AC_DEFINE(LAPACK_FTN_STRING_LEN_AT_END) -fi - -if test "$LAPACK_NAMES" = "lower" -then AC_DEFINE(LAPACK_NAMES_LOWERCASE) -fi - -# from the Python configure.in file... - -# Set info about shared libraries. -AC_SUBST(SO) -AC_SUBST(LDSHARED) - -AC_SUBST(EXTRA_LINK) - -# SO is the extension of shared libraries `(including the dot!) -# -- usually .so, .sl on HP-UX, .dll on Cygwin -AC_MSG_CHECKING(SO) -if test -z "$SO" -then - case $ac_sys_system in - hp*|HP*) SO=.sl;; - CYGWIN*) SO=.dll;; - Darwin*) SO=.dylib;; - *) SO=.so;; - esac -fi -AC_MSG_RESULT($SO) - -dnl Checks for header files. - -dnl Checks for typedefs, structures, and compiler characteristics. - -AC_LANG_CPLUSPLUS - -dnl AC_MSG_CHECKING(for the Standard Template Library) - -# -# Section to handle tscompare -# -cd bin -touch s1 -sleep 1 -touch s2 -tsc=tscompare_alwaystrue -./tscompare_sh s2 s1 2> /dev/null -res=$? -if test "$res" = "0" ; then - tsc=tscompare_sh -else - ./tscompare_csh s2 s1 2> /dev/null - res=$? - if test "$res" = "0" ; then - tsc=tscompare_csh - else - ./tscompare_ksh s2 s1 2> /dev/null - res=$? - if test "$res" = "0" ; then - tsc=tsccompare_ksh - fi - fi -fi -/bin/rm s2 s1 -echo "checking for a time step comparison checker ... " $tsc -cp $tsc tscompare -currPath=`pwd` -TSCOMPARE_abs="$currPath"'/'tscompare -cd .. -AC_SUBST(TSCOMPARE_abs) - -# -# Create an absolute path for the $INSTALL function -# named INSTALL_abs -# (note m4 expansions @<:@ = left bracket, @:>@ = right bracket) -#echo "HKM - INSTALL = " $INSTALL -case "$INSTALL" in - @<:@\\/$@:>@* | ?:@<:@\\/@:>@* ) - INSTALL_abs="$INSTALL" ;; - *) - currPath=`pwd` - INSTALL_abs="$currPath"'/'"$INSTALL" ;; -esac -#echo 'INSTALL_abs = ' $INSTALL_abs -AC_SUBST(INSTALL_abs) - -# -# See if the install rule accepts the -v flag -# -$INSTALL -v License.txt config > config/e.out 2>&1 -dd=$? -INSTALL_VERBOSE= -if test "$dd" = "0" ; then - INSTALL_VERBOSE="-v" -fi -if test -e "config/License.txt" ; then - rm -f config/License.txt -fi -if test -e config/e.out ; then - rm -f e.out -fi -AC_SUBST(INSTALL_VERBOSE) - - -dnl Checks for library functions. - -AC_OUTPUT(Makefile \ - Cantera/Makefile \ - Cantera/src/Makefile \ - Cantera/src/base/Makefile \ - Cantera/src/zeroD/Makefile \ - Cantera/src/oneD/Makefile \ - Cantera/src/converters/Makefile \ - Cantera/src/transport/Makefile \ - Cantera/src/thermo/Makefile \ - Cantera/src/kinetics/Makefile \ - Cantera/src/numerics/Makefile \ - Cantera/src/spectra/Makefile \ - Cantera/src/equil/Makefile \ - Cantera/clib/src/Makefile \ - Cantera/fortran/src/Makefile \ - Cantera/fortran/f77demos/f77demos.mak \ - Cantera/fortran/f77demos/Makefile \ - Cantera/matlab/Makefile \ - Cantera/matlab/setup_matlab.py \ - Cantera/python/Makefile \ - Cantera/python/setup.py \ - Cantera/cxx/Makefile \ - Cantera/cxx/src/Makefile \ - Cantera/cxx/demos/Makefile \ - Cantera/cxx/demos/combustor/Makefile \ - Cantera/cxx/demos/combustor/Makefile.install \ - Cantera/cxx/demos/flamespeed/Makefile \ - Cantera/cxx/demos/flamespeed/Makefile.install \ - Cantera/cxx/demos/kinetics1/Makefile \ - Cantera/cxx/demos/kinetics1/Makefile.install \ - Cantera/cxx/demos/NASA_coeffs/Makefile \ - Cantera/cxx/demos/NASA_coeffs/Makefile.install \ - Cantera/cxx/demos/rankine/Makefile \ - Cantera/cxx/demos/rankine/Makefile.install \ - Cantera/cxx/include/Cantera.mak \ - Cantera/cxx/include/Cantera_bt.mak \ - Cantera/user/Makefile \ - Cantera/python/src/Makefile \ - Cantera/python/examples/Makefile \ - Cantera/python/examples/equilibrium/Makefile \ - Cantera/python/examples/equilibrium/adiabatic_flame/Makefile \ - Cantera/python/examples/equilibrium/multiphase_plasma/Makefile \ - Cantera/python/examples/equilibrium/simple_test/Makefile \ - Cantera/python/examples/equilibrium/stoich_flame/Makefile \ - Cantera/python/examples/gasdynamics/isentropic/Makefile \ - Cantera/python/examples/gasdynamics/soundSpeed/Makefile \ - Cantera/python/examples/flames/adiabatic_flame/Makefile \ - Cantera/python/examples/flames/flame1/Makefile \ - Cantera/python/examples/flames/flame2/Makefile \ - Cantera/python/examples/flames/flame_fixed_T/Makefile \ - Cantera/python/examples/flames/free_h2_air/Makefile \ - Cantera/python/examples/flames/npflame1/Makefile \ - Cantera/python/examples/flames/stflame1/Makefile \ - Cantera/python/examples/fuel_cells/Makefile \ - Cantera/python/examples/liquid_vapor/critProperties/Makefile \ - Cantera/python/examples/liquid_vapor/rankine/Makefile \ - Cantera/python/examples/kinetics/Makefile \ - Cantera/python/examples/misc/Makefile \ - Cantera/python/examples/reactors/combustor_sim/Makefile \ - Cantera/python/examples/reactors/functors_sim/Makefile \ - Cantera/python/examples/reactors/mix1_sim/Makefile \ - Cantera/python/examples/reactors/mix2_sim/Makefile \ - Cantera/python/examples/reactors/piston_sim/Makefile \ - Cantera/python/examples/reactors/reactor1_sim/Makefile \ - Cantera/python/examples/reactors/reactor2_sim/Makefile \ - Cantera/python/examples/reactors/sensitivity_sim/Makefile \ - Cantera/python/examples/reactors/surf_pfr_sim/Makefile \ - Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile \ - Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile \ - Cantera/python/examples/transport/Makefile \ - Cantera/python/examples/flames/Makefile \ - Cantera/python/examples/gasdynamics/Makefile \ - Cantera/python/examples/liquid_vapor/Makefile \ - Cantera/python/examples/reactors/Makefile \ - Cantera/python/examples/surface_chemistry/Makefile \ - ext/lapack/Makefile \ - ext/blas/Makefile \ - ext/cvode/Makefile \ - ext/math/Makefile \ - ext/recipes/Makefile \ - ext/tpx/Makefile \ - ext/Makefile \ - ext/f2c_libs/Makefile \ - ext/f2c_blas/Makefile \ - ext/f2c_lapack/Makefile \ - ext/f2c_math/Makefile \ - examples/Makefile \ - examples/cxx/Makefile \ - tools/Makefile \ - tools/doc/Cantera.cfg \ - tools/doc/Makefile \ - tools/src/Makefile \ - tools/src/sample.mak \ - tools/src/finish_install.py \ - tools/src/package4mac \ - tools/templates/f77/demo.mak \ - tools/templates/f90/demo.mak \ - tools/templates/cxx/demo.mak \ - tools/testtools/Makefile \ - data/inputs/Makefile \ - data/inputs/mkxml \ - test_problems/Makefile \ - test_problems/cxx_ex/Makefile \ - test_problems/silane_equil/Makefile \ - test_problems/surfkin/Makefile \ - test_problems/spectroscopy/Makefile \ - test_problems/surfSolverTest/Makefile \ - test_problems/diamondSurf/Makefile \ - test_problems/diamondSurf_dupl/Makefile \ - test_problems/ChemEquil_gri_matrix/Makefile \ - test_problems/ChemEquil_gri_pairs/Makefile \ - test_problems/ChemEquil_ionizedGas/Makefile \ - test_problems/ChemEquil_red1/Makefile \ - test_problems/CpJump/Makefile \ - test_problems/mixGasTransport/Makefile \ - test_problems/multiGasTransport/Makefile \ - test_problems/printUtilUnitTest/Makefile \ - test_problems/fracCoeff/Makefile \ - test_problems/negATest/Makefile \ - test_problems/NASA9poly_test/Makefile \ - test_problems/ck2cti_test/Makefile \ - test_problems/ck2cti_test/runtest \ - test_problems/nasa9_reader/Makefile \ - test_problems/nasa9_reader/runtest \ - test_problems/min_python/Makefile \ - test_problems/min_python/minDiamond/Makefile \ - test_problems/min_python/negATest/Makefile \ - test_problems/pureFluidTest/Makefile \ - test_problems/rankine_democxx/Makefile \ - test_problems/python/Makefile \ - test_problems/cathermo/Makefile \ - test_problems/cathermo/issp/Makefile \ - test_problems/cathermo/ims/Makefile \ - test_problems/cathermo/stoichSubSSTP/Makefile \ - test_problems/cathermo/testIAPWS/Makefile \ - test_problems/cathermo/testIAPWSPres/Makefile \ - test_problems/cathermo/testIAPWSTripP/Makefile \ - test_problems/cathermo/testWaterPDSS/Makefile \ - test_problems/cathermo/testWaterTP/Makefile \ - test_problems/cathermo/HMW_test_1/Makefile \ - test_problems/cathermo/HMW_test_3/Makefile \ - test_problems/cathermo/HMW_graph_GvT/Makefile \ - test_problems/cathermo/HMW_graph_GvI/Makefile \ - test_problems/cathermo/HMW_graph_HvT/Makefile \ - test_problems/cathermo/HMW_graph_CpvT/Makefile \ - test_problems/cathermo/HMW_graph_VvT/Makefile \ - test_problems/cathermo/DH_graph_1/Makefile \ - test_problems/cathermo/DH_graph_acommon/Makefile \ - test_problems/cathermo/DH_graph_NM/Makefile \ - test_problems/cathermo/DH_graph_Pitzer/Makefile \ - test_problems/cathermo/DH_graph_bdotak/Makefile \ - test_problems/cathermo/HMW_dupl_test/Makefile \ - test_problems/cathermo/VPissp/Makefile \ - test_problems/cathermo/wtWater/Makefile \ - test_problems/VCSnonideal/Makefile \ - test_problems/VPsilane_test/Makefile \ - test_problems/VPsilane_test/runtest \ - test_problems/VCSnonideal/NaCl_equil/Makefile \ - bin/install_tsc \ - ) -# ) -if test "x${OS_IS_WIN}" = "x1"; then - cp -f config.h winconfig.h - echo 'copying config.h, which we just customized for the requested configuration, to winconfg.h' - cd ext/f2c_libs - cp arith.hwin32 arith.h - cd ../.. -fi -if test -f "test_problems/ck2cti_test/runtest"; then - chmod +x test_problems/ck2cti_test/runtest -fi -if test -f "test_problems/nasa9_reader/runtest"; then - chmod +x test_problems/nasa9_reader/runtest -fi -if test -f "test_problems/VPsilane_test/runtest"; then - chmod +x test_problems/VPsilane_test/runtest -fi -if test -f "Cantera/python/examples/equilibrium/adiabatic_flame/runtest"; then - chmod +x Cantera/python/examples/equilibrium/adiabatic_flame/runtest -fi -if test -f "Cantera/python/examples/equilibrium/multiphase_plasma/runtest"; then - chmod +x Cantera/python/examples/equilibrium/multiphase_plasma/runtest -fi -if test -f "Cantera/python/examples/equilibrium/simple_test/runtest"; then - chmod +x Cantera/python/examples/equilibrium/simple_test/runtest -fi -if test -f "Cantera/python/examples/equilibrium/stoich_flame/runtest"; then - chmod +x Cantera/python/examples/equilibrium/stoich_flame/runtest -fi -if test -f "Cantera/python/examples/gasdynamics/isentropic/runtest"; then - chmod +x Cantera/python/examples/gasdynamics/isentropic/runtest -fi -if test -f "Cantera/python/examples/gasdynamics/soundSpeed/runtest"; then - chmod +x Cantera/python/examples/gasdynamics/soundSpeed/runtest -fi -if test -f "Cantera/python/examples/flames/adiabatic_flame/runtest"; then - chmod +x Cantera/python/examples/flames/adiabatic_flame/runtest -fi -if test -f "Cantera/python/examples/flames/flame1/runtest"; then - chmod +x Cantera/python/examples/flames/flame1/runtest -fi -if test -f "Cantera/python/examples/flames/flame2/runtest"; then - chmod +x Cantera/python/examples/flames/flame2/runtest -fi -if test -f "Cantera/python/examples/flames/flame_fixed_T/runtest"; then - chmod +x Cantera/python/examples/flames/flame_fixed_T/runtest -fi -if test -f "Cantera/python/examples/flames/free_h2_air/runtest"; then - chmod +x Cantera/python/examples/flames/free_h2_air/runtest -fi -if test -f "Cantera/python/examples/flames/npflame1/runtest"; then - chmod +x Cantera/python/examples/flames/npflame1/runtest -fi -if test -f "Cantera/python/examples/flames/stflame1/runtest"; then - chmod +x Cantera/python/examples/flames/stflame1/runtest -fi -if test -f "Cantera/python/examples/fuel_cells/runtest"; then - chmod +x Cantera/python/examples/fuel_cells/runtest -fi -if test -f "Cantera/python/examples/liquid_vapor/critProperties/runtest"; then - chmod +x Cantera/python/examples/liquid_vapor/critProperties/runtest -fi -if test -f "Cantera/python/examples/liquid_vapor/rankine/runtest"; then - chmod +x Cantera/python/examples/liquid_vapor/rankine/runtest -fi -if test -f "Cantera/python/examples/kinetics/runtest"; then - chmod +x Cantera/python/examples/kinetics/runtest -fi -if test -f "Cantera/python/examples/misc/runtest"; then - chmod +x Cantera/python/examples/misc/runtest -fi -if test -f "Cantera/python/examples/reactors/combustor_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/combustor_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/mix1_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/mix1_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/mix2_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/mix2_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/piston_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/piston_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/reactor1_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/reactor1_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/reactor2_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/reactor2_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/sensitivity_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/sensitivity_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/surf_pfr_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/surf_pfr_sim/runtest -fi -if test -f "Cantera/python/examples/surface_chemistry/diamond_cvd/runtest"; then - chmod +x Cantera/python/examples/surface_chemistry/diamond_cvd/runtest -fi -if test -f "Cantera/python/examples/surface_chemistry/catcomb_stagflow/runtest"; then - chmod +x Cantera/python/examples/surface_chemistry/catcomb_stagflow/runtest -fi -if test -f "Cantera/python/examples/transport/runtest"; then - chmod +x Cantera/python/examples/transport/runtest -fi -if test -f "bin/install_tsc"; then - chmod +x bin/install_tsc -fi -if test -f "data/inputs/mkxml"; then - chmod +x data/inputs/mkxml -fi - - -echo -if test "x${OS_IS_WIN}" = "x0"; then - echo "Now type '${MAKE}' to build Cantera" -else - echo "Now start Visual Studio, open workspace 'win32/vc9/cantera.sln'," - echo "and build project 'all'. " -# echo " When this finishes, come back here and " -# echo "type 'make win' to make the Python and/or MATLAB interfaces." -fi -echo - diff --git a/data/inputs/Makefile.in b/data/inputs/Makefile.in deleted file mode 100755 index bef87c28e..000000000 --- a/data/inputs/Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -SUFFIXES= -SUFFIXES= .inp .log .dat - -# list all mechanism files here -MECHS = - -BUILDBIN=@buildbin@ - -all: gri30.xml - -gri30.xml: gri30.cti - $(BUILDBIN)/cti2ctml gri30.cti - diff --git a/docs/README.txt b/docs/README.txt deleted file mode 100644 index 5a8b00867..000000000 --- a/docs/README.txt +++ /dev/null @@ -1,38 +0,0 @@ -README.txt (docs directory) - - -Contents of the Directory -------------------------------- - - - 1 install_examples directory - -------------------------------- - - The install_examples directory contains various successful compilation environments that - Cantera has been tested out on. These files are "pre-preconfig files". In other words - these are shell scripts that are executed before Cantera's main preconfig script is run. - - In order to use these scripts, you should copy them to the top directory of the Cantera - distribution. Then, most of the scripts will still need some editing to specify path - information and locations of the installation directory. - Then, you can then execute the scripts to create the Makefiles in the distribution. - A typical successful session of making the distribution, testing it, and then running - the small test problem section would consist of the following commands: - - - - Install a python math package (either numeric, numarray, or numpy) - - Install sundials or choose vode within Cantera - autoconf - script_prepreconfig.sh - make - make install - cd test_problems - make - make test - - - You can then go to the installation directories and test your Cantera installations - further. - - - diff --git a/docs/install_examples/cygwin_gcc344_dbg_f2c_numeric.sh b/docs/install_examples/cygwin_gcc344_dbg_f2c_numeric.sh deleted file mode 100755 index 9c4450748..000000000 --- a/docs/install_examples/cygwin_gcc344_dbg_f2c_numeric.sh +++ /dev/null @@ -1,164 +0,0 @@ -#!/bin/sh -# ------------------------------------------------------------------------------ -# -# Example Cantera pre-preconfig configuration script -# 10/20/09 -# -# Platform: cygwin -# Compiler: gcc v. 3.4.4 -# Optimization: Debug version -# python: v. 2.5.2 (full installation) -# matlab: no -# f2c: yes -# num python numeric -# -# -# --------------------------------------------------------------------------- -# The only place where the User must custimize this installation -# is located at the top here: -# -# Specify the installation directory here: -# -Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8_develop' -# -# Specify the Sundials installation directory here (leave it as a null script -# if you don't want to link sundials in -# -# Sundials_Home='' -Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg' -# -# Specify the Sundials version number (either 2.2, 2.3, or 2.4) -Sundials_Version='2.3' -# Sundials_Version=2.4' -# ----------------------------------------------------------------------------- -# -# User may optionally customize below this line (but doesn't have to) -- -# -CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/bin/python -export PYTHON_CMD - -# -# The full python package works within cygwin. Minimal is needed at the least -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -# -# Matlab on the pc is supported through the windows vc++ 8.0 compilation -# environment -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -NUMARRAY_HOME='' -export NUMARRAY_HOME -# -# Turns on extra debugging -# -DEBUG_MODE='y' -export DEBUG_MODE -# -# Numeric must have already been installed in the -# /usr/lib/python2.5/site-packages -# directory before the Cantera installation. If not, you can always -# do a minimal python installation and forego forming Cantera's python interface. -# -USE_NUMERIC="y" -export USE_NUMERIC -# -# We use F2C with the cygwin installation. However, the g77 interface should -# work too. -# -BUILD_WITH_F2C="y" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE -# -# We use the default gcc compilers that come with cygwin. Currently, this -# is gcc v. 3.4.4. -# -CXX='g++' -export CXX -# -CC='gcc' -export CC -# -F77='g77' -export F77 -# -# Debug options -# -# -DDEBUG_HKM -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -CXXFLAGS="-g -Wall " -export CXXFLAGS - -CFLAGS=$CXXFLAGS -export CFLAGS - -FFLAGS="-g " -export FFLAGS - -LDFLAGS='-g' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -# The gcc compiler in cygwin will put a .exe extension on anyway. So, -# we might as well define this field as .exe. cygwin will automagically -# equate executable files with no extension as having an .exe extension. -# This is very mysterious. However, the mystery goes away if you define -# these files to have a .exe suffix from the getgo. -EXE_EXT=".exe" -export EXE_EXT - -EXTRA_LINK="" -export EXTRA_LINK - -MAKE=make -export MAKE -# -# Specify the SUNDIALS option -# -if test -n "$Sundials_Home" -then - USE_SUNDIALS='y' - SUNDIALS_VERSION=$Sundials_Version -else - USE_SUNDIALS='n' -fi -export USE_SUNDIALS -export SUNDIALS_VERSION -# -# Specify where to find the sundials installation directories -# -SUNDIALS_HOME=$Sundials_Home -export SUNDIALS_HOME -# -# Ok, fire off the main preconfig script -# -./preconfig - diff --git a/docs/install_examples/cygwin_gcc344_dbg_f2c_numpy.sh b/docs/install_examples/cygwin_gcc344_dbg_f2c_numpy.sh deleted file mode 100755 index b00277856..000000000 --- a/docs/install_examples/cygwin_gcc344_dbg_f2c_numpy.sh +++ /dev/null @@ -1,167 +0,0 @@ -#!/bin/sh -# ------------------------------------------------------------------------------ -# -# Example Cantera pre-preconfig configuration script -# 10/20/09 -# -# Platform: cygwin -# Compiler: gcc v. 3.4.4 -# Optimization: Debug version -# python: v. 2.5.2 (full installation) -# matlab: no -# f2c: yes -# num python: numpy, which is distributed with cygwin -# -# -# --------------------------------------------------------------------------- -# The only place where the User must custimize this installation -# is located at the top here: -# -# Specify the installation directory here: -# -Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8_develop' -# -# Specify the Sundials installation directory here (leave it as a null script -# if you don't want to link sundials in -# -# Sundials_Home='' -Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg' -# -# Specify the Sundials version number (either 2.2, 2.3, or 2.4) -Sundials_Version='2.3' -# Sundials_Version=2.4' -# ----------------------------------------------------------------------------- -# -CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/bin/python -export PYTHON_CMD - -# -# The full python package works within cygwin. Minimal is needed at the least -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -# -# Matlab on the pc is supported through the windows vc++ 8.0 compilation -# environment. Therefore, we turn it off here. -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -NUMARRAY_HOME='' -export NUMARRAY_HOME -# -# Turns on extra debugging -# -DEBUG_MODE='y' -export DEBUG_MODE -# -# Numpy must have already been installed in the -# /usr/lib/python2.5/site-packages -# directory before the Cantera installation. If not, you can always -# do a minimal python installation and forego forming Cantera's python interface. -# -USE_NUMPY="y" -export USE_NUMPY -# -# Specify where to find the include files within the numpy distribution -# -NUMPY_INC_DIR="/usr/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR -# -# We use F2C with the cygwin installation. However, the g77 interface should -# work too. -# -BUILD_WITH_F2C="y" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE -# -# We use the default gcc compilers that come with cygwin. Currently, this -# is gcc v. 3.4.4. -# -CXX='g++' -export CXX -# -CC='gcc' -export CC -# -F77='g77' -export F77 -# -# Debug options -# -# -DDEBUG_HKM -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -CXXFLAGS="-g -Wall " -export CXXFLAGS - -CFLAGS=$CXXFLAGS -export CFLAGS - -FFLAGS="-g " -export FFLAGS - -LDFLAGS='-g' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -# The gcc compiler in cygwin will put a .exe extension on anyway. So, -# we might as well define this field as .exe. cygwin will automagically -# equate executable files with no extension as having an .exe extension. -# This is very mysterious. However, the mystery goes away if you define -# these files to have a .exe suffix from the getgo. -EXE_EXT=".exe" -export EXE_EXT - -EXTRA_LINK="" -export EXTRA_LINK - -MAKE=make -export MAKE -# -# Specify the SUNDIALS option -# -if test -n "$Sundials_Home" -then - USE_SUNDIALS='y' - SUNDIALS_VERSION=$Sundials_Version -else - USE_SUNDIALS='n' -fi -export USE_SUNDIALS -export SUNDIALS_VERSION -# -# Specify where to find the sundials installation directories -# -SUNDIALS_HOME=$Sundials_Home -export SUNDIALS_HOME -# -# Ok, fire off the main preconfig script -# -./preconfig - diff --git a/docs/install_examples/cygwin_gcc434_dbg_f2c_numpy.sh b/docs/install_examples/cygwin_gcc434_dbg_f2c_numpy.sh deleted file mode 100755 index 3fe470105..000000000 --- a/docs/install_examples/cygwin_gcc434_dbg_f2c_numpy.sh +++ /dev/null @@ -1,167 +0,0 @@ -#!/bin/sh -# ------------------------------------------------------------------------------ -# -# Example Cantera pre-preconfig configuration script -# 10/20/09 -# -# Platform: CYGWIN_NT-5.1 1.7.1(0.218/5/3) -# Compiler: gcc v. 4.3.4 -# Optimization: Debug version -# python: v. 2.5.2 (full installation) -# matlab: no -# f2c: yes -# num python: numpy, which is distributed with cygwin -# -# -# --------------------------------------------------------------------------- -# The only place where the User must custimize this installation -# is located at the top here: -# -# Specify the installation directory here: -# -Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8.0' -# -# Specify the Sundials installation directory here (leave it as a null script -# if you don't want to link sundials in -# -# Sundials_Home='' -Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg' -# -# Specify the Sundials version number (either 2.2, 2.3, or 2.4) -Sundials_Version='2.3' -# Sundials_Version=2.4' -# ----------------------------------------------------------------------------- -# -CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/bin/python -export PYTHON_CMD - -# -# The full python package works within cygwin. Minimal is needed at the least -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -# -# Matlab on the pc is supported through the windows vc++ 8.0 compilation -# environment. Therefore, we turn it off here. -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -NUMARRAY_HOME='' -export NUMARRAY_HOME -# -# Turns on extra debugging -# -DEBUG_MODE='y' -export DEBUG_MODE -# -# Numpy must have already been installed in the -# /usr/lib/python2.5/site-packages -# directory before the Cantera installation. If not, you can always -# do a minimal python installation and forego forming Cantera's python interface. -# -USE_NUMPY="y" -export USE_NUMPY -# -# Specify where to find the include files within the numpy distribution -# -NUMPY_INC_DIR="/usr/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR -# -# We use F2C with the cygwin installation. However, the g77 interface should -# work too. -# -BUILD_WITH_F2C="y" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE -# -# We use the default gcc compilers that come with cygwin. Currently, this -# is gcc v. 3.4.4. -# -CXX='g++' -export CXX -# -CC='gcc' -export CC -# -F77='g77' -export F77 -# -# Debug options -# -# -DDEBUG_HKM -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -CXXFLAGS="-g -Wall " -export CXXFLAGS - -CFLAGS=$CXXFLAGS -export CFLAGS - -FFLAGS="-g " -export FFLAGS - -LDFLAGS='-g' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -# The gcc compiler in cygwin will put a .exe extension on anyway. So, -# we might as well define this field as .exe. cygwin will automagically -# equate executable files with no extension as having an .exe extension. -# This is very mysterious. However, the mystery goes away if you define -# these files to have a .exe suffix from the getgo. -EXE_EXT=".exe" -export EXE_EXT - -EXTRA_LINK="" -export EXTRA_LINK - -MAKE=make -export MAKE -# -# Specify the SUNDIALS option -# -if test -n "$Sundials_Home" -then - USE_SUNDIALS='y' - SUNDIALS_VERSION=$Sundials_Version -else - USE_SUNDIALS='n' -fi -export USE_SUNDIALS -export SUNDIALS_VERSION -# -# Specify where to find the sundials installation directories -# -SUNDIALS_HOME=$Sundials_Home -export SUNDIALS_HOME -# -# Ok, fire off the main preconfig script -# -./preconfig - diff --git a/docs/install_examples/linux_32_gcc343_dbg_python235_numeric b/docs/install_examples/linux_32_gcc343_dbg_python235_numeric deleted file mode 100755 index 73e6695a2..000000000 --- a/docs/install_examples/linux_32_gcc343_dbg_python235_numeric +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/sh -# -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux/cantera-1.7_develop -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.3.5/bin/python -#PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -WITH_ADSORBATE="n" -export WITH_ADSORBATE - -DEBUG_MODE='y' -export DEBUG_MODE - -# Note, MATLAB must be built 64 bit on linux. -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -BUILD_THREAD_SAFE="n" -export BUILD_THREAD_SAFE - -BOOST_INC_DIR=${HOME}/arch/linux/boost/include/boost-1_34_1 -export BOOST_INC_DIR - -BOOST_LIB_DIR=${HOME}/arch/linux/boost/lib -export BOOST_LIB_DIR - -BOOST_THREAD_LIB=boost_thread-gcc34-mt -export BOOST_THREAD_LIB - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# Only Numeric is installed in the /usr/local/python/2.3.5/lib/python2.3/site-packages -# directory currently. -# -USE_NUMERIC="y" -export USE_NUMERIC - -#USE_NUMPY="y" -#export USE_NUMPY - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE - -do_purify=0 -if test "$do_purify" = 1 -then - PURIFY='purify' - CC='gcc -m32 -Wa,--32' - CXX='g++ -m32 -Wa,--32' - F77='g77 -m32 -Wa,--32' -else - CXX='mpiCC' - CC='mpicc' - F77='mpif77' -fi - -export CXX -export CC -export F77 -export PURIFY - -AFLAGS="-g -m32 -Wa,--32" -export AFLAGS - -CFLAGS="-g -m32 -Wa,--32 -Wall" -export CFLAGS - -WITH_H298MODIFY_CAPABILITY="y" -export WITH_H298MODIFY_CAPABILITY - -# -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -DDEBUG_HKM -# -DH298MODIFY_CAPABILITY -# -CXXFLAGS="-g -m32 -Wa,--32 -Wall -DDEBUG_HKM " -export CXXFLAGS - -FFLAGS="-g -m32 -Wa,--32 -DDEBUG_HKM" -export FFLAGS - -LDFLAGS='-m32 -Wa,--32' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK="-m32 -Wa,--32" -export EXTRA_LINK - -MAKE=gmake -export MAKE -# -# This is sundials 2.3 -# -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/linux_32_gcc343_opt_python235_numeric b/docs/install_examples/linux_32_gcc343_opt_python235_numeric deleted file mode 100755 index 225b89055..000000000 --- a/docs/install_examples/linux_32_gcc343_opt_python235_numeric +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/sh -# -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux/cantera-1.7_develop -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.3.5/bin/python -#PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -WITH_ADSORBATE="n" -export WITH_ADSORBATE - -DEBUG_MODE='y' -export DEBUG_MODE - -# Note, MATLAB must be built 64 bit on linux. -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -BUILD_THREAD_SAFE="n" -export BUILD_THREAD_SAFE - -BOOST_INC_DIR=${HOME}/arch/linux/boost/include/boost-1_34_1 -export BOOST_INC_DIR - -BOOST_LIB_DIR=${HOME}/arch/linux/boost/lib -export BOOST_LIB_DIR - -BOOST_THREAD_LIB=boost_thread-gcc34-mt -export BOOST_THREAD_LIB - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# Only Numeric is installed in the /usr/local/python/2.3.5/lib/python2.3/site-packages -# directory currently. -# -USE_NUMERIC="y" -export USE_NUMERIC - -#USE_NUMPY="y" -#export USE_NUMPY - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE - -do_purify=0 -if test "$do_purify" = 1 -then - PURIFY='purify' - CC='gcc -m32 -Wa,--32' - CXX='g++ -m32 -Wa,--32' - F77='g77 -m32 -Wa,--32' -else - CXX='mpiCC' - CC='mpicc' - F77='mpif77' -fi - -export CXX -export CC -export F77 -export PURIFY - -AFLAGS="-O -m32 -Wa,--32" -export AFLAGS - -CFLAGS="-O -m32 -Wa,--32 -Wall" -export CFLAGS - -WITH_H298MODIFY_CAPABILITY="y" -export WITH_H298MODIFY_CAPABILITY - -# -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -DDEBUG_HKM -# -DH298MODIFY_CAPABILITY -# -CXXFLAGS="-O -m32 -Wa,--32 -Wall -DDEBUG_HKM " -export CXXFLAGS - -FFLAGS="-O -m32 -Wa,--32 -DDEBUG_HKM" -export FFLAGS - -LDFLAGS='-m32 -Wa,--32' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK="-m32 -Wa,--32" -export EXTRA_LINK - -MAKE=gmake -export MAKE -# -# This is sundials 2.3 -# -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/linux_64_gcc424_dbg_python252_numpy b/docs/install_examples/linux_64_gcc424_dbg_python252_numpy deleted file mode 100755 index 2da813547..000000000 --- a/docs/install_examples/linux_64_gcc424_dbg_python252_numpy +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh -# -# This is currently the test base. Meaning that the blessed versions -# of all test problems are created from this configuration. -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -#CXX='g++ -m32 -Wa,--32' -CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CXX - -CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM' -export CXX_DEPENDS - - -#CC='gcc -m32 -Wa,--32' -CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CC - -#F77='g77 -m32 -Wa,--32' -F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran' -export F77 - -CFLAGS="-g -Wall" -export CFLAGS - -CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-g -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS="-lgfortran -lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=gmake -export MAKE - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux64/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/linux_64_gcc424_dbg_python264_numpy b/docs/install_examples/linux_64_gcc424_dbg_python264_numpy deleted file mode 100755 index d5e2effa5..000000000 --- a/docs/install_examples/linux_64_gcc424_dbg_python264_numpy +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/sh -# -# This is currently the test base. Meaning that the blessed versions -# of all test problems are created from this configuration. -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_Develop -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=${HOME}/arch/linux64_gcc424/python-2.6.4/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -WITH_H298MODIFY_CAPABILITY='y' -export WITH_H298MODIFY_CAPABILITY - -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -MATLAB_CMD="/usr/local/matlab/7.9/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="${HOME}/arch/linux64_gcc424/python-2.6.4/lib/python2.6/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -CXX='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/g++' -export CXX - -CXX_DEPENDS='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM' -export CXX_DEPENDS - -CC='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CC - -F77='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/gfortran' -export F77 - -CFLAGS="-g -Wall" -export CFLAGS - -CXXFLAGS="-g -Wall -Woverloaded-virtual -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-g -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS="-lgfortran " -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=gmake -export MAKE - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME='${HOME}/arch/linux64_gcc424/sundials-2.4.0_dbg' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/linux_64_gcc424_opt_python252_numpy b/docs/install_examples/linux_64_gcc424_opt_python252_numpy deleted file mode 100755 index e0a4a2d57..000000000 --- a/docs/install_examples/linux_64_gcc424_opt_python252_numpy +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh -# -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -#CXX='g++ -m32 -Wa,--32' -CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CXX - -CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM' -export CXX_DEPENDS - - -#CC='gcc -m32 -Wa,--32' -CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CC - -#F77='g77 -m32 -Wa,--32' -F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran' -export F77 - -CFLAGS="-O -Wall" -export CFLAGS - -CXXFLAGS="-O -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-O -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS="-lgfortran -lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=gmake -export MAKE - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux64/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/mac_gcc401_python251_numpy b/docs/install_examples/mac_gcc401_python251_numpy deleted file mode 100755 index 3940a8e50..000000000 --- a/docs/install_examples/mac_gcc401_python251_numpy +++ /dev/null @@ -1,106 +0,0 @@ -#!/bin/sh -# -# This is currently the test base. Meaning that the blessed versions -# of all test problems are created from this configuration. -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/mac/cantera-1.8_python251_numpy -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -# MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -# export MATLAB_CMD - -BUILD_F90_INTERFACE="n" -export BUILD_F90_INTERFACE - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="/home/hkmoffa/arch/mac/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -#GRAPHVIZDIR=${HOME}'/arch/linux/bin' -#export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="y" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -CXX='gcc' -export CXX - -CXX_DEPENDS='g++ -MM' -export CXX_DEPENDS - -CC='gcc' -export CC - -F77='g77' -export F77 - -CFLAGS="-g -Wall" -export CFLAGS - -CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-g -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS=" -lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=make -export MAKE - -USE_SUNDIALS='n' -export USE_SUNDIALS -SUNDIALS_HOME='/home/hkmoffa/arch/linux64/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/sol10_64bit_CC57_dbg_py24_numarray b/docs/install_examples/sol10_64bit_CC57_dbg_py24_numarray deleted file mode 100755 index 98d450e33..000000000 --- a/docs/install_examples/sol10_64bit_CC57_dbg_py24_numarray +++ /dev/null @@ -1,141 +0,0 @@ -#!/bin/sh -# -# Sierra 64 bit setup: -# -xO4 -xtarget=native64 -xarch=native64 -xcode=pic32 -DSUN10 -library=stlport4 -# -# Sierra warnings setup: -# +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhid enmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit -# -# Notes: -# When you add flsgs with % in them python won't build, because there is an -# error in the python distutils routines. I am currently manually -# fixing these. -# -# Program Names: -# -MAKE=gmake -export MAKE - -# -# Pointers to the 64 bit python built with Sunpro compilers -PYTHON_DIR=${HOME}/arch/sol_py64 -export PYTHON_DIR -PYTHON_CMD=${HOME}/arch/sol_py64/bin/python -export PYTHON_CMD - -# -# Use the CC compiler for C++ code -CXX=CC -export CXX -# -# Specification of the c compiler -# -CC=cc -export CC - -CXX_DEPENDS='CC -xM1' -export CXX_DEPENDS - -USE_NUMERIC='n' -export USE_NUMERIC - -# -# HKM 7/22/09 -# The matlab option is currently not working. Matlab uses the gcc -# compiler. This setup uses the solaris compiler. I can get -# the matlab extensions to compile. But, when I run matlab -# I get an unsatisfied external -# When I add the commands: -# -l/opt/SUNWspro/lib/f9 -lCrun -lCstd -lfsu -# to the matlab build, I can get rid of the runtime unsatisfied -# external. However, I immediate crash dump matlab. This -# suggests that there are duplicate Cstd routines from gcc and -# from the solaris compilers fighting it out. -# I believe the solution will involve compiling everything -# with gcc in order to get matlab on solaris to work. -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -DEBUG_MODE="y" -export DEBUG_MODE - -# -# Compiler Flags -# -BITCOMPILE="64" -export BITCOMPILE -# -# remember the issue with % and python -# -EFLAGS=" +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhidenmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit" -#AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32 -library=stlport4" -AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32" -export AFLAGS - -F77=f77 -export F77 - -F90=f95 -export F90 - -FFLAGS="-g -xtarget=native64 -xarch=native64 -xcode=pic32 " -export FFLAGS - -CFLAGS="-g -xtarget=native64 -xarch=native64 -xcode=pic32 -v " -export CFLAGS - -CXXFLAGS="-g $AFLAGS $EFLAGS -DDEBUG_HKM" -export CXXFLAGS - -LCXX_END_LIBS="-lm " -export LCXX_END_LIBS - -# other useful endlibs for solaris 64 bit are -# -mt -lsunmath -lfsu - -USE_SUNDIALS='n' -export USE_SUNDIALS - -WITH_VCSNONIDEAL='y' -export WITH_VCSNONIDEAL - -# -# Location Variables - set the directory to point to -# a 64-bit specific directory. -# -CANTERA_INSTALL_DIR=${HOME}/arch/sol_py64/cantera-1.8 -export CANTERA_INSTALL_DIR - -CANTERA_CONFIG_PREFIX=${HOME}/arch/sol_py64/cantera-1.8 -export CANTERA_CONFIG_PREFIX - -#CANTERA_PYTHON_HOME=${CANTERA_PYTHON_HOME:="$HOME/python_modules"} -#export CANTERA_PYTHON_HOME - -SET_PYTHON_SITE_PACKAGE_TOPDIR="y" -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=${HOME}"/arch/sol_py64/cantera-1.8" -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_PACKAGE="full" -#PYTHON_PACKAGE="minimal" -#PYTHON_PACKAGE="none" -export PYTHON_PACKAGE - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -# -# Archive commands -# -ARCHIVE="CC -xar -xcode=pic32 -o " -export ARCHIVE - - -# -# Invoke the regular configure script -# -./preconfig - diff --git a/docs/install_examples/sol10_64bit_CC57_opt_py24_numarray b/docs/install_examples/sol10_64bit_CC57_opt_py24_numarray deleted file mode 100755 index cc6fc347f..000000000 --- a/docs/install_examples/sol10_64bit_CC57_opt_py24_numarray +++ /dev/null @@ -1,141 +0,0 @@ -#!/bin/sh -# -# Sierra 64 bit setup: -# -xO4 -xtarget=native64 -xarch=native64 -xcode=pic32 -DSUN10 -library=stlport4 -# -# Sierra warnings setup: -# +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhid enmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit -# -# Notes: -# When you add flsgs with % in them python won't build, because there is an -# error in the python distutils routines. I am currently manually -# fixing these. -# -# Program Names: -# -MAKE=gmake -export MAKE - -# -# Pointers to the 64 bit python built with Sunpro compilers -PYTHON_DIR=${HOME}/arch/sol_py64 -export PYTHON_DIR -PYTHON_CMD=${HOME}/arch/sol_py64/bin/python -export PYTHON_CMD - -# -# Use the CC compiler for C++ code -CXX=CC -export CXX -# -# Specification of the c compiler -# -CC=cc -export CC - -CXX_DEPENDS='CC -xM1' -export CXX_DEPENDS - -USE_NUMERIC='n' -export USE_NUMERIC - -# -# HKM 7/22/09 -# The matlab option is currently not working. Matlab uses the gcc -# compiler. This setup uses the solaris compiler. I can get -# the matlab extensions to compile. But, when I run matlab -# I get an unsatisfied external -# When I add the commands: -# -l/opt/SUNWspro/lib/f9 -lCrun -lCstd -lfsu -# to the matlab build, I can get rid of the runtime unsatisfied -# external. However, I immediate crash dump matlab. This -# suggests that there are duplicate Cstd routines from gcc and -# from the solaris compilers fighting it out. -# I believe the solution will involve compiling everything -# with gcc in order to get matlab on solaris to work. -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -DEBUG_MODE="y" -export DEBUG_MODE - -# -# Compiler Flags -# -BITCOMPILE="64" -export BITCOMPILE -# -# remember the issue with % and python -# -EFLAGS=" +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhidenmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit" -#AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32 -library=stlport4" -AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32" -export AFLAGS - -F77=f77 -export F77 - -F90=f95 -export F90 - -FFLAGS="-O -xtarget=native64 -xarch=native64 -xcode=pic32 " -export FFLAGS - -CFLAGS="-O -xtarget=native64 -xarch=native64 -xcode=pic32 -v " -export CFLAGS - -CXXFLAGS="-O $AFLAGS $EFLAGS -DDEBUG_HKM" -export CXXFLAGS - -LCXX_END_LIBS="-lm " -export LCXX_END_LIBS - -# other useful endlibs for solaris 64 bit are -# -mt -lsunmath -lfsu - -USE_SUNDIALS='n' -export USE_SUNDIALS - -WITH_VCSNONIDEAL='y' -export WITH_VCSNONIDEAL - -# -# Location Variables - set the directory to point to -# a 64-bit specific directory. -# -CANTERA_INSTALL_DIR=${HOME}/arch/sol_py64/cantera-1.8.0 -export CANTERA_INSTALL_DIR - -CANTERA_CONFIG_PREFIX=${HOME}/arch/sol_py64/cantera-1.8.0 -export CANTERA_CONFIG_PREFIX - -#CANTERA_PYTHON_HOME=${CANTERA_PYTHON_HOME:="$HOME/python_modules"} -#export CANTERA_PYTHON_HOME - -SET_PYTHON_SITE_PACKAGE_TOPDIR="y" -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=${HOME}"/arch/sol_py64/cantera-1.8.0" -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_PACKAGE="full" -#PYTHON_PACKAGE="minimal" -#PYTHON_PACKAGE="none" -export PYTHON_PACKAGE - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -# -# Archive commands -# -ARCHIVE="CC -xar -xcode=pic32 -o " -export ARCHIVE - - -# -# Invoke the regular configure script -# -./preconfig - diff --git a/docs/install_examples/test_base b/docs/install_examples/test_base deleted file mode 100755 index 2da813547..000000000 --- a/docs/install_examples/test_base +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh -# -# This is currently the test base. Meaning that the blessed versions -# of all test problems are created from this configuration. -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -#CXX='g++ -m32 -Wa,--32' -CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CXX - -CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM' -export CXX_DEPENDS - - -#CC='gcc -m32 -Wa,--32' -CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CC - -#F77='g77 -m32 -Wa,--32' -F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran' -export F77 - -CFLAGS="-g -Wall" -export CFLAGS - -CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-g -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS="-lgfortran -lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=gmake -export MAKE - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux64/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/ext/Makefile.in b/ext/Makefile.in deleted file mode 100755 index d902d6cfe..000000000 --- a/ext/Makefile.in +++ /dev/null @@ -1,104 +0,0 @@ -#/bin/sh -# -# $Source: /cvsroot/cantera/cantera/ext/Makefile.in,v $ -# $Author: dggoodwin $ -# $Revision: 1.10 $ -# $Date: 2008/02/13 06:43:27 $ -# -# Makefile for ext directory -# -BUILD_LAPACK=@build_lapack@ -BUILD_BLAS=@build_blas@ -BUILD_WITH_F2C=@build_with_f2c@ -BUILD_F2C_LIB=@build_f2c_lib@ -USE_SUNDIALS=@use_sundials@ - -LIBS = blas/libctblas.a lapack/libctlapack.a math/libctmath.a \ - cvode/libcvode.a tpx/libtpx.a - -all: -ifeq ($(BUILD_F2C_LIB),1) - (if test -d "f2c_libs" ; then \ - cd f2c_libs ; @MAKE@ ; \ - fi) -endif -ifeq ($(BUILD_WITH_F2C),1) -ifeq ($(BUILD_LAPACK),1) - cd f2c_lapack; @MAKE@ -else - cd f2c_lapack; @MAKE@ clean -endif -ifeq ($(BUILD_BLAS),1) - cd f2c_blas; @MAKE@ -else - cd f2c_blas; @MAKE@ clean -endif -# cd f2c_recipes; @MAKE@ - cd f2c_math; @MAKE@ -else -ifeq ($(BUILD_LAPACK),1) - cd lapack; @MAKE@ -else - cd lapack; @MAKE@ clean -endif -ifeq ($(BUILD_BLAS),1) - cd blas; @MAKE@ -else - cd blas; @MAKE@ clean -endif -# cd recipes; @MAKE@ - cd math; @MAKE@ -endif -ifeq ($(USE_SUNDIALS),0) - cd cvode; @MAKE@ -endif - cd tpx; @MAKE@ - -clean: - cd lapack; @MAKE@ clean - cd blas; @MAKE@ clean - cd recipes; @MAKE@ clean - cd cvode; @MAKE@ clean - cd math; @MAKE@ clean - cd tpx; @MAKE@ clean - (if test -d "f2c_libs" ; then \ - cd f2c_libs ; @MAKE@ clean ; \ - fi) - (if test -d "f2c_lapack" ; then \ - cd f2c_lapack ; @MAKE@ clean ; \ - fi) - (if test -d "f2c_blas" ; then \ - cd f2c_blas ; @MAKE@ clean ; \ - fi) - (if test -d "f2c_math" ; then \ - cd f2c_math ; @MAKE@ clean ; \ - fi) -# (if test -d "f2c_recipes" ; then \ -# cd f2c_recipes ; @MAKE@ clean ; \ -# fi) - -depends: -ifeq ($(BUILD_WITH_F2C),1) - (if test -d "f2c_libs" ; then \ - cd f2c_libs ; @MAKE@ depends ; \ - fi) - (if test -d "f2c_lapack" ; then \ - cd f2c_lapack ; @MAKE@ depends ; \ - fi) - (if test -d "f2c_blas" ; then \ - cd f2c_blas ; @MAKE@ depends ; \ - fi) - (if test -d "f2c_math" ; then \ - cd f2c_math ; @MAKE@ depends ; \ - fi) -# (if test -d "f2c_recipes" ; then \ - cd f2c_recipes ; @MAKE@ depends ; \ - fi) -else - cd lapack; @MAKE@ depends - cd blas; @MAKE@ depends -# cd recipes; @MAKE@ depends - cd math; @MAKE@ depends -endif - cd cvode; @MAKE@ depends - cd tpx; @MAKE@ depends diff --git a/ext/blas/Makefile.in b/ext/blas/Makefile.in deleted file mode 100755 index caef518a0..000000000 --- a/ext/blas/Makefile.in +++ /dev/null @@ -1,78 +0,0 @@ -#/bin/sh -# $License$ -# -# $Id: Makefile.in,v 1.8 2008/12/30 21:49:41 hkmoffa Exp $ -# -do_ranlib = @DO_RANLIB@ -BLASLIB = @buildlib@/libctblas.a - -SUFFIXES= -SUFFIXES= .f .o - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -F_FLAGS = @FFLAGS@ $(PIC_FLAG) - -OBJS = \ -dasum.o \ -daxpy.o \ -dcabs1.o \ -dcopy.o \ -ddot.o \ -dgbmv.o \ -dgemm.o \ -dgemv.o \ -dger.o \ -dnrm2.o \ -drot.o \ -drotg.o \ -drotm.o \ -drotmg.o \ -dsbmv.o \ -dscal.o \ -dsdot.o \ -dspmv.o \ -dspr.o \ -dspr2.o \ -dswap.o \ -dsymm.o \ -dsymv.o \ -dsyr.o \ -dsyr2.o \ -dsyr2k.o \ -dsyrk.o \ -dtbmv.o \ -dtbsv.o \ -dtpmv.o \ -dtpsv.o \ -dtrmm.o \ -dtrmv.o \ -dtrsm.o \ -dtrsv.o \ -dzasum.o \ -idamax.o \ -lsame.o \ -xerbla.o - -# dznrm2.o \ - - -#SRCS = $(OBJS:.o=.cpp) - - -$(BLASLIB): $(OBJS) - @ARCHIVE@ $(BLASLIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(ZEROD_LIB) -endif - -%.o : %.f - $(PURIFY) @F77@ -c $< $(F_FLAGS) - -clean: - $(RM) $(OBJS) $(BLASLIB) - -depends: - diff --git a/ext/cvode/Makefile.in b/ext/cvode/Makefile.in deleted file mode 100755 index ef438dc2b..000000000 --- a/ext/cvode/Makefile.in +++ /dev/null @@ -1,104 +0,0 @@ -# -# $Source: /cvsroot/cantera/cantera/ext/cvode/Makefile.in,v $ -# $Author: hkmoffa $ -# $Revision: 1.10 $ -# $Date: 2008/12/30 21:49:42 $ -# -#---------------------------------------------------------------------------- -# CVODE -#---------------------------------------------------------------------------- -# This file will compile all the CVODE modules in order to make the Unix -# library cvodelib.a. All object (.o) files are removed after the library -# has been created. -# -# The following variables are used: -# -# COMPILER - set to use the gcc compiler -# OPTS - list of compiler options -# OBJS - list of object files in cvodelib.a -# -# Modify the COMPILER and OPTS variables as needed. -# -do_ranlib = @DO_RANLIB@ - -all: @buildlib@/libcvode.a - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -COMPILER = @CC@ - -OPTS = -I../include @CFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -OBJS = source/cvode.o source/cvdense.o source/dense.o source/cvband.o \ - source/band.o source/cvdiag.o source/cvspgmr.o source/spgmr.o \ - source/iterativ.o source/cvbandpre.o source/nvector.o source/llnlmath.o - - -@buildlib@/libcvode.a: $(OBJS) - $(RM) @buildlib@/libcvode.a - (ar rcv @buildlib@/libcvode.a $(OBJS)) -ifeq ($(do_ranlib),1) - @RANLIB@ @buildlib@/libcvode.a -endif - -source/cvode.o: source/cvode.c include/cvode.h include/llnltyps.h \ - include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvode.c) - -source/cvdense.o: source/cvdense.c include/cvdense.h include/cvode.h \ - include/dense.h include/llnltyps.h include/nvector.h \ - include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvdense.c) - -source/dense.o: source/dense.c include/dense.h include/llnltyps.h \ - include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c dense.c) - -source/cvband.o: source/cvband.c include/cvband.h include/cvode.h \ - include/band.h include/llnltyps.h include/nvector.h \ - include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvband.c) - -source/band.o: source/band.c include/band.h include/llnltyps.h \ - include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c band.c) - -source/cvdiag.o: source/cvdiag.c include/cvdiag.h include/cvode.h \ - include/llnltyps.h include/nvector.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvdiag.c) - -source/cvspgmr.o: source/cvspgmr.c include/cvspgmr.h include/cvode.h \ - include/llnltyps.h include/nvector.h include/llnlmath.h \ - include/iterativ.h include/spgmr.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvspgmr.c) - -source/spgmr.o: source/spgmr.c include/spgmr.h include/iterativ.h \ - include/llnltyps.h include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c spgmr.c) - -source/iterativ.o: source/iterativ.c include/iterativ.h include/llnltyps.h \ - include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c iterativ.c) - -source/cvbandpre.o: source/cvbandpre.c include/cvbandpre.h include/cvode.h \ - include/nvector.h include/llnltyps.h include/llnlmath.h \ - include/band.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvbandpre.c) - -source/nvector.o: source/nvector.c include/nvector.h include/llnltyps.h \ - include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c nvector.c) - -source/llnlmath.o: source/llnlmath.c include/llnlmath.h include/llnltyps.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c llnlmath.c) - -$(OBJS): Makefile - -clean: - $(RM) @buildlib@/libcvode.a - $(RM) $(OBJS) - -depends: - diff --git a/ext/f2c_blas/Makefile.in b/ext/f2c_blas/Makefile.in deleted file mode 100755 index e10e9f192..000000000 --- a/ext/f2c_blas/Makefile.in +++ /dev/null @@ -1,126 +0,0 @@ -#/bin/sh -#/bin/sh -# -# $Revision: 1.10 $ -# $Date: 2009/01/12 19:34:14 $ -# - -.SUFFIXES : -.SUFFIXES : .c .d .o - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# the C++ compiler -CXX = @CXX@ - -# the C compiler -CC = @CC@ - -# C++ compile flags -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# C compile flags -CFLAGS = @CFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# Local include files -CXX_INCLUDES=-I../f2c_libs - -# How to compile the dependency file -.c.d: - @CXX_DEPENDS@ $(CFLAGS) $(CXX_INCLUDES) $*.c > $*.d - -# How to compile a C file -.c.o: - $(PURIFY) @CC@ -c $< @DEFS@ $(CFLAGS) $(CXX_INCLUDES) - - -# ----------------------------------------------- - -BLASLIB = @buildlib@/libctblas.a - -all: $(BLASLIB) - -OBJS = \ -dasum.o \ -daxpy.o \ -dcabs1.o \ -dcopy.o \ -ddot.o \ -dgbmv.o \ -dgemm.o \ -dgemv.o \ -dger.o \ -dnrm2.o \ -drot.o \ -drotg.o \ -drotm.o \ -drotmg.o \ -dsbmv.o \ -dscal.o \ -dsdot.o \ -dspmv.o \ -dspr.o \ -dspr2.o \ -dswap.o \ -dsymm.o \ -dsymv.o \ -dsyr.o \ -dsyr2.o \ -dsyr2k.o \ -dsyrk.o \ -dtbmv.o \ -dtbsv.o \ -dtpmv.o \ -dtpsv.o \ -dtrmm.o \ -dtrmv.o \ -dtrsm.o \ -dtrsv.o \ -dzasum.o \ -dznrm2.o \ -idamax.o \ -lsame.o \ -xerbla.o - -SRCS = $(OBJS:.o=.cpp) - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# rule to make library -$(BLASLIB): $(OBJS) - @ARCHIVE@ $(BLASLIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(BLASLIB) -endif - - -# ------------------------------------------------ -# Utility Targets - -clean: - $(RM) $(OBJS) $(BLASLIB) *.d .depends - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/ext/f2c_lapack/Makefile.in b/ext/f2c_lapack/Makefile.in deleted file mode 100755 index 732ad0f0d..000000000 --- a/ext/f2c_lapack/Makefile.in +++ /dev/null @@ -1,143 +0,0 @@ -#/bin/sh -# -# $Source: /cvsroot/cantera/cantera/ext/f2c_lapack/Makefile.in,v $ -# $Author: hkmoffa $ -# $Revision: 1.9 $ -# $Date: 2009/01/12 19:34:14 $ -# - -.SUFFIXES : -.SUFFIXES : .c .o .d - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# the C++ compiler -CXX = @CXX@ - -# the C compiler -CC = @CC@ - -# C++ compile flags -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(PIC_FLAG) - -# C compile flags -CFLAGS = @CFLAGS@ $(PIC_FLAG) - -# Local include files -CXX_INCLUDES=-I../f2c_libs - -# How to compile the dependency file -.c.d: - @CXX_DEPENDS@ $(CFLAGS) $(CXX_INCLUDES) $*.c > $*.d - -.c.o: - $(PURIFY) @CC@ -c $< $(CFLAGS) $(CXX_INCLUDES) - -# ----------------------------------------------- - -LAPACKLIB = @buildlib@/libctlapack.a - -all: $(LAPACKLIB) - -OBJS = \ -dbdsqr.o \ -dgbtrf.o \ -dgbtf2.o \ -dgbtrs.o \ -dgbsv.o \ -dgebd2.o \ -dgebrd.o \ -dgelq2.o \ -dgelqf.o \ -dgelss.o \ -dgeqr2.o \ -dgeqrf.o \ -dgetf2.o \ -dgetrf.o \ -dgetri.o \ -dgetrs.o \ -dlabad.o \ -dlabrd.o \ -dlacpy.o \ -dlamch.o \ -dlange.o \ -dlapy2.o \ -dlarf.o \ -dlarfb.o \ -dlarfg.o \ -dlarft.o \ -dlartg.o \ -dlas2.o \ -dlascl.o \ -dlaset.o \ -dlasq1.o \ -dlasq2.o \ -dlasq3.o \ -dlasq4.o \ -dlasq5.o \ -dlasq6.o \ -dlasr.o \ -dlasrt.o \ -dlassq.o \ -dlasv2.o \ -dlaswp.o \ -dorg2r.o \ -dorgbr.o \ -dorgl2.o \ -dorglq.o \ -dorgqr.o \ -dorm2r.o \ -dormbr.o \ -dorml2.o \ -dormlq.o \ -dormqr.o \ -drscl.o \ -dtrtri.o \ -dtrti2.o \ -ieeeck.o \ -ilaenv.o - - -# list of source files -SRCS = $(OBJS:.o=.c) - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - - -$(LAPACKLIB): $(OBJS) - @ARCHIVE@ $(LAPACKLIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LAPACKLIB) -endif -# ------------------------------------------------ -# Utility Targets - -clean: - $(RM) $(OBJS) $(LAPACKLIB) *.d .depends - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - diff --git a/ext/f2c_libs/Makefile.in b/ext/f2c_libs/Makefile.in deleted file mode 100755 index 714b7a4b0..000000000 --- a/ext/f2c_libs/Makefile.in +++ /dev/null @@ -1,206 +0,0 @@ -# -# $Source: /cvsroot/cantera/cantera/ext/f2c_libs/Makefile.in,v $ -# $Author$ -# $Revision$ -# $Date$ -# -# Unix makefile: see README. -# For C++, first "make hadd". -# If your compiler does not recognize ANSI C, add -# -DKR_headers -# to the CFLAGS = line below. -# On Sun and other BSD systems that do not provide an ANSI sprintf, add -# -DUSE_STRLEN -# to the CFLAGS = line below. -# On Linux systems, add -# -DNON_UNIX_STDIO -# to the CFLAGS = line below. For libf2c.so under Linux, also add -# -fPIC -# to the CFLAGS = line below. - -.SUFFIXES: .c .o .d - -# the C compiler -CC = @CC@ -SHELL = /bin/sh -do_ranlib = @DO_RANLIB@ -do_stripsymbols = @HAVE_STRIPSYMBOLS@ -PIC_FLAG=@PIC@ - -CFLAGS = @CFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# Destination f2c lib located in Cantera's build directory -# -> Calling it ctf2c -BUILDINCDIR=../../build/include/cantera -F2C_LIB = @buildlib@/libctf2c.a -F2C_H = $(BUILDINCDIR)/f2c.h - -# compile, then strip unnecessary symbols -.c.o: f2c.h - $(CC) -c -DSkip_f2c_Undefs $(CFLAGS) $*.c -ifeq ($(do_stripsymbols),yes) - ld @ldemulationarg@ -r -x -o $*.xxx $*.o - mv $*.xxx $*.o -endif - -## Under Solaris (and other systems that do not understand ld -x), -## omit -x in the ld line above. -## If your system does not have the ld command, comment out -## or remove both the ld and mv lines above. - -MISC = f77vers.o i77vers.o main.o s_rnge.o abort_.o exit_.o getarg_.o iargc_.o\ - getenv_.o signal_.o s_stop.o s_paus.o system_.o cabs.o\ - derf_.o derfc_.o erf_.o erfc_.o sig_die.o uninit.o -POW = pow_ci.o pow_dd.o pow_di.o pow_hh.o pow_ii.o pow_ri.o pow_zi.o pow_zz.o -CX = c_abs.o c_cos.o c_div.o c_exp.o c_log.o c_sin.o c_sqrt.o -DCX = z_abs.o z_cos.o z_div.o z_exp.o z_log.o z_sin.o z_sqrt.o -REAL = r_abs.o r_acos.o r_asin.o r_atan.o r_atn2.o r_cnjg.o r_cos.o\ - r_cosh.o r_dim.o r_exp.o r_imag.o r_int.o\ - r_lg10.o r_log.o r_mod.o r_nint.o r_sign.o\ - r_sin.o r_sinh.o r_sqrt.o r_tan.o r_tanh.o -DBL = d_abs.o d_acos.o d_asin.o d_atan.o d_atn2.o\ - d_cnjg.o d_cos.o d_cosh.o d_dim.o d_exp.o\ - d_imag.o d_int.o d_lg10.o d_log.o d_mod.o\ - d_nint.o d_prod.o d_sign.o d_sin.o d_sinh.o\ - d_sqrt.o d_tan.o d_tanh.o -INT = i_abs.o i_dim.o i_dnnt.o i_indx.o i_len.o i_mod.o i_nint.o i_sign.o\ - lbitbits.o lbitshft.o -HALF = h_abs.o h_dim.o h_dnnt.o h_indx.o h_len.o h_mod.o h_nint.o h_sign.o -CMP = l_ge.o l_gt.o l_le.o l_lt.o hl_ge.o hl_gt.o hl_le.o hl_lt.o -EFL = ef1asc_.o ef1cmc_.o -CHAR = f77_aloc.o s_cat.o s_cmp.o s_copy.o -I77 = backspac.o close.o dfe.o dolio.o due.o endfile.o err.o\ - fmt.o fmtlib.o ftell_.o iio.o ilnw.o inquire.o lread.o lwrite.o\ - open.o rdfmt.o rewind.o rsfe.o rsli.o rsne.o sfe.o sue.o\ - typesize.o uio.o util.o wref.o wrtfmt.o wsfe.o wsle.o wsne.o xwsne.o -QINT = pow_qq.o qbitbits.o qbitshft.o ftell64_.o -TIME = dtime_.o etime_.o - -# If you get an error compiling dtime_.c or etime_.c, try adding -# -DUSE_CLOCK to the CFLAGS assignment above; if that does not work, -# omit $(TIME) from OFILES = assignment below. - -# To get signed zeros in write statements on IEEE-arithmetic systems, -# add -DSIGNED_ZEROS to the CFLAGS assignment below and add signbit.o -# to the end of the OFILES = assignment below. - -# For INTEGER*8 support (which requires system-dependent adjustments to -# f2c.h), add $(QINT) to the OFILES = assignment below... - -OFILES = $(MISC) $(POW) $(CX) $(DCX) $(REAL) $(DBL) $(INT) \ - $(HALF) $(CMP) $(EFL) $(CHAR) $(I77) $(TIME) - -all: f2c.h signal1.h sysdep1.h $(F2C_LIB) $(F2C_H) - -$(F2C_LIB): $(OFILES) - @ARCHIVE@ $(F2C_LIB) $? -ifeq ($(do_ranlib),1) - @RANLIB@ $(F2C_LIB) -endif - -$(F2C_H): f2c.h - @INSTALL@ -d $(BUILDINCDIR) - @INSTALL@ -c f2c.h $(F2C_H) - -### If your system lacks ranlib, you don't need it; see README. - -f77vers.o: f77vers.c - $(CC) $(CFLAGS) -c f77vers.c - -i77vers.o: i77vers.c - $(CC) $(CFLAGS) -c i77vers.c - -# To get an "f2c.h" for use with "f2c -C++", first "make hadd" -hadd: f2c.h0 f2ch.add - cat f2c.h0 f2ch.add >f2c.h - -# For use with "f2c" and "f2c -A": -f2c.h: f2c.h0 - cp f2c.h0 f2c.h - -# You may need to adjust signal1.h and sysdep1.h suitably for your system... -signal1.h: signal1.h0 - cp signal1.h0 signal1.h - -sysdep1.h: sysdep1.h0 - cp sysdep1.h0 sysdep1.h - -# If your system lacks onexit() and you are not using an -# ANSI C compiler, then you should uncomment the following -# two lines (for compiling main.o): -#main.o: main.c -# $(CC) -c -DNO_ONEXIT -DSkip_f2c_Undefs main.c -# On at least some Sun systems, it is more appropriate to -# uncomment the following two lines: -#main.o: main.c -# $(CC) -c -Donexit=on_exit -DSkip_f2c_Undefs main.c - -clean: - $(RM) $(F2C_LIB) *.o *.d arith.h signal1.h sysdep1.h $(F2C_H) - -$(OFILES): f2c.h -backspac.o: fio.h -close.o: fio.h -dfe.o: fio.h -dfe.o: fmt.h -due.o: fio.h -endfile.o: fio.h rawio.h -err.o: fio.h rawio.h -fmt.o: fio.h -fmt.o: fmt.h -iio.o: fio.h -iio.o: fmt.h -ilnw.o: fio.h -ilnw.o: lio.h -inquire.o: fio.h -lread.o: fio.h -lread.o: fmt.h -lread.o: lio.h -lread.o: fp.h -lwrite.o: fio.h -lwrite.o: fmt.h -lwrite.o: lio.h -open.o: fio.h rawio.h -rdfmt.o: fio.h -rdfmt.o: fmt.h -rdfmt.o: fp.h -rewind.o: fio.h -rsfe.o: fio.h -rsfe.o: fmt.h -rsli.o: fio.h -rsli.o: lio.h -rsne.o: fio.h -rsne.o: lio.h -sfe.o: fio.h -signbit.o: arith.h -sue.o: fio.h -uio.o: fio.h -uninit.o: arith.h -util.o: fio.h -wref.o: fio.h -wref.o: fmt.h -wref.o: fp.h - wrtfmt.o: fio.h -wrtfmt.o: fmt.h -wsfe.o: fio.h -wsfe.o: fmt.h -wsle.o: fio.h -wsle.o: fmt.h -wsle.o: lio.h -wsne.o: fio.h -wsne.o: lio.h -xwsne.o: fio.h -xwsne.o: lio.h -xwsne.o: fmt.h - -arith.h: arithchk.c - $(CC) $(CFLAGS) -o chkll -DNO_FPINIT arithchk.c -lm ||\ - $(CC) -DNO_LONG_LONG $(CFLAGS) -o chkll -DNO_FPINIT arithchk.c -lm - ./chkll >arith.h - rm -f chkll* arithchk.o - -$(OFILES): Makefile - -# depends target -> already in the Makefile -depends: - diff --git a/ext/f2c_libs/arithchk/arith.hwin32 b/ext/f2c_libs/arithchk/arith.hwin32 deleted file mode 100644 index 9746f9c1c..000000000 --- a/ext/f2c_libs/arithchk/arith.hwin32 +++ /dev/null @@ -1,3 +0,0 @@ -#define IEEE_8087 -#define Arith_Kind_ASL 1 -#define Double_Align diff --git a/ext/f2c_math/Makefile.in b/ext/f2c_math/Makefile.in deleted file mode 100644 index 35ead9668..000000000 --- a/ext/f2c_math/Makefile.in +++ /dev/null @@ -1,112 +0,0 @@ -#/bin/sh -# -# $Source: /cvsroot/cantera/cantera/ext/f2c_math/Makefile.in,v $ -# $Author: hkmoffa $ -# $Revision: 1.10 $ -# $Date: 2008/12/30 21:49:42 $ -# - -.SUFFIXES : -.SUFFIXES : .c .cpp .d .o - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# the C++ compiler -CXX = @CXX@ - -# the C compiler -CC = @CC@ - -# C++ compile flags -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) -CFLAGS = @CFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# Local include files -CXX_INCLUDES=-I../f2c_libs - -# How to compile the dependency file -.c.d: - @CXX_DEPENDS@ $(CFLAGS) $(CXX_INCLUDES) $*.c > $*.d - -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -# How to compile a C file -.c.o: - $(PURIFY) @CC@ -c $< @DEFS@ $(CFLAGS) $(CXX_INCLUDES) - -# How to compile a Cpp file -.cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) - - -# ----------------------------------------------- - -LIB = @buildlib@/libctmath.a - -all: $(LIB) - -OBJS = \ -mach.o \ -ddaspk.o \ -dgbefa.o \ -dgbsl.o \ -dgefa.o \ -dgesl.o \ -dp1vlu.o \ -dpcoef.o \ -dpolft.o \ -fdump.o \ -j4save.o \ -pcoef.o \ -polfit.o \ -pvalue.o \ -xercnt.o \ -xerhlt.o \ -xermsg.o \ -xerprn.o \ -xersve.o \ -xgetua.o \ -printstring.o - -SRCS = $(OBJS:.o=.cpp) - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# How to make the static library -$(LIB): $(OBJS) - @ARCHIVE@ $(LIB) $(OBJS) -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -# ------------------------------------------------ -# Utility Targets - -clean: - $(RM) $(OBJS) $(LIB) *.d .depends - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/ext/f2c_math/mkl_cblas.h b/ext/f2c_math/mkl_cblas.h deleted file mode 100644 index dc5b45a71..000000000 --- a/ext/f2c_math/mkl_cblas.h +++ /dev/null @@ -1,644 +0,0 @@ -/* -// INTEL CORPORATION PROPRIETARY INFORMATION -// This software is supplied under the terms of a license agreement or -// nondisclosure agreement with Intel Corporation and may not be copied -// or disclosed except in accordance with the terms of that agreement. -// Copyright 1999, 2000 Intel Corporation. All Rights Reserved. -// -// File : mkl_cblas.h -// Purpose : MKL CBLAS interface -// Author : Shemyakin Andrey -*/ - -#ifndef __MKL_CBLAS_H__ -#define __MKL_CBLAS_H__ -#include - -#ifdef __cplusplus -extern "C" { /* Assume C declarations for C++ */ -#endif /* __cplusplus */ - -/* - * Enumerated and derived types - */ -#define CBLAS_INDEX size_t /* this may vary between platforms */ - -typedef enum {CblasRowMajor=101, CblasColMajor=102} CBLAS_ORDER; -typedef enum {CblasNoTrans=111, CblasTrans=112, CblasConjTrans=113} CBLAS_TRANSPOSE; -typedef enum {CblasUpper=121, CblasLower=122} CBLAS_UPLO; -typedef enum {CblasNonUnit=131, CblasUnit=132} CBLAS_DIAG; -typedef enum {CblasLeft=141, CblasRight=142} CBLAS_SIDE; - -/* - * =========================================================================== - * Prototypes for level 1 BLAS functions (complex are recast as routines) - * =========================================================================== - */ - -float cblas_sdot(const int N, const float *X, const int incX, - const float *Y, const int incY); -float cblas_sdoti(const int N, const float *X, const int *indx, - const float *Y); -double cblas_ddot(const int N, const double *X, const int incX, - const double *Y, const int incY); -double cblas_ddoti(const int N, const double *X, const int *indx, - const double *Y); - -/* - * Functions having prefixes Z and C only - */ -void cblas_cdotu_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotu); -void cblas_cdotui_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); -void cblas_cdotc_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotc); -void cblas_cdotci_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); - -void cblas_zdotu_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotu); -void cblas_zdotui_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); -void cblas_zdotc_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotc); -void cblas_zdotci_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); - - -/* - * Functions having prefixes S D SC DZ - */ -float cblas_snrm2(const int N, const float *X, const int incX); -float cblas_sasum(const int N, const float *X, const int incX); - -double cblas_dnrm2(const int N, const double *X, const int incX); -double cblas_dasum(const int N, const double *X, const int incX); - -float cblas_scnrm2(const int N, const void *X, const int incX); -float cblas_scasum(const int N, const void *X, const int incX); - -double cblas_dznrm2(const int N, const void *X, const int incX); -double cblas_dzasum(const int N, const void *X, const int incX); - - -/* - * Functions having standard 4 prefixes (S D C Z) - */ -CBLAS_INDEX cblas_isamax(const int N, const float *X, const int incX); -CBLAS_INDEX cblas_idamax(const int N, const double *X, const int incX); -CBLAS_INDEX cblas_icamax(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_izamax(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_isamin(const int N, const float *X, const int incX); -CBLAS_INDEX cblas_idamin(const int N, const double *X, const int incX); -CBLAS_INDEX cblas_icamin(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_izamin(const int N, const void *X, const int incX); - -/* - * =========================================================================== - * Prototypes for level 1 BLAS routines - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (s, d, c, z) - */ -void cblas_sswap(const int N, float *X, const int incX, - float *Y, const int incY); -void cblas_scopy(const int N, const float *X, const int incX, - float *Y, const int incY); -void cblas_saxpy(const int N, const float alpha, const float *X, - const int incX, float *Y, const int incY); -void cblas_saxpyi(const int N, const float alpha, const float *X, - const int *indx, float *Y); -void cblas_sgthr(const int N, const float *Y, float *X, - const int *indx); -void cblas_sgthrz(const int N, float *Y, float *X, - const int *indx); -void cblas_ssctr(const int N, const float *X, const int *indx, - float *Y); -void cblas_srotg(float *a, float *b, float *c, float *s); - -void cblas_dswap(const int N, double *X, const int incX, - double *Y, const int incY); -void cblas_dcopy(const int N, const double *X, const int incX, - double *Y, const int incY); -void cblas_daxpy(const int N, const double alpha, const double *X, - const int incX, double *Y, const int incY); -void cblas_daxpyi(const int N, const double alpha, const double *X, - const int *indx, double *Y); -void cblas_dgthr(const int N, const double *Y, double *X, - const int *indx); -void cblas_dgthrz(const int N, double *Y, double *X, - const int *indx); -void cblas_dsctr(const int N, const double *X, const int *indx, - double *Y); -void cblas_drotg(double *a, double *b, double *c, double *s); - -void cblas_cswap(const int N, void *X, const int incX, - void *Y, const int incY); -void cblas_ccopy(const int N, const void *X, const int incX, - void *Y, const int incY); -void cblas_caxpy(const int N, const void *alpha, const void *X, - const int incX, void *Y, const int incY); -void cblas_caxpyi(const int N, const void *alpha, const void *X, - const int *indx, void *Y); -void cblas_cgthr(const int N, const void *Y, void *X, - const int *indx); -void cblas_cgthrz(const int N, void *Y, void *X, - const int *indx); -void cblas_csctr(const int N, const void *X, const int *indx, - void *Y); -void cblas_crotg(void *a, const void *b, float *c, void *s); - -void cblas_zswap(const int N, void *X, const int incX, - void *Y, const int incY); -void cblas_zcopy(const int N, const void *X, const int incX, - void *Y, const int incY); -void cblas_zaxpy(const int N, const void *alpha, const void *X, - const int incX, void *Y, const int incY); -void cblas_zaxpyi(const int N, const void *alpha, const void *X, - const int *indx, void *Y); -void cblas_zgthr(const int N, const void *Y, void *X, - const int *indx); -void cblas_zgthrz(const int N, void *Y, void *X, - const int *indx); -void cblas_zsctr(const int N, const void *X, const int *indx, - void *Y); -void cblas_zrotg(void *a, const void *b, double *c, void *s); - -/* - * Routines with S and D prefix only - */ -void cblas_srotmg(float *d1, float *d2, float *b1, const float *b2, float *P); -void cblas_srot(const int N, float *X, const int incX, - float *Y, const int incY, const float c, const float s); -void cblas_sroti(const int N, float *X, const int *indx, - float *Y, const float c, const float s); -void cblas_srotm(const int N, float *X, const int incX, - float *Y, const int incY, const float *P); - -void cblas_drotmg(double *d1, double *d2, double *b1, const double *b2, double *P); -void cblas_drot(const int N, double *X, const int incX, - double *Y, const int incY, const double c, const double s); -void cblas_drotm(const int N, double *X, const int incX, - double *Y, const int incY, const double *P); -void cblas_droti(const int N, double *X, const int *indx, - double *Y, const double c, const double s); - -/* - * Routines with CS and ZD prefix only - */ -void cblas_csrot(const int N, void *X, const int incX, - void *Y, const int incY, const float c, const float s); -void cblas_zdrot(const int N, void *X, const int incX, - void *Y, const int incY, const double c, const double s); - -/* - * Routines with S D C Z CS and ZD prefixes - */ -void cblas_sscal(const int N, const float alpha, float *X, const int incX); -void cblas_dscal(const int N, const double alpha, double *X, const int incX); -void cblas_cscal(const int N, const void *alpha, void *X, const int incX); -void cblas_zscal(const int N, const void *alpha, void *X, const int incX); -void cblas_csscal(const int N, const float alpha, void *X, const int incX); -void cblas_zdscal(const int N, const double alpha, void *X, const int incX); - -/* - * =========================================================================== - * Prototypes for level 2 BLAS - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (S, D, C, Z) - */ -void cblas_sgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const float alpha, const float *A, const int lda, - const float *X, const int incX, const float beta, - float *Y, const int incY); -void cblas_sgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const float alpha, - const float *A, const int lda, const float *X, - const int incX, const float beta, float *Y, const int incY); -void cblas_strmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *A, const int lda, - float *X, const int incX); -void cblas_stbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const float *A, const int lda, - float *X, const int incX); -void cblas_stpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *Ap, float *X, const int incX); -void cblas_strsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *A, const int lda, float *X, - const int incX); -void cblas_stbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const float *A, const int lda, - float *X, const int incX); -void cblas_stpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *Ap, float *X, const int incX); - -void cblas_dgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const double alpha, const double *A, const int lda, - const double *X, const int incX, const double beta, - double *Y, const int incY); -void cblas_dgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const double alpha, - const double *A, const int lda, const double *X, - const int incX, const double beta, double *Y, const int incY); -void cblas_dtrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *A, const int lda, - double *X, const int incX); -void cblas_dtbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const double *A, const int lda, - double *X, const int incX); -void cblas_dtpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *Ap, double *X, const int incX); -void cblas_dtrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *A, const int lda, double *X, - const int incX); -void cblas_dtbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const double *A, const int lda, - double *X, const int incX); -void cblas_dtpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *Ap, double *X, const int incX); - -void cblas_cgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *X, const int incX, const void *beta, - void *Y, const int incY); -void cblas_cgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const void *alpha, - const void *A, const int lda, const void *X, - const int incX, const void *beta, void *Y, const int incY); -void cblas_ctrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, - void *X, const int incX); -void cblas_ctbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ctpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); -void cblas_ctrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, void *X, - const int incX); -void cblas_ctbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ctpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); - -void cblas_zgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *X, const int incX, const void *beta, - void *Y, const int incY); -void cblas_zgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const void *alpha, - const void *A, const int lda, const void *X, - const int incX, const void *beta, void *Y, const int incY); -void cblas_ztrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, - void *X, const int incX); -void cblas_ztbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ztpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); -void cblas_ztrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, void *X, - const int incX); -void cblas_ztbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ztpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); - - -/* - * Routines with S and D prefixes only - */ -void cblas_ssymv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *A, - const int lda, const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_ssbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const float alpha, const float *A, - const int lda, const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_sspmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *Ap, - const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_sger(const CBLAS_ORDER order, const int M, const int N, - const float alpha, const float *X, const int incX, - const float *Y, const int incY, float *A, const int lda); -void cblas_ssyr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, float *A, const int lda); -void cblas_sspr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, float *Ap); -void cblas_ssyr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, const float *Y, const int incY, float *A, - const int lda); -void cblas_sspr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, const float *Y, const int incY, float *A); - -void cblas_dsymv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *A, - const int lda, const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dsbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const double alpha, const double *A, - const int lda, const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dspmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *Ap, - const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dger(const CBLAS_ORDER order, const int M, const int N, - const double alpha, const double *X, const int incX, - const double *Y, const int incY, double *A, const int lda); -void cblas_dsyr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, double *A, const int lda); -void cblas_dspr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, double *Ap); -void cblas_dsyr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, const double *Y, const int incY, double *A, - const int lda); -void cblas_dspr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, const double *Y, const int incY, double *A); - - -/* - * Routines with C and Z prefixes only - */ -void cblas_chemv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_chbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_chpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *Ap, - const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_cgeru(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_cgerc(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_cher(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const void *X, const int incX, - void *A, const int lda); -void cblas_chpr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const void *X, - const int incX, void *A); -void cblas_cher2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_chpr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *Ap); - -void cblas_zhemv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zhbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zhpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *Ap, - const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zgeru(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zgerc(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zher(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const void *X, const int incX, - void *A, const int lda); -void cblas_zhpr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const void *X, - const int incX, void *A); -void cblas_zher2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zhpr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *Ap); - -/* - * =========================================================================== - * Prototypes for level 3 BLAS - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (S, D, C, Z) - */ -void cblas_sgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const float alpha, const float *A, - const int lda, const float *B, const int ldb, - const float beta, float *C, const int ldc); -void cblas_ssymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const float alpha, const float *A, const int lda, - const float *B, const int ldb, const float beta, - float *C, const int ldc); -void cblas_ssyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const float *A, const int lda, - const float beta, float *C, const int ldc); -void cblas_ssyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const float *A, const int lda, - const float *B, const int ldb, const float beta, - float *C, const int ldc); -void cblas_strmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const float alpha, const float *A, const int lda, - float *B, const int ldb); -void cblas_strsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const float alpha, const float *A, const int lda, - float *B, const int ldb); - -void cblas_dgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const double alpha, const double *A, - const int lda, const double *B, const int ldb, - const double beta, double *C, const int ldc); -void cblas_dsymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const double alpha, const double *A, const int lda, - const double *B, const int ldb, const double beta, - double *C, const int ldc); -void cblas_dsyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const double *A, const int lda, - const double beta, double *C, const int ldc); -void cblas_dsyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const double *A, const int lda, - const double *B, const int ldb, const double beta, - double *C, const int ldc); -void cblas_dtrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const double alpha, const double *A, const int lda, - double *B, const int ldb); -void cblas_dtrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const double alpha, const double *A, const int lda, - double *B, const int ldb); - -void cblas_cgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const void *alpha, const void *A, - const int lda, const void *B, const int ldb, - const void *beta, void *C, const int ldc); -void cblas_csymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_csyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *beta, void *C, const int ldc); -void cblas_csyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_ctrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); -void cblas_ctrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); - -void cblas_zgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const void *alpha, const void *A, - const int lda, const void *B, const int ldb, - const void *beta, void *C, const int ldc); -void cblas_zsymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_zsyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *beta, void *C, const int ldc); -void cblas_zsyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_ztrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); -void cblas_ztrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); - - -/* - * Routines with prefixes C and Z only - */ -void cblas_chemm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_cherk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const void *A, const int lda, - const float beta, void *C, const int ldc); -void cblas_cher2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const float beta, - void *C, const int ldc); - -void cblas_zhemm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_zherk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const void *A, const int lda, - const double beta, void *C, const int ldc); -void cblas_zher2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const double beta, - void *C, const int ldc); - - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* __MKL_CBLAS_H__ */ diff --git a/ext/lapack/Makefile.in b/ext/lapack/Makefile.in deleted file mode 100755 index ce5e6e97e..000000000 --- a/ext/lapack/Makefile.in +++ /dev/null @@ -1,93 +0,0 @@ -# $License$ -# $Id: Makefile.in,v 1.10 2008/12/30 21:58:10 hkmoffa Exp $ -# -#/bin/sh - -.SUFFIXES : -.SUFFIXES : .f .o - -LAPACKLIB = @buildlib@/libctlapack.a - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -F_FLAGS = @FFLAGS@ $(PIC_FLAG) - -OBJS = \ -dbdsqr.o \ -dgbtrf.o \ -dgbtf2.o \ -dgbtrs.o \ -dgbsv.o \ -dgebd2.o \ -dgebrd.o \ -dgelq2.o \ -dgelqf.o \ -dgelss.o \ -dgeqr2.o \ -dgeqrf.o \ -dgetf2.o \ -dgetrf.o \ -dgetri.o \ -dgetrs.o \ -dlabad.o \ -dlabrd.o \ -dlacpy.o \ -dlamch.o \ -dlange.o \ -dlapy2.o \ -dlarf.o \ -dlarfb.o \ -dlarfg.o \ -dlarft.o \ -dlartg.o \ -dlas2.o \ -dlascl.o \ -dlaset.o \ -dlasq1.o \ -dlasq2.o \ -dlasq3.o \ -dlasq4.o \ -dlasr.o \ -dlasrt.o \ -dlassq.o \ -dlasv2.o \ -dlaswp.o \ -dorg2r.o \ -dorgbr.o \ -dorgl2.o \ -dorglq.o \ -dorgqr.o \ -dorm2r.o \ -dormbr.o \ -dorml2.o \ -dormlq.o \ -dormqr.o \ -drscl.o \ -ilaenv.o - -#SRCS = $(OBJS:.o=.cpp) - -all: $(LAPACKLIB) - -$(LAPACKLIB): $(OBJS) - @ARCHIVE@ $(LAPACKLIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LAPACKLIB) -endif - -# -# Right now g77 is not a known compiler to PURIFY. Why, -# I don't know. Taking the instrumentation out for now -# -%.o : %.f - @F77@ -c $< $(F77_INCLUDES) $(F_FLAGS) - -$(OBJS): Makefile - -clean: - $(RM) $(OBJS) $(LAPACKLIB) -depends: diff --git a/ext/math/Makefile.in b/ext/math/Makefile.in deleted file mode 100755 index aba77e6e2..000000000 --- a/ext/math/Makefile.in +++ /dev/null @@ -1,74 +0,0 @@ -# -# $Source: /cvsroot/cantera/cantera/ext/math/Makefile.in,v $ -# $Author: hkmoffa $ -# $Revision: 1.13 $ -# $Date: 2008/12/30 21:58:10 $ -# - -.SUFFIXES : -.SUFFIXES : .f .d .o .cpp - -do_ranlib = @DO_RANLIB@ - -LIB = @buildlib@/libctmath.a - -all: $(LIB) - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -F_FLAGS = @FFLAGS@ $(PIC_FLAG) - -OBJS = \ -mach.o \ -ddaspk.o \ -dgbfa.o \ -dgbsl.o \ -dgefa.o \ -dgesl.o \ -dp1vlu.o \ -dpcoef.o \ -dpolft.o \ -fdump.o \ -j4save.o \ -pcoef.o \ -polfit.o \ -pvalue.o \ -xercnt.o \ -xerhlt.o \ -xermsg.o \ -xerprn.o \ -xersve.o \ -xgetua.o \ -printstring.o - -SRCS = $(OBJS:.o=.cpp) -all = $(LIB) - -$(LIB): $(OBJS) - @ARCHIVE@ $(LIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -%.o : %.c - $(PURIFY) @CXX@ -c $< @DEFS@ @CXXFLAGS@ @PIC@ -I../.. $(INCLUDES) - -%.o : %.cpp - $(PURIFY) @CXX@ -c $< @DEFS@ @CXXFLAGS@ @PIC@ $(INCLUDES) -# -# Right now g77 is not known to PURIFY. Why I don't know. -# -%.o : %.f - @F77@ -c $< $(F_FLAGS) - -$(OBJS): Makefile - -clean: - $(RM) $(OBJS) $(LIB) - -depends: - echo '...' - - diff --git a/ext/math/mkl_cblas.h b/ext/math/mkl_cblas.h deleted file mode 100755 index dc5b45a71..000000000 --- a/ext/math/mkl_cblas.h +++ /dev/null @@ -1,644 +0,0 @@ -/* -// INTEL CORPORATION PROPRIETARY INFORMATION -// This software is supplied under the terms of a license agreement or -// nondisclosure agreement with Intel Corporation and may not be copied -// or disclosed except in accordance with the terms of that agreement. -// Copyright 1999, 2000 Intel Corporation. All Rights Reserved. -// -// File : mkl_cblas.h -// Purpose : MKL CBLAS interface -// Author : Shemyakin Andrey -*/ - -#ifndef __MKL_CBLAS_H__ -#define __MKL_CBLAS_H__ -#include - -#ifdef __cplusplus -extern "C" { /* Assume C declarations for C++ */ -#endif /* __cplusplus */ - -/* - * Enumerated and derived types - */ -#define CBLAS_INDEX size_t /* this may vary between platforms */ - -typedef enum {CblasRowMajor=101, CblasColMajor=102} CBLAS_ORDER; -typedef enum {CblasNoTrans=111, CblasTrans=112, CblasConjTrans=113} CBLAS_TRANSPOSE; -typedef enum {CblasUpper=121, CblasLower=122} CBLAS_UPLO; -typedef enum {CblasNonUnit=131, CblasUnit=132} CBLAS_DIAG; -typedef enum {CblasLeft=141, CblasRight=142} CBLAS_SIDE; - -/* - * =========================================================================== - * Prototypes for level 1 BLAS functions (complex are recast as routines) - * =========================================================================== - */ - -float cblas_sdot(const int N, const float *X, const int incX, - const float *Y, const int incY); -float cblas_sdoti(const int N, const float *X, const int *indx, - const float *Y); -double cblas_ddot(const int N, const double *X, const int incX, - const double *Y, const int incY); -double cblas_ddoti(const int N, const double *X, const int *indx, - const double *Y); - -/* - * Functions having prefixes Z and C only - */ -void cblas_cdotu_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotu); -void cblas_cdotui_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); -void cblas_cdotc_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotc); -void cblas_cdotci_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); - -void cblas_zdotu_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotu); -void cblas_zdotui_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); -void cblas_zdotc_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotc); -void cblas_zdotci_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); - - -/* - * Functions having prefixes S D SC DZ - */ -float cblas_snrm2(const int N, const float *X, const int incX); -float cblas_sasum(const int N, const float *X, const int incX); - -double cblas_dnrm2(const int N, const double *X, const int incX); -double cblas_dasum(const int N, const double *X, const int incX); - -float cblas_scnrm2(const int N, const void *X, const int incX); -float cblas_scasum(const int N, const void *X, const int incX); - -double cblas_dznrm2(const int N, const void *X, const int incX); -double cblas_dzasum(const int N, const void *X, const int incX); - - -/* - * Functions having standard 4 prefixes (S D C Z) - */ -CBLAS_INDEX cblas_isamax(const int N, const float *X, const int incX); -CBLAS_INDEX cblas_idamax(const int N, const double *X, const int incX); -CBLAS_INDEX cblas_icamax(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_izamax(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_isamin(const int N, const float *X, const int incX); -CBLAS_INDEX cblas_idamin(const int N, const double *X, const int incX); -CBLAS_INDEX cblas_icamin(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_izamin(const int N, const void *X, const int incX); - -/* - * =========================================================================== - * Prototypes for level 1 BLAS routines - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (s, d, c, z) - */ -void cblas_sswap(const int N, float *X, const int incX, - float *Y, const int incY); -void cblas_scopy(const int N, const float *X, const int incX, - float *Y, const int incY); -void cblas_saxpy(const int N, const float alpha, const float *X, - const int incX, float *Y, const int incY); -void cblas_saxpyi(const int N, const float alpha, const float *X, - const int *indx, float *Y); -void cblas_sgthr(const int N, const float *Y, float *X, - const int *indx); -void cblas_sgthrz(const int N, float *Y, float *X, - const int *indx); -void cblas_ssctr(const int N, const float *X, const int *indx, - float *Y); -void cblas_srotg(float *a, float *b, float *c, float *s); - -void cblas_dswap(const int N, double *X, const int incX, - double *Y, const int incY); -void cblas_dcopy(const int N, const double *X, const int incX, - double *Y, const int incY); -void cblas_daxpy(const int N, const double alpha, const double *X, - const int incX, double *Y, const int incY); -void cblas_daxpyi(const int N, const double alpha, const double *X, - const int *indx, double *Y); -void cblas_dgthr(const int N, const double *Y, double *X, - const int *indx); -void cblas_dgthrz(const int N, double *Y, double *X, - const int *indx); -void cblas_dsctr(const int N, const double *X, const int *indx, - double *Y); -void cblas_drotg(double *a, double *b, double *c, double *s); - -void cblas_cswap(const int N, void *X, const int incX, - void *Y, const int incY); -void cblas_ccopy(const int N, const void *X, const int incX, - void *Y, const int incY); -void cblas_caxpy(const int N, const void *alpha, const void *X, - const int incX, void *Y, const int incY); -void cblas_caxpyi(const int N, const void *alpha, const void *X, - const int *indx, void *Y); -void cblas_cgthr(const int N, const void *Y, void *X, - const int *indx); -void cblas_cgthrz(const int N, void *Y, void *X, - const int *indx); -void cblas_csctr(const int N, const void *X, const int *indx, - void *Y); -void cblas_crotg(void *a, const void *b, float *c, void *s); - -void cblas_zswap(const int N, void *X, const int incX, - void *Y, const int incY); -void cblas_zcopy(const int N, const void *X, const int incX, - void *Y, const int incY); -void cblas_zaxpy(const int N, const void *alpha, const void *X, - const int incX, void *Y, const int incY); -void cblas_zaxpyi(const int N, const void *alpha, const void *X, - const int *indx, void *Y); -void cblas_zgthr(const int N, const void *Y, void *X, - const int *indx); -void cblas_zgthrz(const int N, void *Y, void *X, - const int *indx); -void cblas_zsctr(const int N, const void *X, const int *indx, - void *Y); -void cblas_zrotg(void *a, const void *b, double *c, void *s); - -/* - * Routines with S and D prefix only - */ -void cblas_srotmg(float *d1, float *d2, float *b1, const float *b2, float *P); -void cblas_srot(const int N, float *X, const int incX, - float *Y, const int incY, const float c, const float s); -void cblas_sroti(const int N, float *X, const int *indx, - float *Y, const float c, const float s); -void cblas_srotm(const int N, float *X, const int incX, - float *Y, const int incY, const float *P); - -void cblas_drotmg(double *d1, double *d2, double *b1, const double *b2, double *P); -void cblas_drot(const int N, double *X, const int incX, - double *Y, const int incY, const double c, const double s); -void cblas_drotm(const int N, double *X, const int incX, - double *Y, const int incY, const double *P); -void cblas_droti(const int N, double *X, const int *indx, - double *Y, const double c, const double s); - -/* - * Routines with CS and ZD prefix only - */ -void cblas_csrot(const int N, void *X, const int incX, - void *Y, const int incY, const float c, const float s); -void cblas_zdrot(const int N, void *X, const int incX, - void *Y, const int incY, const double c, const double s); - -/* - * Routines with S D C Z CS and ZD prefixes - */ -void cblas_sscal(const int N, const float alpha, float *X, const int incX); -void cblas_dscal(const int N, const double alpha, double *X, const int incX); -void cblas_cscal(const int N, const void *alpha, void *X, const int incX); -void cblas_zscal(const int N, const void *alpha, void *X, const int incX); -void cblas_csscal(const int N, const float alpha, void *X, const int incX); -void cblas_zdscal(const int N, const double alpha, void *X, const int incX); - -/* - * =========================================================================== - * Prototypes for level 2 BLAS - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (S, D, C, Z) - */ -void cblas_sgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const float alpha, const float *A, const int lda, - const float *X, const int incX, const float beta, - float *Y, const int incY); -void cblas_sgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const float alpha, - const float *A, const int lda, const float *X, - const int incX, const float beta, float *Y, const int incY); -void cblas_strmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *A, const int lda, - float *X, const int incX); -void cblas_stbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const float *A, const int lda, - float *X, const int incX); -void cblas_stpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *Ap, float *X, const int incX); -void cblas_strsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *A, const int lda, float *X, - const int incX); -void cblas_stbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const float *A, const int lda, - float *X, const int incX); -void cblas_stpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *Ap, float *X, const int incX); - -void cblas_dgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const double alpha, const double *A, const int lda, - const double *X, const int incX, const double beta, - double *Y, const int incY); -void cblas_dgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const double alpha, - const double *A, const int lda, const double *X, - const int incX, const double beta, double *Y, const int incY); -void cblas_dtrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *A, const int lda, - double *X, const int incX); -void cblas_dtbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const double *A, const int lda, - double *X, const int incX); -void cblas_dtpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *Ap, double *X, const int incX); -void cblas_dtrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *A, const int lda, double *X, - const int incX); -void cblas_dtbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const double *A, const int lda, - double *X, const int incX); -void cblas_dtpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *Ap, double *X, const int incX); - -void cblas_cgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *X, const int incX, const void *beta, - void *Y, const int incY); -void cblas_cgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const void *alpha, - const void *A, const int lda, const void *X, - const int incX, const void *beta, void *Y, const int incY); -void cblas_ctrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, - void *X, const int incX); -void cblas_ctbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ctpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); -void cblas_ctrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, void *X, - const int incX); -void cblas_ctbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ctpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); - -void cblas_zgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *X, const int incX, const void *beta, - void *Y, const int incY); -void cblas_zgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const void *alpha, - const void *A, const int lda, const void *X, - const int incX, const void *beta, void *Y, const int incY); -void cblas_ztrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, - void *X, const int incX); -void cblas_ztbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ztpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); -void cblas_ztrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, void *X, - const int incX); -void cblas_ztbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ztpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); - - -/* - * Routines with S and D prefixes only - */ -void cblas_ssymv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *A, - const int lda, const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_ssbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const float alpha, const float *A, - const int lda, const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_sspmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *Ap, - const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_sger(const CBLAS_ORDER order, const int M, const int N, - const float alpha, const float *X, const int incX, - const float *Y, const int incY, float *A, const int lda); -void cblas_ssyr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, float *A, const int lda); -void cblas_sspr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, float *Ap); -void cblas_ssyr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, const float *Y, const int incY, float *A, - const int lda); -void cblas_sspr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, const float *Y, const int incY, float *A); - -void cblas_dsymv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *A, - const int lda, const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dsbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const double alpha, const double *A, - const int lda, const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dspmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *Ap, - const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dger(const CBLAS_ORDER order, const int M, const int N, - const double alpha, const double *X, const int incX, - const double *Y, const int incY, double *A, const int lda); -void cblas_dsyr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, double *A, const int lda); -void cblas_dspr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, double *Ap); -void cblas_dsyr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, const double *Y, const int incY, double *A, - const int lda); -void cblas_dspr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, const double *Y, const int incY, double *A); - - -/* - * Routines with C and Z prefixes only - */ -void cblas_chemv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_chbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_chpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *Ap, - const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_cgeru(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_cgerc(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_cher(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const void *X, const int incX, - void *A, const int lda); -void cblas_chpr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const void *X, - const int incX, void *A); -void cblas_cher2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_chpr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *Ap); - -void cblas_zhemv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zhbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zhpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *Ap, - const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zgeru(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zgerc(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zher(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const void *X, const int incX, - void *A, const int lda); -void cblas_zhpr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const void *X, - const int incX, void *A); -void cblas_zher2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zhpr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *Ap); - -/* - * =========================================================================== - * Prototypes for level 3 BLAS - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (S, D, C, Z) - */ -void cblas_sgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const float alpha, const float *A, - const int lda, const float *B, const int ldb, - const float beta, float *C, const int ldc); -void cblas_ssymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const float alpha, const float *A, const int lda, - const float *B, const int ldb, const float beta, - float *C, const int ldc); -void cblas_ssyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const float *A, const int lda, - const float beta, float *C, const int ldc); -void cblas_ssyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const float *A, const int lda, - const float *B, const int ldb, const float beta, - float *C, const int ldc); -void cblas_strmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const float alpha, const float *A, const int lda, - float *B, const int ldb); -void cblas_strsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const float alpha, const float *A, const int lda, - float *B, const int ldb); - -void cblas_dgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const double alpha, const double *A, - const int lda, const double *B, const int ldb, - const double beta, double *C, const int ldc); -void cblas_dsymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const double alpha, const double *A, const int lda, - const double *B, const int ldb, const double beta, - double *C, const int ldc); -void cblas_dsyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const double *A, const int lda, - const double beta, double *C, const int ldc); -void cblas_dsyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const double *A, const int lda, - const double *B, const int ldb, const double beta, - double *C, const int ldc); -void cblas_dtrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const double alpha, const double *A, const int lda, - double *B, const int ldb); -void cblas_dtrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const double alpha, const double *A, const int lda, - double *B, const int ldb); - -void cblas_cgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const void *alpha, const void *A, - const int lda, const void *B, const int ldb, - const void *beta, void *C, const int ldc); -void cblas_csymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_csyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *beta, void *C, const int ldc); -void cblas_csyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_ctrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); -void cblas_ctrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); - -void cblas_zgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const void *alpha, const void *A, - const int lda, const void *B, const int ldb, - const void *beta, void *C, const int ldc); -void cblas_zsymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_zsyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *beta, void *C, const int ldc); -void cblas_zsyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_ztrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); -void cblas_ztrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); - - -/* - * Routines with prefixes C and Z only - */ -void cblas_chemm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_cherk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const void *A, const int lda, - const float beta, void *C, const int ldc); -void cblas_cher2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const float beta, - void *C, const int ldc); - -void cblas_zhemm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_zherk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const void *A, const int lda, - const double beta, void *C, const int ldc); -void cblas_zher2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const double beta, - void *C, const int ldc); - - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* __MKL_CBLAS_H__ */ diff --git a/ext/tpx/Makefile.in b/ext/tpx/Makefile.in deleted file mode 100755 index bf0ebca96..000000000 --- a/ext/tpx/Makefile.in +++ /dev/null @@ -1,55 +0,0 @@ -#/bin/sh -# -# $Id: Makefile.in,v 1.17 2009/03/28 19:10:17 hkmoffa Exp $ -# -.SUFFIXES : -.SUFFIXES : .cpp .d .o - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -COBJS = Methane.o Nitrogen.o Oxygen.o Water.o Hydrogen.o RedlichKwong.o \ - CarbonDioxide.o Heptane.o lk.o Sub.o utils.o HFC134a.o - -CXX_LIBS = @LIBS@ -CXX_INCLUDES = -I../include -TPLIB = @buildlib@/libtpx.a - -DEPENDS = $(COBJS:.o=.d) - -all: $(TPLIB) .depends - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) - -.f.o: - $(PURIFY) @F77@ -c $< $(F77_FLAGS) - -$(TPLIB): $(COBJS) $(FOBJS) - @ARCHIVE@ $(TPLIB) $(COBJS) $(FOBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(TPLIB) -endif - -clean: - $(RM) $(COBJS) $(FOBJS) *~ *.d .depends - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(COBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/preconfig b/preconfig deleted file mode 100755 index 7aa1de70e..000000000 --- a/preconfig +++ /dev/null @@ -1,620 +0,0 @@ -#!/bin/sh -# -####################################################################### -# -# Cantera Configuration File -# -# Edit this file to control how Cantera is built. Parameters can be set -# here, or alternatively environment variables may be set before calling -# this script. -# -# The default configuration uses GNU compilers (gcc/g++/g77) and -# builds as much of Cantera and its language interfaces as it can -# (e.g. if MATLAB is installed on your system, the MATLAB toolbox -# will be built automatically, otherwise it will be skipped. On linux -# or Mac OS X, this default configuration should work, and most -# likely you don't need to edit this file at all - just run it. -# -# NOTE: if you DO make changes to this file, save it with another name -# so that it will not be overwritten if you update the source -# distribution. - -####################################################################### -# -# Set CANTERA_CONFIG_PREFIX to the directory where you want Cantera -# installed into. The default is /usr/local/Cantera -# -# If you define this to be , then instead of running this -# script as ./preconfig --prefix= you can just run it as -# ./preconfig. - -CANTERA_CONFIG_PREFIX=${CANTERA_CONFIG_PREFIX:=""} - -#---------------------------------------------------------------------- -# Language Interfaces -#---------------------------------------------------------------------- -# -# Cantera has several programming language interfaces. Select the ones -# you want to build. The default is to try to build all language -# interfaces. -# -# -#----------------- Python -------------------------------------------- -# -# In addition to being one of the supported language interfaces, -# Python is used internally by Cantera, both in the build process and -# at run time (to process .cti input files). Therefore, you generally -# need to have Python on your system; if you don't, first install it -# from http://www.python.org before proceeding with the installation -# of Cantera. -# -# If you plan to work in Python, or you want to use the graphical -# MixMaster application, then you need the full Cantera Python -# Package. If, on the other hand, you will only use Cantera from some -# other language (e.g. MATLAB or Fortran 90/95) and only need Python -# to process .cti files, then you only need a minimal subset of the -# package (actually, only one file). - -# Set PYTHON_PACKAGE to one of these four strings: -# full install everything needed to use Cantera from Python -# minimal install only enough to process .cti files -# none Don't install or run any Python scripts during the -# build process -# default try to do a full installation, but fall back to a minimal -# one in case of errors - -PYTHON_PACKAGE=${PYTHON_PACKAGE:="minimal"} - -# Cantera needs to know where to find the Python interpreter. If -# PYTHON_CMD is set to "default", then the configuration process will -# look for the Python Interpreter somewhere on your PATH, either as -# 'python2' or as 'python'. If it is not on the PATH, or has a -# different name, set this to the full path to the Python interpreter. -PYTHON_CMD=${PYTHON_CMD:="default"} - - -# The Cantera Python interface can be built with either the numarray -# numeric, or numpy packages. Set this to "y" to use Numeric. -USE_NUMERIC=${USE_NUMERIC:="n"} - -# The Cantera Python interface can be built with either the numarray -# or Numeric packages. Set this to "y" to use numpy, or 'n' -# to use numarray. set USE_NUMERIC to 'n' also if you want to use numarray. -# Using numpy is preferred, and is the supported option going forwards. -USE_NUMPY=${USE_NUMPY:="n"} - -# If numpy was installed using the --home option, set this to the -# home directory for numpy. This will be needed for all numpy installations -# that don't put the include files into python's native include directory. -#NUMPY_HOME=${NUMPY_HOME:="$HOME/python_packages"} - -# If numarray was installed using the --home option, set this to the -# home directory for numarray. -#NUMARRAY_HOME=${NUMARRAY_HOME:="$HOME/python_packages"} - - -# If you want to install the Cantera Python package somewhere other -# than the default 'site-packages' directory within the Python library -# directory, then set this to the desired directory. This is useful when -# you do not have write access to the Python library directory. -#CANTERA_PYTHON_HOME=${CANTERA_PYTHON_HOME:="$HOME/python_modules"} - -# Set this to 'y' when site packages must be put in system directories -# but Cantera tutorials must be put in user space. An alternative to -# doing this is to keep this setting on "n" . Then everything is -# put into the user space by running this script -# with the 'prefix' option. The environment variable PYTHONPATH -# may then be set to tell Python where to find the Cantera package. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=${SET_PYTHON_SITE_PACKAGE_TOPDIR:="n"} - -# If the SET_PYTHON_SITE_PACKAGE_TOPDIR is set to y, the entry below -# sets the location where the Cantera site package is installed. -# -PYTHON_SITE_PACKAGE_TOPDIR=${PYTHON_SITE_PACKAGE_TOPDIR:="/usr/local"} - -#----------- MATLAB -------------------------------------------------- - -# This variable controls whether the MATLAB toolbox will be built. It -# should be set to one of these strings: -# -# "default" the 'configure' script will try to build a simple -# MATLAB MEX file. If this succeeds, BUILD_MATLAB_TOOLBOX -# will be set to "y", otherwise it will be set to "n". -# -# "y" build the MATLAB toolbox. -# "n" do not build the MATLAB toolbox, even if MATLAB is -# installed. -# -# Note that you may need to run 'mex -setup' within MATLAB to -# configure it for your C++ compiler before running this script. -BUILD_MATLAB_TOOLBOX=${BUILD_MATLAB_TOOLBOX:="no"} -MATLAB_CMD=${MATLAB_CMD:="default"} - -#----------- Fortran 90/95 -------------------------------------------------- - -# This variable controls whether the Fortran 90/95 interface will be -# built. It should be set to one of these strings: -# -# "default" The 'configure' script will attempt to compile a small -# Fortran 90/05 program; if this succeeds, -# BUILD_F90_INTERFACE will be set to "y", and otherwise to "n". -# "y" Build the Fortran 90/95 interface. -# "n" Do not build the Fortran 90/95 interface, even if a -# Fortran 90/95 compiler is installed. - -BUILD_F90_INTERFACE=${BUILD_F90_INTERFACE:="no"} - -# The Fortran 90/95 compiler. If set to "default", the script will -# look for a Fortran 90/95 compiler on your system by the name of -# "f95", "gfortran", or "g95". -F90=${F90:="gfortran"} - -# Compiler option flags for the Fortran 90/95 compiler. If you are -# using the Absoft or the NAG compiler, additional options specific to -# these compilers will be added automatically, and you do not need to -# specify them here. Otherwise, add any required compiler-specific -# flags here. -F90FLAGS=${F90FLAGS:='-O3'} - -#--------------------------------------------------------------------- -# Purify -#--------------------------------------------------------------------- - -# Add entries here for compiling Cantera with Purify extensions -# This command is put in front of every compilation and linking -# step -PURIFY=${PURIFY:=""} - -#---------------------------------------------------------------------- -# Customizations / Extensions -#---------------------------------------------------------------------- -# -# You can build your own libraries as part of the Cantera build process. -# This allows you to derive your own classes from those provided by -# Cantera and build them automatically along with the rest of Cantera. -# All you need to do is specify the directory where your source code is -# located. This capability is not yet fully functional, but should work -# for C++ applications. -USER_SRC_DIR="Cantera/user" # don't change this - -# In some cases, extra printing has been put into the code to aid -# in debugging and verification. In order for the printing to occur -# an additional switch must be turned on. However, compilation -# of the printing is affected by the following DEBUG_MODE option. -# This is turned off here by default. -DEBUG_MODE=${DEBUG_MODE:='n'} - -#---------------------------------------------------------------------- -# Kernel Configuration -#---------------------------------------------------------------------- - -# If you are only planning to use a portion of Cantera, you may only -# need a stripped-down kernel. Set those features you want enabled to -# 'y', and set those you want to skip to 'n' (actually anything but -# 'y') or comment them out. Some features are dependent on others; for -# example, enabling 'CK' automatically enables KINETICS and THERMO. - -# If you only need to use Cantera to evaluate thermodynamic, kinetic, -# and transport properties, it is sufficient to enable only KINETICS -# and TRANSPORT. - -# Note: if you are building the full Python interface or the MATLAB -# interface, it is necessary to build the full kernel. - -# thermodynamic properties -ENABLE_THERMO='y' - -###################################################################### -# optional phase types. These may not be needed by all users. Set them -# to 'n' to omit them from the kernel. - -WITH_LATTICE_SOLID=${WITH_LATTICE_SOLID:="y"} -WITH_METAL=${WITH_METAL:="y"} -WITH_STOICH_SUBSTANCE=${WITH_STOICH_SUBSTANCE:="y"} -WITH_SEMICONDUCTOR=${WITH_SEMICONDUCTOR:="y"} -WITH_ADSORBATE=${WITH_ADSORBATE:="y"} -WITH_SPECTRA=${WITH_SPECTRA:="y"} - -# This flag enables the inclusion of accurate liquid/vapor equations -# of state for several fluids, including water, nitrogen, hydrogen, -# oxygen, methane, andd HFC-134a. -WITH_PURE_FLUIDS='y' - -# This flag enables the inclusion of ideal solution capabilities -WITH_IDEAL_SOLUTIONS=${WITH_IDEAL_SOLUTIONS:="y"} - -# Enable expanded electrochemistry capabilities, include thermo -# models for electrolyte solutions -WITH_ELECTROLYTES=${WITH_ELECTROLYTES:="y"} - -# Enable generating phase models from PrIMe models. For more -# information about PrIME, see http://www.primekinetics.org -# WARNING: Support for PrIMe is experimental! -WITH_PRIME=${WITH_PRIME:="n"} - -# Enable changing the 298K heats of formation directly -# via the C++ layer. To do this, modify the variable below -# to have a value of "y" -WITH_H298MODIFY_CAPABILITY=${WITH_H298MODIFY_CAPABILITY:="n"} - -###################################################################### -# if set to 'y', the ck2cti program that converts Chemkin input files -# to Cantera format will be built. If you don't use Chemkin format -# files, or if you run ck2cti on some other machine, you can set this to 'n'. -ENABLE_CK=${ENABLE_CK:='y'} - -###################################################################### - -# Enable homogeneous kinetics -WITH_KINETICS='y' - -# Enable heterogeneous kinetics (surface chemistry). This also enables -# charge transfer reactions for electrochemistry. -WITH_HETERO_KINETICS='y' - -# Enable reaction path analysis -WITH_REACTION_PATHS='y' - -# Enable vcs equilibrium package for nonideal phases -WITH_VCSNONIDEAL=${WITH_VCSNONIDEAL:="n"} - -###################################################################### -# transport properties -ENABLE_TRANSPORT='y' - -# chemical equilibrium -ENABLE_EQUIL='y' - -# stirred reactor models -ENABLE_REACTORS='y' - -# One-dimensional flows -ENABLE_FLOW1D='y' - -# ODE integrators and DAE solvers -ENABLE_SOLVERS='y' - -# reaction path analysis -ENABLE_RXNPATH='y' - -# two phase pure fluids -ENABLE_TPX='y' - -# write HTMl log files. Some multiphase equilibrium procedures can -# write copious diagnostic log messages. Set this to anything but 'y' -# to remove this capability (results in slightly faster equilibrium -# calculations) -WITH_HTML_LOG_FILES='y' - -#----------------------------------------------------------------- -# CVODE / CVODES -#----------------------------------------------------------------- -# -# Cantera uses the CVODE or CVODES ODE integrator to time-integrate -# reactor network ODE's and for various other purposes. An older -# version of CVODE comes with Cantera, but it is possible to use the -# latest version as well, which now supports sensitivity analysis -# (CVODES). CVODES is a part of the 'sundials' package from Lawrence -# Livermore National Laboratory. Sundials is not distributed with -# Cantera, but it is free software that may be downloaded and -# installed separately. If you leave USE_SUNDIALS = 'default', then it -# will be used if you have it, and if not the older CVODE will be -# used. Or set USE_SUNDIALS to 'y' or 'n' to force using it or not. -# Note that sensitivity analysis with Cantera requires use of -# sundials. -# -# See: http://www.llnl.gov/CASC/sundials -# -USE_SUNDIALS=${USE_SUNDIALS:='default'} - -# This is where you installed sundials if you used the --prefix option -# when you configured sundials. If you didn't use the prefix option, -# then comment this line out. -#SUNDIALS_HOME=${SUNDIALS_HOME:=""} - - -# It is recommended that you install the newest release of sundials -# (currently 2.4.0) before building Cantera. But if you want to use an -# older version, set SUNDIALS_VERSION to the version you have. -# Acceptable values are '2.2', '2.3', or '2.4' ; anything else will cause -# Cantera to -SUNDIALS_VERSION=${SUNDIALS_VERSION:='2.4'} - -#----------------------------------------------------------------- -# BLAS and LAPACK -#----------------------------------------------------------------- -# -# Cantera comes with Fortran (or c) versions of those parts of BLAS and -# LAPACK it requires. But performance may be better if you use a -# version of these libraries optimized for your machine hardware. If -# you want to use your own libraries, set BLAS_LAPACK_LIBS to the -# string that should be passed to the linker to link to these -# libraries, and set BLAS_LAPACK_DIR to the directory where these -# libraries are located. Otherwise, leave these lines commented out. -# -#BLAS_LAPACK_LIBS='-llapack -lblas' -#BLAS_LAPACK_LIBS'-llapack -lf77blas -lcblas -latlas' -#BLAS_LAPACK_DIR='/usr/lib' -# -# Note that on Mac OSX, BLAS and LAPACK from the built-in 'Accelerate' -# framework are used by default, and nothing needs to be specified -# here. -# -# The options below do not need to be set if you are using the default -# libraries. -# -# Set to 'lower' or 'upper', depending on whether the procedure names -# in the libraries are lowercase or uppercase. If you don't know, run -# 'nm' on the library file (e.g. 'nm libblas.a') Note that the these options -# apply to both the BLAS and LAPACK libraries. -LAPACK_NAMES='lower' -LAPACK_FTN_TRAILING_UNDERSCORE='y' - -# Currently this must be set to 'y'. -LAPACK_FTN_STRING_LEN_AT_END='y' - - -#------------------------------------------------------------------ -# C++ compiler options -#------------------------------------------------------------------ - -# The number of bits to compile with, if different than the -# default on the computer -BITCOMPILE=${BITCOMPILE:=""} - -# the C++ compiler to use. -CXX=${CXX:=g++} - -# the C compiler to use. This is only used to compile CVODE and -# the Python extension module. -CC=${CC:=gcc} - -# C++ compiler flags -CXXFLAGS=${CXXFLAGS:="-O3 -Wall"} - -# the C++ flags required for linking. Uncomment if additional flags -# need to be passed to the linker. - -# Ending libraries to tack onto the linking of all C++ programs -LCXX_END_LIBS=${LCXX_END_LIBS:="-lm"} - -# The compiler flag to use to compile code that will be inserted into -# shared libraries. -PIC=${PIC:=""} - -# the compiler option to create a shared library from object files -SHARED=${SHARED:="-dynamic"} - -#------------------------------------------------------------------- -# Thread Safety -#------------------------------------------------------------------- - -# Cantera can be built so that it is thread safe. Doing so requires -# using procedures from the boost library, so if you want thread -# safety then you need to get and install boost (http://www.boost.org) -# if you don't have it. This is turned off by default, in which case -# boost is not required to build Cantera. - -BUILD_THREAD_SAFE=${BUILD_THREAD_SAFE:="n"} - -# where boost header and library files may be found -BOOST_INC_DIR=${BOOST_INC_DIR:="/usr/local/include/boost-1_34"} -BOOST_LIB_DIR=${BOOST_LIB_DIR:="/usr/local/lib"} - -# the boost thread library -BOOST_THREAD_LIB=${BOOST_THREAD_LIB:="boost_thread-mt-1_34"} - -#------------------------------------------------------------------- -# External Procedures -#------------------------------------------------------------------- - -# Cantera uses several external software packages, which are all in -# the 'ext' directory.. These options control how these packages are -# built. - -# For external procedures written in Fortran 77, both the original F77 -# source code and C souce code generated by the 'f2c' program are -# included. Set this to "y" if you want to build Cantera using the -# f2c-generated C sources instead of using the F77 sources in the ext -# directory. - -# The default is to use the f2c code. Set this to "n" to never do -# this on any platform. Note, if set to "y", Cantera does not need a -# fortran compiler, and all fortran compiler parameters below are -# irrelevant. -# -BUILD_WITH_F2C=${BUILD_WITH_F2C:="y"} - -# if you are building the external Fortran 77 procedures from the Fortran -# source code, enter the compiler here. -F77=${F77:=g77} - -# Fortran 77 compiler flags. Note that the Fortran compiler flags must be set -# to produce object code compatible with the C/C++ compiler you are using. -FFLAGS=${FFLAGS:='-O3'} - -# the additional Fortran flags required for linking, if any. Leave commented -# out if no additional flags are required. -LFORT_FLAGS="-L/usr/local/lib" - -#------------------------------------------------------ -# Other Programs -#------------------------------------------------------ - -# The command to create a static library. -ARCHIVE=${ARCHIVE:="ar ruv"} # linux -# ARCHIVE=${ARCHIVE:="libtool -static -o"} # Mac OSX (this is set automatically) -# ARCHIVE=${ARCHIVE:="CC -xar -o"} # Solaris using SUNspro compilers - -# The command to run 'ranlib' if it is needed. -RANLIB=${RANLIB:="ranlib"} - -# The command to run the 'make' utility. The Cantera Makefiles are -# compatible with the GNU make utility, so if your make utility -# doesn't work, try GNU make. -MAKE=${MAKE:=make} - -# The command to run when "installing". This defaults now to the -# install-sh bourne shell script that comes with the autoconf package. -# It can be overridden here. -INSTALL_BIN=${INSTALL_BIN:=config/install-sh} - -# The directory location of the graphviz program, dot. dot is used -# for creating the documentation, and for making reaction path -# diagrams. if "dot" is in your path, you can leave this unspecified. -# -# NOTE: MATLAB comes with a stripped-down version of 'dot'. If 'dot' -# is on your path, make sure it is not the MATLAB version! -# -GRAPHVIZDIR=${GRAPHVIZDIR:=" "} - -# File extensions -CXX_EXT=${CXX_EXT:=cpp} -F77_EXT=${F77_EXT:=f} -F90_EXT=${F90_EXT:=f90} -# -# Default extension for executable binaries. The default for unix systems -# is the empty field. For windows systesms and cygwin, you should put -# ".exe" . -# -EXE_EXT=${EXE_EXT:=} - - -CT_SHARED_LIB=${CT_SHARED_LIB:=clib} - -# The font to use in reaction path diagrams. This must be a font name -# recognized by the 'dot' program. On linux systems, this should be -# lowercase 'helvetica'. -RPFONT=${RPFONT:="Helvetica"} - -# -# Version Control: -# -# We define a new string for every branch created in svn. -# -# Currently expected versions: -# "1.7" Old version of Cantera -# "1.8.0" Released version of 1.8 -# "1.8.x" Development version of 1.8 -# "1.8_liquidTransportDevelop" branched version of 1.8 having to deal with liquid transport -# -# This field gets written into config.h and is also an autoconf variable. -# -# -CANTERA_VERSION=${CANTERA_VERSION:="1.8.x"} - - -#----------------------------------------------------------------------- -#------------------- don't change anything below!! --------------------- -#----------------------------------------------------------------------- - -export CANTERA_VERSION -export USER_SRC_DIR -export DEBUG_MODE -export ARCHIVE -export RANLIB -export BITCOMPILE -export BLAS_LAPACK_LIBS -export BLAS_LAPACK_DIR -export BUILD_WITH_F2C -export BUILD_F90_INTERFACE -export PYTHON_PACKAGE -export BUILD_MATLAB_TOOLBOX -export MATLAB_CMD -export CT_SHARED_LIB -export CXX -export CXX_EXT -export CXXFLAGS -export CC -export ENABLE_THERMO -export WITH_KINETICS -export WITH_HETERO_KINETICS -export WITH_REACTION_PATHS -export ENABLE_TRANSPORT -export ENABLE_CK -export ENABLE_EQUIL -export ENABLE_REACTORS -export ENABLE_SOLVERS -export ENABLE_RXNPATH -export ENABLE_TPX -export ENABLE_FLOW1D -export EXE_EXT -export F77 -export F77_EXT -export F90 -export F90_EXT -export FFLAGS -export F90FLAGS -export INSTALL_BIN -export LCXX_FLAGS -export LCXX_END_LIBS -export LFORT_FLAGS -export LAPACK_NAMES -export LAPACK_FTN_STRING_LEN_AT_END -export LAPACK_FTN_TRAILING_UNDERSCORE -export LIB_DIR -export FORT_MODULE_DIRECTORY -export FORT_MODULE_PATH_COMMAND -export OBJ_EXT -export PYTHON_CMD -export SET_PYTHON_SITE_PACKAGE_DIR -export PYTHON_SITE_PACKAGE_TOPDIR -export PIC -export SHARED -export SOEXT -export MAKE -export GRAPHVIZDIR -export RPFONT -export FORTRAN_LIB_DIR -export CANTERA_INSTALL_DIR -export USE_NUMERIC -export USE_NUMPY -export NUMARRAY_HOME -export NUMPY_HOME -export CANTERA_PYTHON_HOME -export USE_SUNDIALS -export SUNDIALS_HOME -export SUNDIALS_VERSION - -export WITH_LATTICE_SOLID -export WITH_METAL -export WITH_SEMICONDUCTOR -export WITH_ADSORBATE -export WITH_SPECTRA -export WITH_STOICH_SUBSTANCE -export WITH_PURE_FLUIDS -export WITH_IDEAL_SOLUTIONS -export WITH_ELECTROLYTES -export WITH_PRIME -export WITH_H298MODIFY_CAPABILITY - -export BUILD_THREAD_SAFE -export BOOST_INC_DIR -export BOOST_LIB_DIR -export BOOST_THREAD_LIB - -export WITH_HTML_LOG_FILES - -export PURIFY - -chmod -f +x ./configure -chmod -f +x config/config.guess -chmod -f +x config/config.sub -#chmod -f +x config/install-sh - -# -# Decide whether to add a prefix variable to the configure line -# -if (test "x$CANTERA_CONFIG_PREFIX" = "x") -then - CCPREFIX="" -else - CCPREFIX="--prefix="$CANTERA_CONFIG_PREFIX -fi -# -# run the configure command -# -./configure $CCPREFIX $1 $2 $3 $4 - - diff --git a/test_problems/ChemEquil_gri_matrix/Makefile.in b/test_problems/ChemEquil_gri_matrix/Makefile.in deleted file mode 100644 index 2054185f3..000000000 --- a/test_problems/ChemEquil_gri_matrix/Makefile.in +++ /dev/null @@ -1,139 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = gri_matrix - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = gri_matrix.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -in_CanteraBuildTree = 1 - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# the directory where Cantera include files may be found. -ifeq ($(in_CanteraBuildTree),1) -CANTERA_INCROOTDIR=@ctroot@/build/include -else -CANTERA_INCROOTDIR=@ct_incroot@ -endif -CANTERA_INCLUDES=-I$(CANTERA_INCROOTDIR) -I$(CANTERA_INCROOTDIR)/cantera - -# LOCAL_DEFS = -DDEBUG_CHEMEQUIL -# LOCAL_DEFS = -DEBUG_BASISOPTIMIZE -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(CANTERA_INCLUDES) $(LOCAL_DEFS) @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBDIR=@buildlib@ -else -CANTERA_LIBDIR=@ct_libdir@ -endif - -# required Cantera libraries -# -> don't need this: -L$(CANTERA_LIBDIR) as -# @LOCAL_LIB_DIRS@ has this directory -# -CANTERA_LIBS = -L$(CANTERA_LIBDIR) @LOCAL_LIBS@ -lctcxx - -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -else -CANTERA_LIBS_DEP = @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -endif - -# -# Alternate form of dependencies: (uses a gnu make extensions) -ALT_LIBS_DEP := $(addprefix $(CANTER_LIBDIR), @RAW_LIBS_DEP@ libctcxx.a) - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ - -# How to compile C++ source files to object files -# -> don't need this: @CXX_INCLUDES@ -.cpp.o: - $(CXX) -c $< $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/ChemEquil_gri_matrix/runtest b/test_problems/ChemEquil_gri_matrix/runtest deleted file mode 100755 index e5b20c3f8..000000000 --- a/test_problems/ChemEquil_gri_matrix/runtest +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./gri_matrix > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "silane_equil returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on ChemEquil_gri_matrix test" -else - echo "unsuccessful diff comparison on ChemEquil_gri_matrix test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/ChemEquil_gri_pairs/Makefile.in b/test_problems/ChemEquil_gri_pairs/Makefile.in deleted file mode 100644 index 6e4d84b7f..000000000 --- a/test_problems/ChemEquil_gri_pairs/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = gri_pairs - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = gri_pairs.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/ChemEquil_gri_pairs/runtest b/test_problems/ChemEquil_gri_pairs/runtest deleted file mode 100755 index 05370a71e..000000000 --- a/test_problems/ChemEquil_gri_pairs/runtest +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./gri_pairs > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "gri_pairs returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on ChemEquil_gri_pairs test" -else - echo "unsuccessful diff comparison on ChemEquil_gri_pairs test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/ChemEquil_ionizedGas/Makefile.in b/test_problems/ChemEquil_ionizedGas/Makefile.in deleted file mode 100644 index d77d9ee7a..000000000 --- a/test_problems/ChemEquil_ionizedGas/Makefile.in +++ /dev/null @@ -1,118 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = ionizedGasEquil - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = ionizedGasEquil.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# Executables extension -EXE_EXT = @EXE_EXT@ - -# the C++ compiler -CXX = @CXX@ - -# -# LOCAL_DEFS=-DDEBUG_CHEMEQUIL -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/ChemEquil_ionizedGas/runtest b/test_problems/ChemEquil_ionizedGas/runtest deleted file mode 100755 index b69f109e8..000000000 --- a/test_problems/ChemEquil_ionizedGas/runtest +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt table.csv diff_out.txt diff_csv.txt -testName="ChemEquil_ionizedGas" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./ionizedGasEquil > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="1" - echo "ERROR: $testName: ionizedGasEquil returned with bad status, $retnStat, check output" -fi - -diff -w output.txt output_blessed.txt > diff_out.txt -retnStat_txt=$? -${CANTERA_BIN}/csvdiff -a 1.0E-19 table.csv table_blessed.csv > diff_csv.txt -retnStat_csv=$? - -eCode=1 -if test $retnStat_csv = "0" -then - eCode=0 - echo "Successful test comparison on " $testName - if [ $retnStat_txt != "0" ] - then - echo " But, text output files have differences. See diff_out.txt" - fi -else - echo "Unsuccessful test comparison on " $testName " test" - if test $retnStat_csv != "1" - then - echo " csv files are different - see diff_csv.txt" - fi - if test $retnStat_txt != "0" - then - echo " And, text output files have differences. See diff_out.txt" - fi -fi -# -# -exit 0 - - - diff --git a/test_problems/ChemEquil_red1/Makefile.in b/test_problems/ChemEquil_red1/Makefile.in deleted file mode 100644 index 6da68eafd..000000000 --- a/test_problems/ChemEquil_red1/Makefile.in +++ /dev/null @@ -1,134 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = basopt_red1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = basopt_red1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -in_CanteraBuildTree = 1 - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# the directory where Cantera include files may be found. -ifeq ($(in_CanteraBuildTree),1) -CANTERA_INCROOTDIR=@ctroot@/build/include -else -CANTERA_INCROOTDIR=@ct_incroot@ -endif -CANTERA_INCLUDES=-I$(CANTERA_INCROOTDIR) -I$(CANTERA_INCROOTDIR)/cantera - -# LOCAL_DEFS = -DDEBUG_CHEMEQUIL -# LOCAL_DEFS = -DEBUG_BASISOPTIMIZE -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(CANTERA_INCLUDES) $(LOCAL_DEFS) @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBDIR=@buildlib@ -else -CANTERA_LIBDIR=@ct_libdir@ -endif - -# required Cantera libraries -CANTERA_LIBS = -L$(CANTERA_LIBDIR) @LOCAL_LIBS@ -lctcxx - -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -else -CANTERA_LIBS_DEP = @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -endif -# -# Alternate form of dependencies: (uses a gnu make extensions) -ALT_LIBS_DEP := $(addprefix $(CANTER_LIBDIR), @RAW_LIBS_DEP@ libctcxx.a) - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ - -# How to compile C++ source files to object files -.cpp.o: - $(CXX) -c $< $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/ChemEquil_red1/runtest b/test_problems/ChemEquil_red1/runtest deleted file mode 100755 index 68ac751b3..000000000 --- a/test_problems/ChemEquil_red1/runtest +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt -testName="baseopt_red1" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./basopt_red1 > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -diff -w output.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/CpJump/Makefile.in b/test_problems/CpJump/Makefile.in deleted file mode 100644 index 80d82350d..000000000 --- a/test_problems/CpJump/Makefile.in +++ /dev/null @@ -1,134 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = CpJump - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = CpJump.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIB_DEPS = $(CANTERA_LIBDIR)/liboneD.a \ - $(CANTERA_LIBDIR)/libzeroD.a \ - $(CANTERA_LIBDIR)/libkinetics.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libctmath.a \ - $(CANTERA_LIBDIR)/libtpx.a \ - $(CANTERA_LIBDIR)/libconverters.a - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -ifeq (@use_sundials@, 0) -CANTERA_CVODE_DEPS = $(CANTERA_LIBDIR)/libcvode.a -endif - -LIB_DEPS = $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) $(CANTERA_CVODE_DEPS) - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(LIB_DEPS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/CpJump/runtest b/test_problems/CpJump/runtest deleted file mode 100755 index 340ea7617..000000000 --- a/test_problems/CpJump/runtest +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./CpJump > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "gri_pairs returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on CpJump test" -else - echo "unsuccessful diff comparison on CpJump test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/Makefile.in b/test_problems/Makefile.in deleted file mode 100644 index b2c381ba2..000000000 --- a/test_problems/Makefile.in +++ /dev/null @@ -1,161 +0,0 @@ -# -# $Revision: 1.36 $ -# $Author: hkmoffa $ -# $Date: 2009/03/25 01:03:05 $ -# -# -test_python=@BUILD_PYTHON@ -test_ck=@BUILD_CK@ -test_cathermo=@NEED_CATHERMO@ -test_pure_fluids=@COMPILE_PURE_FLUIDS@ -test_vcs_nonideal=@COMPILE_VCSNONIDEAL@ - -all: - cd cxx_ex; @MAKE@ all - cd surfkin; @MAKE@ all - cd fracCoeff; @MAKE@ all - cd silane_equil; @MAKE@ all - cd VPsilane_test; @MAKE@ all - cd negATest; @MAKE@ all - cd diamondSurf; @MAKE@ all - cd diamondSurf_dupl; @MAKE@ all - cd surfSolverTest; @MAKE@ all - cd ChemEquil_gri_matrix; @MAKE@ all - cd ChemEquil_gri_pairs; @MAKE@ all - cd ChemEquil_ionizedGas; @MAKE@ all - cd ChemEquil_red1; @MAKE@ all - cd CpJump; @MAKE@ all - cd mixGasTransport; @MAKE@ all - cd multiGasTransport; @MAKE@ all - cd printUtilUnitTest; @MAKE@ all -ifeq ($(test_pure_fluids),1) - cd pureFluidTest; @MAKE@ all - cd rankine_democxx; @MAKE@ all -endif -ifeq ($(test_python),1) - cd min_python; @MAKE@ all -endif -ifeq ($(test_python),2) - cd min_python; @MAKE@ all -endif -ifeq ($(test_ck),1) - cd ck2cti_test; @MAKE@ all - cd nasa9_reader; @MAKE@ all -endif -ifeq ($(test_cathermo),1) - cd cathermo; @MAKE@ all -endif -ifeq ($(test_vcs_nonideal),1) - cd VCSnonideal; @MAKE@ all -endif - -test: - @ cd cxx_ex; @MAKE@ -s test - @ cd surfkin; @MAKE@ -s test - @ cd fracCoeff; @MAKE@ -s test - @ cd silane_equil; @MAKE@ -s test - @ cd VPsilane_test; @MAKE@ -s test - @ cd negATest; @MAKE@ -s test - @ cd diamondSurf; @MAKE@ -s test - @ cd diamondSurf_dupl; @MAKE@ -s test - @ cd surfSolverTest; @MAKE@ -s test - @ cd NASA9poly_test; @MAKE@ -s test - @ cd ChemEquil_gri_matrix; @MAKE@ -s test - @ cd ChemEquil_gri_pairs; @MAKE@ -s test - @ cd ChemEquil_ionizedGas; @MAKE@ -s test - @ cd ChemEquil_red1; @MAKE@ -s test - @ cd CpJump; @MAKE@ -s test - @ cd mixGasTransport; @MAKE@ -s test - @ cd multiGasTransport; @MAKE@ -s test - @ cd printUtilUnitTest; @MAKE@ -s test -ifeq ($(test_pure_fluids),1) - @ cd pureFluidTest; @MAKE@ -s test - @ cd rankine_democxx; @MAKE@ -s test -endif -ifeq ($(test_ck),1) - @ cd ck2cti_test; @MAKE@ -s test - @ cd nasa9_reader; @MAKE@ -s test -endif -ifeq ($(test_python),1) - cd min_python; @MAKE@ -s test -endif -ifeq ($(test_python),2) - cd min_python; @MAKE@ -s test - cd python; @MAKE@ -s test -endif -ifeq ($(test_cathermo),1) - cd cathermo; @MAKE@ -s test -endif -ifeq ($(test_vcs_nonideal),1) - cd VCSnonideal; @MAKE@ -s test -endif - -clean: - $(RM) *.*~ - cd cxx_ex; $(RM) .depends ; @MAKE@ clean - cd surfkin; $(RM) .depends ; @MAKE@ clean - cd fracCoeff; $(RM) .depends ; @MAKE@ clean - cd silane_equil; $(RM) .depends ; @MAKE@ clean - cd VPsilane_test; $(RM) .depends ; @MAKE@ clean - cd negATest; $(RM) .depends ; @MAKE@ clean - cd diamondSurf; $(RM) .depends ; @MAKE@ clean - cd diamondSurf_dupl; $(RM) .depends ; @MAKE@ clean - cd surfSolverTest; $(RM) .depends ; @MAKE@ clean - cd NASA9poly_test; $(RM) .depends ; @MAKE@ clean - cd ChemEquil_gri_matrix; $(RM) .depends ; @MAKE@ clean - cd ChemEquil_gri_pairs; $(RM) .depends ; @MAKE@ clean - cd ChemEquil_ionizedGas; $(RM) .depends ; @MAKE@ clean - cd ChemEquil_red1; $(RM) .depends ; @MAKE@ clean - cd CpJump; $(RM) .depends ; @MAKE@ clean - cd mixGasTransport; $(RM) .depends ; @MAKE@ clean - cd multiGasTransport; $(RM) .depends ; @MAKE@ clean - cd printUtilUnitTest; $(RM) .depends ; @MAKE@ clean - cd pureFluidTest; $(RM) .depends ; @MAKE@ clean - cd rankine_democxx; $(RM) .depends ; @MAKE@ clean - cd ck2cti_test; $(RM) .depends ; @MAKE@ clean - cd nasa9_reader; $(RM) .depends ; @MAKE@ clean - cd min_python; @MAKE@ clean - cd python; @MAKE@ clean - cd cathermo; @MAKE@ clean - cd VCSnonideal; @MAKE@ clean - -depends: - cd cxx_ex; @MAKE@ depends - cd surfkin; @MAKE@ depends - cd fracCoeff; @MAKE@ depends - cd silane_equil; @MAKE@ depends - cd VPsilane_test; @MAKE@ depends - cd negATest; @MAKE@ depends - cd diamondSurf; @MAKE@ depends - cd diamondSurf_dupl; @MAKE@ depends - cd surfSolverTest; @MAKE@ depends - cd NASA9poly_test; @MAKE@ depends - cd ChemEquil_gri_matrix; @MAKE@ depends - cd ChemEquil_gri_pairs; @MAKE@ depends - cd ChemEquil_ionizedGas; @MAKE@ depends - cd ChemEquil_red1; @MAKE@ depends - cd CpJump; @MAKE@ depends - cd mixGasTransport; @MAKE@ depends - cd multiGasTransport; @MAKE@ depends - cd printUtilUnitTest; @MAKE@ depends -ifeq ($(test_cathermo),1) - cd pureFluidTest; @MAKE@ depends - cd rankine_democxx; @MAKE@ depends -endif -ifeq ($(test_ck),1) - cd ck2cti_test; @MAKE@ depends - cd nasa9_reader; @MAKE@ depends -endif -ifeq ($(test_python),1) - cd min_python; @MAKE@ depends -endif -ifeq ($(test_python),2) - cd min_python; @MAKE@ depends - cd python; @MAKE@ depends -endif -ifeq ($(test_cathermo),1) - cd cathermo; @MAKE@ depends -endif -ifeq ($(test_vcs_nonideal),1) - cd VCSnonideal; @MAKE@ depends -endif diff --git a/test_problems/NASA9poly_test/Makefile.in b/test_problems/NASA9poly_test/Makefile.in deleted file mode 100644 index da793449f..000000000 --- a/test_problems/NASA9poly_test/Makefile.in +++ /dev/null @@ -1,131 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = NASA9poly_test - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = NASA9poly_test.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIB_DEPS = $(CANTERA_LIBDIR)/liboneD.a \ - $(CANTERA_LIBDIR)/libzeroD.a \ - $(CANTERA_LIBDIR)/libkinetics.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libctmath.a \ - $(CANTERA_LIBDIR)/libtpx.a \ - $(CANTERA_LIBDIR)/libconverters.a - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/NASA9poly_test/runtest b/test_problems/NASA9poly_test/runtest deleted file mode 100755 index 7de7babc3..000000000 --- a/test_problems/NASA9poly_test/runtest +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt outputa.txt -tname="NASA9poly_test" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./NASA9poly_test > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$tname ($tname test) returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname test" -else - echo "unsuccessful diff comparison on $tname test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/VCSnonideal/Makefile.in b/test_problems/VCSnonideal/Makefile.in deleted file mode 100644 index 704cb03d3..000000000 --- a/test_problems/VCSnonideal/Makefile.in +++ /dev/null @@ -1,33 +0,0 @@ -# -# $Revision: 1.1 $ -# $Author: hkmoffa $ -# $Date: 2007/12/20 23:47:41 $ -# -# -test_vcs_nonideal=@COMPILE_VCSNONIDEAL@ - - -all: -ifeq ($(test_vcs_nonideal),1) - cd NaCl_equil; @MAKE@ all -endif - -test: -ifeq ($(test_vcs_nonideal),1) - cd NaCl_equil; @MAKE@ -s test -endif - -# -# Have to remove .depends before calling make, because -# the rule for updating .depends is invoked, before the clean rule, -# if .depends exists in the directory. -# -clean: - $(RM) *.*~ - cd NaCl_equil; $(RM) .depends ; @MAKE@ clean - - -depends: -ifeq ($(test_vcs_nonideal),1) - cd NaCl_equil; @MAKE@ depends -endif diff --git a/test_problems/VCSnonideal/NaCl_equil/Makefile.in b/test_problems/VCSnonideal/NaCl_equil/Makefile.in deleted file mode 100644 index 9b24dbd03..000000000 --- a/test_problems/VCSnonideal/NaCl_equil/Makefile.in +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = nacl_equil - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = nacl_equil.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -############################################################################# - -on_DEBUG_MODE=@CANTERA_DEBUG_MODE@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ -# -# The directory where Cantera include files may be found. -# -CANTERA_INCDIR=@ctroot@/build/include/cantera - -INCLUDE_DIRS = -I$(CANTERA_INCDIR) - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(INCLUDE_DIRS) @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ -# -# Setup The Cantera Interface -# -CANTERA_LIBS= @LOCAL_LIBS@ -lctcxx - -CANTERA_LIBDEP = \ - $(CANTERA_LIBDIR)/libequil.a \ - $(CANTERA_LIBDIR)/libVCSnonideal.a \ - $(CANTERA_LIBDIR)/libkinetics.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctmath.a \ - $(CANTERA_LIBDIR)/libtpx.a \ - $(CANTERA_LIBDIR)/libconverters.a \ - $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libctlapack.a \ - $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctcxx.a - - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ - -# How to compile C++ source files to object files -.cpp.o: - @CXX@ $(CXX_FLAGS) -c $< - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: .depends $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBDEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends diff.out out.txt \ - diff_csv.txt diff_out.txt err_out.txt vcs_equilibrate_res.csv - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/VCSnonideal/NaCl_equil/runtest b/test_problems/VCSnonideal/NaCl_equil/runtest deleted file mode 100755 index 489e71163..000000000 --- a/test_problems/VCSnonideal/NaCl_equil/runtest +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh -# -# -eCode=0 -temp_success="1" -/bin/rm -f out.txt err_out.txt \ - vcs_equilibrate_res.csv \ - diff_csv.txt diff_out.txt -# -# Create a symbolic link to mpequil, if none exists already -# - -testName=NaCl_equil - -BINDIR=../../../bin - -################################################################# -# -################################################################# -MPEQUIL_EXE=${MPEQUIL_EXE:=nacl_equil} - -./$MPEQUIL_EXE -d 3 > out.txt 2>err_out.txt -retnStat=$? -if test $retnStat != "0" -then - echo "mpequil returned with bad status, $retnStat, check output" -fi - -diff -w good_out.txt out.txt > diff_out.txt -retnStat_txt=$? -$BINDIR/csvdiff -a 1.0E-50 vcs_equilibrate_blessed.csv vcs_equilibrate_res.csv > diff_csv.txt -retnStat_csv=$? - -if test $retnStat_csv = "0" -then - echo "Successful test comparison on "`pwd` - if [ $retnStat_txt != "0" ] - then - echo " But, text output files have differences. See diff_out.txt" - fi -else - echo "Unsuccessful test comparison on "`pwd` " test" - if test $retnStat_csv != "1" - then - echo " csv files are different - see diff_csv.txt" - fi - if test $retnStat_txt != "0" - then - echo " And, text output files have differences. See diff_out.txt" - fi -fi -# -# return 0 for no errors, 1 for errors -# -exit $eCode - diff --git a/test_problems/VCSnonideal/NaCl_equil/runtestd b/test_problems/VCSnonideal/NaCl_equil/runtestd deleted file mode 100755 index 453ec1d11..000000000 --- a/test_problems/VCSnonideal/NaCl_equil/runtestd +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/sh -# -# -eCode=0 -temp_success="1" -/bin/rm -f dout.txt err_dout.txt \ - vcs_eqilibrate_res.csv \ - diff_csv.txt diff_dout.txt -# -# Create a symbolic link to mpequil, if none exists already -# - -testName=nacl_equil - -BINDIR=../../../bin - -# -# There are different answers depending on whether DEBUG_MODE was -# turned on in the compile -goodFile=good_dout.txt -if test $# -gt 0 -then -if test $1 = "DEBUG_MODE" -then - goodFile=good_dout_dm.txt -fi -fi -################################################################# -# -################################################################# -MPEQUIL_EXE=${MPEQUIL_EXE:=nacl_equil} - -./$MPEQUIL_EXE -d 5 > dout.txt 2>err_dout.txt -retnStat=$? -if test $retnStat != "0" -then - echo "mpequil returned with bad status, $retnStat, check output" -fi - -diff -w $goodFile dout.txt > diff_dout.txt -retnStat_txt=$? -$BINDIR/csvdiff -a 1.0E-50 vcs_equilibrate_blessed.csv vcs_equilibrate_res.csv > diff_csv.txt -retnStat_csv=$? - -if test $retnStat_csv = "0" -then - echo "Successful test comparison on "`pwd` - if [ $retnStat_txt != "0" ] - then - echo " But, text output files have differences. See diff_dout.txt" - fi -else - echo "Unsuccessful test comparison on "`pwd` " test" - if test $retnStat_csv != "1" - then - echo " csv files are different - see diff_csv.txt" - fi - if test $retnStat_txt != "0" - then - echo " And, text output files have differences. See diff_dout.txt" - fi -fi -# -# return 0 for no errors, 1 for errors -# -exit $eCode - diff --git a/test_problems/VPsilane_test/Makefile.in b/test_problems/VPsilane_test/Makefile.in deleted file mode 100644 index 7c4fefd3c..000000000 --- a/test_problems/VPsilane_test/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = VPsilane_test - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = silane_equil.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies of the static libraries -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: - -$(OBJS): Makefile - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/VPsilane_test/runtest.in b/test_problems/VPsilane_test/runtest.in deleted file mode 100755 index 474603001..000000000 --- a/test_problems/VPsilane_test/runtest.in +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -doDebug=@CANTERA_DEBUG_MODE@ -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./VPsilane_test > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "VPsilane_test returned with bad status, $retnStat, check output" -fi - -if test "x$doDebug" = "x1" -then -diff -w output.txt output_debug_blessed.txt > diff_test.out -retnStat=$? -else -diff -w output.txt output_blessed.txt > diff_test.out -retnStat=$? - -fi -if [ $retnStat = "0" ] -then - echo "successful diff comparison on VPsilane_test test" -else - echo "unsuccessful diff comparison on VPsilane_test test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/DH_graph_1/Makefile.in b/test_problems/cathermo/DH_graph_1/Makefile.in deleted file mode 100644 index 757519488..000000000 --- a/test_problems/cathermo/DH_graph_1/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = DH_graph_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional dependency to enhance stability -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/DH_graph_1/runtest b/test_problems/cathermo/DH_graph_1/runtest deleted file mode 100755 index eab6203ec..000000000 --- a/test_problems/cathermo/DH_graph_1/runtest +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh -# -# run_test -# -########################################################################## -# A couple of validity checks -if test ! $# -eq 0 ; then - echo 'usage: runtest' - echo ' ' - exit -1 -fi - -temp_success="0" -/bin/rm -f output.txt outputa.txt -########################################################################## -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -prog=DH_graph_1 -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f test.out test.diff DH_graph_1.csv - -# echo 'Testing the DH dilute act calculation - act vs I' -./$prog DH_NaCl_dilute.xml > DH_graph_1.csv -retnStat=$? -diff DH_graph_1.csv DH_NaCl_dilute_blessed.csv > diff.out -zres=$? -if test "$zres" = "0" -a "$retnStat" = "0"; then - echo "successful diff comparison on $prog dilute test" -else - echo "unsuccessful diff comparison on $prog dilute test" - temp_success="1" - if [ $retnStat != "0" ] - then - echo "$prog returned with bad status, $retnStat, check output" - fi -fi - - - -########################################################################## -if test $temp_success = "0" ; then - echo "PASSED" > csvCode.txt -else - echo "FAILED" > csvCode.txt -fi diff --git a/test_problems/cathermo/DH_graph_NM/Makefile.in b/test_problems/cathermo/DH_graph_NM/Makefile.in deleted file mode 100644 index c58bbb03a..000000000 --- a/test_problems/cathermo/DH_graph_NM/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = DH_graph_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/DH_graph_NM/runtest b/test_problems/cathermo/DH_graph_NM/runtest deleted file mode 100755 index 104cdfdd8..000000000 --- a/test_problems/cathermo/DH_graph_NM/runtest +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# -# run_test -# -########################################################################## -# A couple of validity checks -if test ! $# -eq 0 ; then - echo 'usage: runtest' - echo ' ' - exit -1 -fi - -temp_success="0" -/bin/rm -f output.txt outputa.txt -########################################################################## -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -prog=DH_graph_1 -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi - -########################################################################## -/bin/rm -f test.out test.diff DH_NaCl_NM.csv - -./$prog DH_NaCl_NM.xml > DH_NaCl_NM.csv -retnStat=$? -diff DH_NaCl_NM.csv DH_NaCl_NM_blessed.csv > output.txt -zres=$? -if test "$zres" = "0" -a "$retnStat" = "0"; then - echo "successful diff comparison on $prog NM test" -else - echo "unsuccessful diff comparison on $prog NM test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/DH_graph_Pitzer/Makefile.in b/test_problems/cathermo/DH_graph_Pitzer/Makefile.in deleted file mode 100644 index 4069da854..000000000 --- a/test_problems/cathermo/DH_graph_Pitzer/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = DH_graph_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/cathermo/DH_graph_Pitzer/runtest b/test_problems/cathermo/DH_graph_Pitzer/runtest deleted file mode 100755 index 977c5b988..000000000 --- a/test_problems/cathermo/DH_graph_Pitzer/runtest +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# -# run_test -# -########################################################################## -# A couple of validity checks -if test ! $# -eq 0 ; then - echo 'usage: runtest' - echo ' ' - exit -1 -fi - -temp_success="0" -/bin/rm -f output.txt outputa.txt -########################################################################## -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -prog=DH_graph_1 -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi - -########################################################################## -/bin/rm -f test.out test.diff DH_NaCl_Pitzer.csv - -./$prog DH_NaCl_Pitzer.xml > DH_NaCl_Pitzer.csv -retnStat=$? -diff DH_NaCl_Pitzer.csv DH_NaCl_Pitzer_blessed.csv > output.txt -zres=$? -if test "$zres" = "0" -a "$retnStat" = "0"; then - echo "successful diff comparison on $prog Pitzer test" -else - echo "unsuccessful diff comparison on $prog Pitzer test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/DH_graph_acommon/Makefile.in b/test_problems/cathermo/DH_graph_acommon/Makefile.in deleted file mode 100644 index de638c902..000000000 --- a/test_problems/cathermo/DH_graph_acommon/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = DH_graph_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/DH_graph_acommon/runtest b/test_problems/cathermo/DH_graph_acommon/runtest deleted file mode 100755 index 08a052cb8..000000000 --- a/test_problems/cathermo/DH_graph_acommon/runtest +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# -# run_test -# -########################################################################## -# A couple of validity checks -if test ! $# -eq 0 ; then - echo 'usage: runtest' - echo ' ' - exit -1 -fi - -temp_success="0" -/bin/rm -f output.txt outputa.txt -########################################################################## -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -prog=DH_graph_1 -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi - -########################################################################## -/bin/rm -f test.out test.diff DH_NaCl_acommon.csv - -./$prog DH_NaCl_acommon.xml > DH_NaCl_acommon.csv -retnStat=$? -diff DH_NaCl_acommon.csv DH_NaCl_acommon_blessed.csv > output.txt -zres=$? -if test "$zres" = "0" -a "$retnStat" = "0"; then - echo "successful diff comparison on $prog _acommon test" -else - echo "unsuccessful diff comparison on $prog _acommon test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/DH_graph_bdotak/Makefile.in b/test_problems/cathermo/DH_graph_bdotak/Makefile.in deleted file mode 100644 index bee9ee383..000000000 --- a/test_problems/cathermo/DH_graph_bdotak/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = DH_graph_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/DH_graph_bdotak/runtest b/test_problems/cathermo/DH_graph_bdotak/runtest deleted file mode 100755 index 156aeb5d4..000000000 --- a/test_problems/cathermo/DH_graph_bdotak/runtest +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# -# run_test -# -########################################################################## -# A couple of validity checks -if test ! $# -eq 0 ; then - echo 'usage: runtest' - echo ' ' - exit -1 -fi - -temp_success="0" -/bin/rm -f output.txt outputa.txt -########################################################################## -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -prog=DH_graph_1 -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi - -########################################################################## -/bin/rm -f test.out test.diff DH_NaCl_bdotak.csv - -./$prog DH_NaCl_bdotak.xml > DH_NaCl_bdotak.csv -retnStat=$? -diff DH_NaCl_bdotak.csv DH_NaCl_bdotak_blessed.csv > output.txt -zres=$? -if test "$zres" = "0" -a "$retnStat" = "0"; then - echo "successful diff comparison on $prog bdotak test" -else - echo "unsuccessful diff comparison on $prog bdotak test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/HMW_dupl_test/Makefile.in b/test_problems/cathermo/HMW_dupl_test/Makefile.in deleted file mode 100644 index 95f410f8c..000000000 --- a/test_problems/cathermo/HMW_dupl_test/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_dupl_test - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_dupl_test.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_dupl_test/runtest b/test_problems/cathermo/HMW_dupl_test/runtest deleted file mode 100755 index a85fe7f7b..000000000 --- a/test_problems/cathermo/HMW_dupl_test/runtest +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -########################################################################## -prog=HMW_dupl_test -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f test.out test.diff output.txt - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog HMW_NaCl_sp1977_alt.xml > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$prog returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/HMW_graph_CpvT/Makefile.in b/test_problems/cathermo/HMW_graph_CpvT/Makefile.in deleted file mode 100644 index 445a524ff..000000000 --- a/test_problems/cathermo/HMW_graph_CpvT/Makefile.in +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_graph_CpvT - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_CpvT.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends Cp_standalone - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -Cp_standalone: Cp_standalone.o - $(CXX) -o Cp_standalone Cp_standalone.o \ - $(LCXX_FLAGS) $(LINK_OPTIONS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_graph_CpvT/runtest b/test_problems/cathermo/HMW_graph_CpvT/runtest deleted file mode 100755 index 4765bb7c5..000000000 --- a/test_problems/cathermo/HMW_graph_CpvT/runtest +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -########################################################################## -prog=HMW_graph_CpvT -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f test.out test.diff output.txt - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog HMW_NaCl_sp1977_alt.xml > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$prog returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/HMW_graph_GvI/Makefile.in b/test_problems/cathermo/HMW_graph_GvI/Makefile.in deleted file mode 100644 index cc2d1cbe2..000000000 --- a/test_problems/cathermo/HMW_graph_GvI/Makefile.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_graph_GvI - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_GvI.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = -DSRCDIRTREE @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_graph_GvI/runtest b/test_problems/cathermo/HMW_graph_GvI/runtest deleted file mode 100755 index 5e2d16da2..000000000 --- a/test_problems/cathermo/HMW_graph_GvI/runtest +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh -# -# -temp_success="0" -/bin/rm -f output.txt outputa.txt - -########################################################################## -prog=HMW_graph_GvI -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f test.out test.diff output.txt -/bin/rm -f test.out test.diff T298.csv T523.csv - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="1" - echo "$prog returned with bad status, $retnStat, check output" -fi -diff T298.csv T298_blessed.csv > test.diff -zres=$? -diff T523.csv T523_blessed.csv > test2.diff -zres2=$? -if test "$zres" = "0" ; then - if test "$zres2" = "0" ; then - hhh="1" - else - temp_success="1" - fi -else - echo 'test 1 failed' - temp_success="1" -fi -if [ $temp_success = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt -fi - - diff --git a/test_problems/cathermo/HMW_graph_GvT/Makefile.in b/test_problems/cathermo/HMW_graph_GvT/Makefile.in deleted file mode 100644 index c65d4916f..000000000 --- a/test_problems/cathermo/HMW_graph_GvT/Makefile.in +++ /dev/null @@ -1,118 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_graph_GvT - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_GvT.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends Gex_standalone - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -Gex_standalone: Gex_standalone.o - $(CXX) -o Gex_standalone Gex_standalone.o \ - $(LCXX_FLAGS) $(LINK_OPTIONS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_graph_GvT/runtest b/test_problems/cathermo/HMW_graph_GvT/runtest deleted file mode 100755 index 8a133245b..000000000 --- a/test_problems/cathermo/HMW_graph_GvT/runtest +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -########################################################################## -prog=HMW_graph_GvT -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f test.out test.diff output.txt - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog HMW_NaCl_sp1977_alt.xml > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$prog returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/HMW_graph_HvT/Makefile.in b/test_problems/cathermo/HMW_graph_HvT/Makefile.in deleted file mode 100644 index b0ecf6a2b..000000000 --- a/test_problems/cathermo/HMW_graph_HvT/Makefile.in +++ /dev/null @@ -1,120 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_graph_HvT - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_HvT.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends L_standalone - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -L_standalone: L_standalone.o - $(CXX) -o L_standalone L_standalone.o \ - $(LCXX_FLAGS) $(LINK_OPTIONS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_graph_HvT/runtest b/test_problems/cathermo/HMW_graph_HvT/runtest deleted file mode 100755 index a177de59a..000000000 --- a/test_problems/cathermo/HMW_graph_HvT/runtest +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -########################################################################## -prog=HMW_graph_HvT -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f test.out test.diff output.txt - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog HMW_NaCl_sp1977_alt.xml > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$prog returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/HMW_graph_VvT/Makefile.in b/test_problems/cathermo/HMW_graph_VvT/Makefile.in deleted file mode 100644 index cd5437328..000000000 --- a/test_problems/cathermo/HMW_graph_VvT/Makefile.in +++ /dev/null @@ -1,121 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_graph_VvT - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_VvT.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends V_standalone - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -V_standalone: V_standalone.o - $(CXX) -o V_standalone V_standalone.o \ - $(LCXX_FLAGS) $(LINK_OPTIONS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_graph_VvT/runtest b/test_problems/cathermo/HMW_graph_VvT/runtest deleted file mode 100755 index cdfc8f4d4..000000000 --- a/test_problems/cathermo/HMW_graph_VvT/runtest +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -########################################################################## -prog=HMW_graph_VvT -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f test.out test.diff output.txt - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog HMW_NaCl_sp1977_alt.xml > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$prog returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/HMW_test_1/Makefile.in b/test_problems/cathermo/HMW_test_1/Makefile.in deleted file mode 100644 index 7ae9500eb..000000000 --- a/test_problems/cathermo/HMW_test_1/Makefile.in +++ /dev/null @@ -1,123 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_test_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_test_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(DEBUG_FLAG) - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_test_1/runtest b/test_problems/cathermo/HMW_test_1/runtest deleted file mode 100755 index 3e963c89e..000000000 --- a/test_problems/cathermo/HMW_test_1/runtest +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" - -########################################################################## -prog=HMW_test_1 -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f output.txt outputa.txt -/bin/rm -f test.out test.diff output.txt diff_test.out -/bin/rm -f CheckDebug.txt output_bc.txt - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$prog returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -if [ -f CheckDebug.txt ] -then - cp output_blessed.txt output_bc.txt -else - cp output_noD_blessed.txt output_bc.txt -fi - -diff -w outputa.txt output_bc.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/HMW_test_3/Makefile.in b/test_problems/cathermo/HMW_test_3/Makefile.in deleted file mode 100644 index a535d3067..000000000 --- a/test_problems/cathermo/HMW_test_3/Makefile.in +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_test_3 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_test_3.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -do_DEBUG_MODE = @CANTERA_DEBUG_MODE@ -ifeq ($(do_DEBUG_MODE), 1) -DDD = -DDEBUG_MODE -else -DDD = -endif - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(DDD) - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: .depends $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_test_3/runtest b/test_problems/cathermo/HMW_test_3/runtest deleted file mode 100755 index f6f9fad52..000000000 --- a/test_problems/cathermo/HMW_test_3/runtest +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" - -########################################################################## -prog=HMW_test_3 -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f output.txt outputa.txt -/bin/rm -f test.out test.diff output.txt diff_test.out -/bin/rm -f CheckDebug.txt output_bc.txt - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$prog returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -if [ -f CheckDebug.txt ] -then - cp output_blessed.txt output_bc.txt -else - cp output_noD_blessed.txt output_bc.txt -fi - -diff -w outputa.txt output_bc.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/Makefile.in b/test_problems/cathermo/Makefile.in deleted file mode 100644 index 1f539f61f..000000000 --- a/test_problems/cathermo/Makefile.in +++ /dev/null @@ -1,126 +0,0 @@ -# -# $Revision: 1.18 $ -# $Author: hkmoffa $ -# $Date: 2008/08/23 01:16:43 $ -# -# -test_issp=@COMPILE_IDEAL_SOLUTIONS@ -test_electrolytes=@COMPILE_ELECTROLYTES@ - -all: -ifeq ($(test_issp),1) - cd issp; @MAKE@ all - cd stoichSubSSTP; @MAKE@ all -endif -ifeq ($(test_electrolytes),1) - cd ims; @MAKE@ all - cd testIAPWS; @MAKE@ all - cd testIAPWSPres; @MAKE@ all - cd testIAPWSTripP; @MAKE@ all - cd testWaterPDSS; @MAKE@ all - cd testWaterTP; @MAKE@ all - cd HMW_graph_GvT; @MAKE@ all - cd HMW_graph_GvI; @MAKE@ all - cd HMW_graph_HvT; @MAKE@ all - cd HMW_graph_CpvT; @MAKE@ all - cd HMW_graph_VvT; @MAKE@ all - cd HMW_test_1; @MAKE@ all - cd HMW_test_3; @MAKE@ all - cd DH_graph_1; @MAKE@ all - cd DH_graph_acommon; @MAKE@ all - cd DH_graph_bdotak; @MAKE@ all - cd DH_graph_NM; @MAKE@ all - cd DH_graph_Pitzer; @MAKE@ all - cd HMW_dupl_test; @MAKE@ all - cd VPissp; @MAKE@ all - cd wtWater; @MAKE@ all -endif - -test: -ifeq ($(test_issp),1) - cd issp; @MAKE@ -s test - cd stoichSubSSTP; @MAKE@ -s test - cd VPissp; @MAKE@ -s test -endif -ifeq ($(test_electrolytes),1) - cd ims; @MAKE@ -s test - cd testIAPWS; @MAKE@ -s test - cd testIAPWSPres; @MAKE@ -s test - cd testIAPWSTripP; @MAKE@ -s test - cd testWaterPDSS; @MAKE@ -s test - cd testWaterTP; @MAKE@ -s test - cd HMW_graph_GvT; @MAKE@ -s test - cd HMW_graph_GvI; @MAKE@ -s test - cd HMW_graph_HvT; @MAKE@ -s test - cd HMW_graph_CpvT; @MAKE@ -s test - cd HMW_graph_VvT; @MAKE@ -s test - cd HMW_test_1; @MAKE@ -s test - cd HMW_test_3; @MAKE@ -s test - cd DH_graph_1; @MAKE@ -s test - cd DH_graph_acommon; @MAKE@ -s test - cd DH_graph_bdotak; @MAKE@ -s test - cd DH_graph_NM; @MAKE@ -s test - cd DH_graph_Pitzer; @MAKE@ -s test - cd HMW_dupl_test; @MAKE@ -s test - cd wtWater; @MAKE@ -s test -endif -# -# Have to remove .depends before calling make, because -# the rule for updating .depends is invoked, before the clean rule, -# if .depends exists in the directory. -# -clean: - $(RM) *.*~ - cd issp; $(RM) .depends ; @MAKE@ clean - cd stoichSubSSTP; $(RM) .depends ; @MAKE@ clean - cd ims; $(RM) .depends ; @MAKE@ clean - cd testIAPWS; $(RM) .depends ; @MAKE@ clean - cd testIAPWSPres; $(RM) .depends ; @MAKE@ clean - cd testIAPWSTripP; $(RM) .depends ; @MAKE@ clean - cd testWaterPDSS; $(RM) .depends ; @MAKE@ clean - cd testWaterTP; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_GvT; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_GvI; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_HvT; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_CpvT; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_VvT; $(RM) .depends ; @MAKE@ clean - cd HMW_test_1; $(RM) .depends ; @MAKE@ clean - cd HMW_test_3; $(RM) .depends ; @MAKE@ clean - cd DH_graph_1; $(RM) .depends ; @MAKE@ clean - cd DH_graph_acommon; $(RM) .depends ; @MAKE@ clean - cd DH_graph_bdotak; $(RM) .depends ; @MAKE@ clean - cd DH_graph_NM; $(RM) .depends ; @MAKE@ clean - cd DH_graph_Pitzer; $(RM) .depends ; @MAKE@ clean - cd HMW_dupl_test; $(RM) .depends ; @MAKE@ clean - cd VPissp; $(RM) .depends ; @MAKE@ clean - cd wtWater; $(RM) .depends ; @MAKE@ clean - -depends: -ifeq ($(test_issp),1) - cd issp; @MAKE@ depends - cd stoichSubSSTP; @MAKE@ clean -endif -ifeq ($(test_electrolytes),1) - cd ims; @MAKE@ depends - cd testIAPWS; @MAKE@ depends - cd testIAPWSPres; @MAKE@ depends - cd testIAPWSTripP; @MAKE@ depends - cd testWaterPDSS; @MAKE@ depends - cd testWaterTP; @MAKE@ depends - cd HMW_graph_GvT; @MAKE@ depends - cd HMW_graph_GvI; @MAKE@ depends - cd HMW_graph_HvT; @MAKE@ depends - cd HMW_graph_CpvT; @MAKE@ depends - cd HMW_graph_VvT; @MAKE@ depends - cd HMW_test_1; @MAKE@ depends - cd HMW_test_3; @MAKE@ depends - cd DH_graph_1; @MAKE@ depends - cd DH_graph_acommon; @MAKE@ depends - cd DH_graph_bdotak; @MAKE@ depends - cd DH_graph_NM; @MAKE@ depends - cd DH_graph_Pitzer; @MAKE@ depends - cd HMW_dupl_test; @MAKE@ depends - cd VPissp; @MAKE@ depends - cd wtWater; @MAKE@ depends - -endif diff --git a/test_problems/cathermo/VPissp/Makefile.in b/test_problems/cathermo/VPissp/Makefile.in deleted file mode 100644 index 59082ea8c..000000000 --- a/test_problems/cathermo/VPissp/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = ISSPTester - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = ISSPTester.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/VPissp/runtest b/test_problems/cathermo/VPissp/runtest deleted file mode 100755 index 6c7cf2348..000000000 --- a/test_problems/cathermo/VPissp/runtest +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./ISSPTester > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "ISSPTester returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on VPissp test" -else - echo "unsuccessful diff comparison on VPissp test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/ims/Makefile.in b/test_problems/cathermo/ims/Makefile.in deleted file mode 100644 index a20f94651..000000000 --- a/test_problems/cathermo/ims/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = IMSTester - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = IMSTester.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/cathermo/ims/runtest b/test_problems/cathermo/ims/runtest deleted file mode 100755 index bf0e5e34f..000000000 --- a/test_problems/cathermo/ims/runtest +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./IMSTester > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "IMSTester returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on IMSTester test" -else - echo "unsuccessful diff comparison on IMSTester test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/issp/Makefile.in b/test_problems/cathermo/issp/Makefile.in deleted file mode 100644 index 366a13061..000000000 --- a/test_problems/cathermo/issp/Makefile.in +++ /dev/null @@ -1,117 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = ISSPTester - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = ISSPTester.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/issp/runtest b/test_problems/cathermo/issp/runtest deleted file mode 100755 index 3b01fb2b8..000000000 --- a/test_problems/cathermo/issp/runtest +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./ISSPTester > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "ISSPTester returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on issp test" -else - echo "unsuccessful diff comparison on issp test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/stoichSubSSTP/Makefile.in b/test_problems/cathermo/stoichSubSSTP/Makefile.in deleted file mode 100644 index 71498b17f..000000000 --- a/test_problems/cathermo/stoichSubSSTP/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = stoichSubSSTP - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = stoichSubSSTP.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/stoichSubSSTP/runtest b/test_problems/cathermo/stoichSubSSTP/runtest deleted file mode 100755 index 68358d859..000000000 --- a/test_problems/cathermo/stoichSubSSTP/runtest +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -########################################################################## -prog=stoichSubSSTP -if test ! -x $prog ; then - echo $prog ' does not exist' - exit -1 -fi -########################################################################## -/bin/rm -f test.out test.diff output.txt - -################################################################# -# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA -CANTERA_BIN=${CANTERA_BIN:=../../../bin} - -################################################################# - -./$prog > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$prog returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $prog test" -else - echo "unsuccessful diff comparison on $prog test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/testIAPWS/Makefile.in b/test_problems/cathermo/testIAPWS/Makefile.in deleted file mode 100755 index f42a74968..000000000 --- a/test_problems/cathermo/testIAPWS/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = testIAPWSphi - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testIAPWSphi.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/cathermo/testIAPWS/runtest b/test_problems/cathermo/testIAPWS/runtest deleted file mode 100755 index 60a2e297c..000000000 --- a/test_problems/cathermo/testIAPWS/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -testName=testIAPWSphi -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./testIAPWSphi > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/testIAPWSPres/Makefile.in b/test_problems/cathermo/testIAPWSPres/Makefile.in deleted file mode 100755 index 613bb908b..000000000 --- a/test_problems/cathermo/testIAPWSPres/Makefile.in +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = testPress - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testPress.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/testIAPWSPres/runtest b/test_problems/cathermo/testIAPWSPres/runtest deleted file mode 100755 index a9b880b30..000000000 --- a/test_problems/cathermo/testIAPWSPres/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -testName=testIAPWSPress -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./testPress > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/testIAPWSTripP/Makefile.in b/test_problems/cathermo/testIAPWSTripP/Makefile.in deleted file mode 100755 index 0864132e3..000000000 --- a/test_problems/cathermo/testIAPWSTripP/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = testTripleP - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testTripleP.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/testIAPWSTripP/runtest b/test_problems/cathermo/testIAPWSTripP/runtest deleted file mode 100755 index c93c2588d..000000000 --- a/test_problems/cathermo/testIAPWSTripP/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -testName=testTripleP -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./testTripleP > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/testWaterPDSS/Makefile.in b/test_problems/cathermo/testWaterPDSS/Makefile.in deleted file mode 100755 index dd68816ac..000000000 --- a/test_problems/cathermo/testWaterPDSS/Makefile.in +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = testWaterPDSS - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testWaterPDSS.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/testWaterPDSS/runtest b/test_problems/cathermo/testWaterPDSS/runtest deleted file mode 100755 index e97266c9c..000000000 --- a/test_problems/cathermo/testWaterPDSS/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -testName=testWaterPDSS -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./testWaterPDSS > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/testWaterTP/Makefile.in b/test_problems/cathermo/testWaterTP/Makefile.in deleted file mode 100644 index 1dd7c0eb6..000000000 --- a/test_problems/cathermo/testWaterTP/Makefile.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = testWaterSSTP - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testWaterSSTP.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/testWaterTP/runtest b/test_problems/cathermo/testWaterTP/runtest deleted file mode 100755 index 80a62b12e..000000000 --- a/test_problems/cathermo/testWaterTP/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -testName=testWaterTP -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./testWaterSSTP > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/cathermo/wtWater/Makefile.in b/test_problems/cathermo/wtWater/Makefile.in deleted file mode 100755 index 3aaaec32d..000000000 --- a/test_problems/cathermo/wtWater/Makefile.in +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = wtWater - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = wtWater.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/wtWater/runtest b/test_problems/cathermo/wtWater/runtest deleted file mode 100755 index 50d89dde9..000000000 --- a/test_problems/cathermo/wtWater/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -testName=wtWater -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -./wtWater > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/ck2cti_test/Makefile.in b/test_problems/ck2cti_test/Makefile.in deleted file mode 100644 index 7c29bc16f..000000000 --- a/test_problems/ck2cti_test/Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ -# -# $Revision: 1.2 $ -# $Author: hkmoffa $ -# $Date: 2004/07/29 22:14:56 $ -# -# -all: - -test: - ./runtest - -clean: - ../../bin/rm_cvsignore - -depends: - diff --git a/test_problems/cxx_ex/Makefile.in b/test_problems/cxx_ex/Makefile.in deleted file mode 100644 index 008d0c035..000000000 --- a/test_problems/cxx_ex/Makefile.in +++ /dev/null @@ -1,131 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# the name of the executable program to be created -PROG_NAME = cxx_examples - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = examples.o kinetics_example1.o kinetics_example2.o \ - kinetics_example3.o equil_example1.o \ - transport_example1.o transport_example2.o \ - rxnpath_example1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - - -############################################################################# - -# the Fortran compiler -FORT = @F90@ - -PURIFY=@PURIFY@ - -# Fortran compile flags -FORT_FLAGS = @FFLAGS@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - - -#------ you probably don't have to change anything below this line ----- - - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -CANTERA_LIB_DEPS = $(CANTERA_LIBDIR)/libkinetics.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libctmath.a \ - $(CANTERA_LIBDIR)/libtpx.a \ - $(CANTERA_LIBDIR)/libconverters.a - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -ifeq (@use_sundials@, 0) -CANTERA_CVODE_DEPS = $(CANTERA_LIBDIR)/libcvode.a -endif - -LIB_DEPS = $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) $(CANTERA_CVODE_DEPS) - -# the directory where Cantera include files may be found. -CANTERA_INC=-I@ctroot@/build/include - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(CANTERA_INC) $(CXX_FLAGS) - -# how to compile Fortran source files to object files -.@F77_EXT@.@OBJ_EXT@: - $(PURIFY) $(FORT) -c $< $(FORT_FLAGS) - -PROGRAM = ./$(PROG_NAME)$(EXE_EXT) - -all: .depends $(PROGRAM) - -DEPENDS=$(OBJS:.o=.d) - -%.d: - @CXX_DEPENDS@ $(CANTERA_INC) $(CXX_FLAGS) $*.cpp > $*.d - -$(PROGRAM): $(OBJS) $(LIB_DEPS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ \ - $(LCXX_END_LIBS) - - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *~ - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - $(MAKE) .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cxx_ex/runtest b/test_problems/cxx_ex/runtest deleted file mode 100755 index e7245a895..000000000 --- a/test_problems/cxx_ex/runtest +++ /dev/null @@ -1,183 +0,0 @@ -#!/bin/sh -# -# $Id: runtest,v 1.8 2006/08/14 19:32:55 hkmoffa Exp $ -# -temp_success="1" -/bin/rm -f eq1.csv tr1.csv tr2.csv kin1.csv kin2.csv \ - kin1_blessed_tmp.csv kin2_blessed_tmp.csv - -echo " " -echo "***************************************************" -echo " Testing the Cantera C++ Examples " -echo "***************************************************" -echo " " -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -../../examples/cxx/cxx_examples > cxx_examples.out -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "cxx_examples returned with bad status, $retnStat, check output" -fi - -# -# Machine dependent blessed files require knowing the machType -# -machType=`../../bin/get_arch` - -################################################################# -# -################################################################# - -$CANTERA_BIN/csvdiff eq1.csv eq1_blessed.csv > eq1_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful csv comparison on eq1 test" -else - echo "########################################################" - echo "unsuccessful csv comparison on eq1 test" - echo " For more information, see files:" - echo " test_problems/cxx_ex/eq1_test.out" - echo " test_problems/cxx_ex/eq1.csv" - echo " test_problems/cxx_ex/eq1_blessed.csv" - echo "########################################################" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - -################################################################# -# -################################################################# - -$CANTERA_BIN/csvdiff tr1.csv tr1_blessed.csv > tr1_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful csv comparison on tr1 test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "########################################################" - echo "unsuccessful csv comparison on tr1 test" - echo " For more information, see files:" - echo " test_problems/cxx_ex/tr1_test.out" - echo " test_problems/cxx_ex/tr1.csv" - echo " test_problems/cxx_ex/tr1_blessed.csv" - echo "########################################################" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - -################################################################# -# -################################################################# - -$CANTERA_BIN/csvdiff tr2.csv tr2_blessed.csv > tr2_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful csv comparison on tr2 test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "########################################################" - echo "unsuccessful csv comparison on tr2 test" - echo " For more information, see files:" - echo " test_problems/cxx_ex/tr2_test.out" - echo " test_problems/cxx_ex/tr2.csv" - echo " test_problems/cxx_ex/tr2_blessed.csv" - echo "########################################################" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - -################################################################# -# KIN1 -> Test for compliance -################################################################# -# -# Currently kin1 is creating a machine dependent result: -# -> difference is in one time in minor components during the middle -# of a large change. -# -cp kin1_blessed.csv kin1_blessed_tmp.csv -if test x"$machType" = "xcygwin" ; then - /bin/cp kin1_blessed_win.csv kin1_blessed_tmp.csv -fi - -$CANTERA_BIN/csvdiff -r 3.0E-3 kin1.csv kin1_blessed_tmp.csv > kin1_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful csv comparison on kin1 test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "########################################################" - echo "unsuccessful csv comparison on kin1 test" - echo " For more information, see files:" - echo " test_problems/cxx_ex/kin1_test.out" - echo " test_problems/cxx_ex/kin1.csv" - echo " test_problems/cxx_ex/kin1_blessed_tmp.csv" - echo "########################################################" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - -################################################################# -# kin2 test -> check for compliance -################################################################# -# -# Currently kin2 is creating a machine dependent result: -# -> difference is in one time in minor components during the middle -# of a large change. -# -cp kin2_blessed.csv kin2_blessed_tmp.csv -if test x"$machType" = "xcygwin" ; then - /bin/cp kin2_blessed_win.csv kin2_blessed_tmp.csv -fi - -$CANTERA_BIN/csvdiff kin2.csv kin2_blessed_tmp.csv > kin2_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful csv comparison on kin2 test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "########################################################" - echo "unsuccessful csv comparison on kin2 test" - echo " For more information, see files:" - echo " test_problems/cxx_ex/kin2_test.out" - echo " test_problems/cxx_ex/kin2.csv" - echo " test_problems/cxx_ex/kin2_blessed_tmp.csv" - echo "########################################################" - echo "FAILED" > csvCode.txt - temp_success="0" -fi -if [ $temp_success = "1" ] -then - echo 'cxx_examples csv test PASSED!' -else - echo 'cxx_examples csv test FAILED!' -fi - -echo - -################################################################# -# -################################################################# - diff --git a/test_problems/diamondSurf/Makefile.in b/test_problems/diamondSurf/Makefile.in deleted file mode 100644 index 2e782f307..000000000 --- a/test_problems/diamondSurf/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = runDiamond - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = runDiamond.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/diamondSurf/runtest b/test_problems/diamondSurf/runtest deleted file mode 100755 index 6a83db49e..000000000 --- a/test_problems/diamondSurf/runtest +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt outputa.txt -tname="diamondSurf" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./runDiamond > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "runDiamond ($tname test) returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt runDiamond_blessed.out > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname test" -else - echo "unsuccessful diff comparison on $tname test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - -../../bin/exp3to2.sh diamond.xml > diamonda.xml -diff -w diamonda.xml diamond_blessed.xml > xml_diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname diamond.xml test" -else - echo "unsuccessful diff comparison on $thame diamond.xml test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - - diff --git a/test_problems/diamondSurf_dupl/Makefile.in b/test_problems/diamondSurf_dupl/Makefile.in deleted file mode 100644 index cc0e4d5be..000000000 --- a/test_problems/diamondSurf_dupl/Makefile.in +++ /dev/null @@ -1,116 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = runDiamondDupl - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = runDiamondDupl.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/diamondSurf_dupl/runtest b/test_problems/diamondSurf_dupl/runtest deleted file mode 100755 index 5efc713c6..000000000 --- a/test_problems/diamondSurf_dupl/runtest +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt outputa.txt diff_test.txt -tname="diamondSurf_dupl" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./runDiamondDupl > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "runDiamond ($tname test) returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.txt -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname test" -else - echo "unsuccessful diff comparison on $tname test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - - diff --git a/test_problems/fracCoeff/Makefile.in b/test_problems/fracCoeff/Makefile.in deleted file mode 100644 index a4b2bd09c..000000000 --- a/test_problems/fracCoeff/Makefile.in +++ /dev/null @@ -1,116 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = fracCoeff - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = fracCoeff.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/fracCoeff/runtest b/test_problems/fracCoeff/runtest deleted file mode 100755 index 90d2d4798..000000000 --- a/test_problems/fracCoeff/runtest +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# -# - -temp_success="0" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./fracCoeff > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="1" - echo "fracCoeff returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt frac_blessed.out > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on fracCoeff test" -else - echo "unsuccessful diff comparison on fracCoeff test" - echo "FAILED" > csvCode.txt - temp_success="1" -fi - -../../bin/exp3to2.sh frac.xml > fraca.xml -diff -w fraca.xml frac_blessed.xml > xml_diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on fracCoeff.xml test" -else - echo "unsuccessful diff comparison on fracCoeff.xml test" - echo "FAILED" > csvCode.txt - temp_success="1" -fi - - -exit $temp_success diff --git a/test_problems/min_python/Makefile.in b/test_problems/min_python/Makefile.in deleted file mode 100644 index b9fe3dffc..000000000 --- a/test_problems/min_python/Makefile.in +++ /dev/null @@ -1,31 +0,0 @@ -# -# $Revision: 1.4 $ -# $Author: hkmoffa $ -# $Date: 2009/07/13 16:51:56 $ -# -# -test_python=@BUILD_PYTHON@ -test_ck=@BUILD_CK@ -test_cathermo=@NEED_CATHERMO@ - -all: - cd minDiamond; @MAKE@ all - cd negATest; @MAKE@ all - -test: - @(echo "***************************************************") - @(echo " Testing the Cantera Minimun Python Interface ") - @(echo " python executable: " `which "${PYTHON_CMD}" 2>&1` ) - @(echo " python version: " `"${PYTHON_CMD}" -V 2>&1` ) - @(echo "***************************************************") - cd minDiamond; @MAKE@ -s test - cd negATest; @MAKE@ -s test - -clean: - $(RM) *.*~ - cd minDiamond; @MAKE@ clean - cd negATest; @MAKE@ clean - -depends: - cd minDiamond; @MAKE@ depends - cd negATest; @MAKE@ depends diff --git a/test_problems/min_python/minDiamond/Makefile.in b/test_problems/min_python/minDiamond/Makefile.in deleted file mode 100644 index 2eef7041f..000000000 --- a/test_problems/min_python/minDiamond/Makefile.in +++ /dev/null @@ -1,108 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = runDiamond - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = runDiamond.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# Cantera library Dependencies -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: .depends $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends diamond.xml - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - diff --git a/test_problems/min_python/minDiamond/runtest b/test_problems/min_python/minDiamond/runtest deleted file mode 100755 index 2dffb527d..000000000 --- a/test_problems/min_python/minDiamond/runtest +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt diamond.xml diamonda.xml - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs} -export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../../bin} -export CANTERA_BIN - -./runDiamond > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "runDiamond returned with bad status, $retnStat, check output" -fi - -../../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt runDiamond_blessed.out > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on diamond test" -else - echo "unsuccessful diff comparison on diamond test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - -../../../bin/exp3to2.sh diamond.xml > diamonda.xml -diff -w diamonda.xml diamond_blessed.xml > xml_diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on diamond.xml test" -else - echo "unsuccessful diff comparison on diamond.xml test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/min_python/negATest/Makefile.in b/test_problems/min_python/negATest/Makefile.in deleted file mode 100644 index 64cf3cf9d..000000000 --- a/test_problems/min_python/negATest/Makefile.in +++ /dev/null @@ -1,107 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = negATest - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = negATest.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: .depends $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -$(OBJS): Makefile - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - diff --git a/test_problems/min_python/negATest/runtest b/test_problems/min_python/negATest/runtest deleted file mode 100755 index 1bcfec821..000000000 --- a/test_problems/min_python/negATest/runtest +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# - -temp_success="0" -testName="negATest_cti" -/bin/rm -f output.txt outputa.txt noxNeg.xml diff_test.out diff_xml.out - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./negATest > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="1" - echo "$testName returned with bad status, $retnStat, check output" -fi -diff -w noxNeg.xml noxNeg_blessed.xml > diff_xml.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName xml test" -else - echo "unsuccessful diff comparison on $testName xml test" - echo 'FAILED' > csvCode.txt - temp_success="1" -fi - -../../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt negATest_blessed.out > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="1" -fi -# diff --git a/test_problems/mixGasTransport/Makefile.in b/test_problems/mixGasTransport/Makefile.in deleted file mode 100644 index 44634008b..000000000 --- a/test_problems/mixGasTransport/Makefile.in +++ /dev/null @@ -1,116 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = mixGasTransport - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = mixGasTransport.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/mixGasTransport/runtest b/test_problems/mixGasTransport/runtest deleted file mode 100755 index f914fa775..000000000 --- a/test_problems/mixGasTransport/runtest +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt outputa.txt -tname="mixGasTransport" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./mixGasTransport > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$tname ($tname test) returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname test" -else - echo "unsuccessful diff comparison on $tname test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/multiGasTransport/Makefile.in b/test_problems/multiGasTransport/Makefile.in deleted file mode 100644 index 951247869..000000000 --- a/test_problems/multiGasTransport/Makefile.in +++ /dev/null @@ -1,124 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = multiGasTransport - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = multiGasTransport.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: .depends $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/multiGasTransport/runtest b/test_problems/multiGasTransport/runtest deleted file mode 100755 index 984b65564..000000000 --- a/test_problems/multiGasTransport/runtest +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt outputa.txt -tname="multiGasTransport" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./multiGasTransport > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$tname ($tname test) returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname test" -else - echo "unsuccessful diff comparison on $tname test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/nasa9_reader/Makefile.in b/test_problems/nasa9_reader/Makefile.in deleted file mode 100644 index 13c5104ab..000000000 --- a/test_problems/nasa9_reader/Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ -# -# $Revision: 1.1 $ -# $Author: hkmoffa $ -# $Date: 2007/09/13 15:12:46 $ -# -# -all: - -test: - ./runtest - -clean: - ../../bin/rm_cvsignore - -depends: - diff --git a/test_problems/negATest/Makefile.in b/test_problems/negATest/Makefile.in deleted file mode 100644 index bd11bd1b4..000000000 --- a/test_problems/negATest/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = negATest - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = negATest.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) .depends - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a -$(OBJS): Makefile - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/negATest/runtest b/test_problems/negATest/runtest deleted file mode 100755 index 2bce01d44..000000000 --- a/test_problems/negATest/runtest +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# - -temp_success="0" -testName="negATest" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./negATest > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="1" - echo "$testName returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt negATest_blessed.out > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="1" -fi -# diff --git a/test_problems/printUtilUnitTest/Makefile.in b/test_problems/printUtilUnitTest/Makefile.in deleted file mode 100644 index f4f9cd77b..000000000 --- a/test_problems/printUtilUnitTest/Makefile.in +++ /dev/null @@ -1,122 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = pUtest - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = pUtest.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIB_DEPS = @LOCAL_LIBS_DEP@ - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/printUtilUnitTest/runtest b/test_problems/printUtilUnitTest/runtest deleted file mode 100755 index dbbc2ba6d..000000000 --- a/test_problems/printUtilUnitTest/runtest +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt outputa.txt -tname="printUtilUnitTest" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./pUtest > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$tname ($tname test) returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname test" -else - echo "unsuccessful diff comparison on $tname test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/pureFluidTest/Makefile.in b/test_problems/pureFluidTest/Makefile.in deleted file mode 100644 index b87b12f8a..000000000 --- a/test_problems/pureFluidTest/Makefile.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = testPureWater - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testPureWater.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = -L$(CANTERA_LIBDIR) @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel @CXX_INCLUDES@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libthermo.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/pureFluidTest/runtest b/test_problems/pureFluidTest/runtest deleted file mode 100755 index 1e805529a..000000000 --- a/test_problems/pureFluidTest/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -testName=pureFluidTest_Water -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./testPureWater > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/python/Makefile.in b/test_problems/python/Makefile.in deleted file mode 100644 index 7689c8e8e..000000000 --- a/test_problems/python/Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -# test target -> make the program and run the test -test: - ./runtest @PYTHON_CMD@ - @cd tut1; ./runtest @PYTHON_CMD@ - @cd tut2; ./runtest @PYTHON_CMD@ - @cd tut3; ./runtest @PYTHON_CMD@ - @cd tut4; ./runtest @PYTHON_CMD@ - @cd flame1; ./runtest @PYTHON_CMD@ - -# clean target -> clean up -clean: - ../../bin/rm_cvsignore - cd tut1; ./cleanup - cd tut2; ./cleanup - cd tut3; ./cleanup - cd tut4; ./cleanup - cd flame1; ./cleanup - -depends: - diff --git a/test_problems/python/flame1/runtest b/test_problems/python/flame1/runtest deleted file mode 100755 index 6dbc682f7..000000000 --- a/test_problems/python/flame1/runtest +++ /dev/null @@ -1,87 +0,0 @@ -#!/bin/sh -# -# -if test "$#" -ge "2" ; then - echo "runtest ERROR: program requires one argument." - echo " runtest PYTHON_CMD" - exit 0 -fi - -BINDIR=../../../bin - - -temp_success="1" -/bin/rm -f output.txt diff_test.out csvCode.txt ct2ctml.log \ - flame1.xml h2o2.xml diff_csv.txt diff_out.txt flame1.csv - -testName=flame1 -################################################################# -# -################################################################# -# -# Try to create a default python executable location if no -# argument to runtest is supplied. -# -if test -z "$PYTHON_CMD" ; then - if test -z "$PYTHONHOME" ; then - PYTHON_CMDA=python - else - PYTHON_CMDA=$PYTHONHOME/bin/python - fi -else - PYTHON_CMDA=$PYTHON_CMD -fi -FIRSTARG=$1 -PYTHON_CMDB=${FIRSTARG:=$PYTHON_CMDA} - -# -# Check to see whether the python executable exists in the -# current user path -# -locThere=`which $PYTHON_CMDB 2>&1` -isThere=$? -if test "$isThere" != "0" ; then - echo 'Can not find the python executable: ' $PYTHON_CMDB - echo ' ' - echo $locThere - exit 1 -fi -#pVersion=`$PYTHON_CMDB -V 2>&1` - -################################################################# -# -################################################################# - -echo "Testing \"$PYTHON_CMDB flame1\" ... " -$PYTHON_CMDB flame1.py > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "ERROR: flame1.py returned with bad status, $retnStat, check output" -fi - -diff -w output.txt output_blessed.txt > diff_out.txt -retnStat_txt=$? - -$BINDIR/csvdiff -a 1.0E-10 flame1_blessed.csv flame1.csv > diff_csv.txt -retnStat_csv=$? - -if test $retnStat_csv = "0" -then - echo " Successful test comparison on "`pwd` - if [ $retnStat_txt != "0" ] - then - echo " But, text output files have differences. See diff_out.txt" - fi -else - echo " Unsuccessful test comparison on "`pwd` " test" - if test $retnStat_csv != "0" - then - echo " csv files are different - see diff_csv.txt" - fi - if test $retnStat_txt != "0" - then - echo " And, text output files have differences. See diff_out.txt" - fi -fi diff --git a/test_problems/python/runtest b/test_problems/python/runtest deleted file mode 100755 index 0551c28f6..000000000 --- a/test_problems/python/runtest +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh -# -# -if test "$#" -ge "2" ; then - echo "runtest ERROR: program requires one argument." - echo " runtest PYTHON_CMD" - exit 0 -fi - -temp_success="1" -/bin/rm -f diamond.csv flame1.csv flame1_blessed_tmp.csv \ - flame1.out diamond.out flame1_test.out \ - diamond_test.out - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} - -# -# Try to create a default python executable location if no -# argument to runtest is supplied. -# -if test -z "$PYTHONHOME" ; then - PYTHON_CMDA=python -else - PYTHON_CMDA=$PYTHONHOME/bin/python -fi -FIRSTARG=$1 -PYTHON_CMD=${FIRSTARG:=$PYTHON_CMDA} - -# -# Check to see whether the python executable exists in the -# current user path -# -locThere=`which $PYTHON_CMD 2>&1` -isThere=$? -if test "$isThere" != "0" ; then - echo 'Can not find the python executable: ' $PYTHON_CMD - echo ' ' - echo $locThere - exit 1 -fi -pVersion=`$PYTHON_CMD -V 2>&1` - -#echo $PYTHON_CMD -echo " " -echo "***************************************************" -echo " Testing the Cantera Python Interface " -echo " python executable: " $locThere -echo " Python version: " $pVersion -echo "***************************************************" -echo " " - - -################################################################# -# -################################################################# - -echo "Testing surface chemistry..." -$PYTHON_CMD ../../Cantera/python/examples/surface_chemistry/diamond_cvd/diamond.py > diamond.out -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "diamond.py returned with bad status, $retnStat, check output" -fi - -$CANTERA_BIN/csvdiff diamond.csv diamond_blessed.csv > diamond_test_csv.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful csv comparison on diamond test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "unsuccessful csv comparison on diamond test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi -echo - -################################################################# -# -################################################################# -echo "Testing handling of fractional product stoichiometric coefficients..." -$PYTHON_CMD frac.py > frac_test.out -diff -w frac_test.out frac_blessed.out > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on frac test" -else - echo "unsuccessful diff comparison on frac test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi -echo - -if [ $temp_success = "1" ] -then - echo 'Python csv test PASSED!' -else - echo 'Python csv test FAILED!' -fi - - -################################################################# -# -################################################################# - diff --git a/test_problems/python/tut1/runtest b/test_problems/python/tut1/runtest deleted file mode 100755 index 09c8fc2e7..000000000 --- a/test_problems/python/tut1/runtest +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh -# -# -if test "$#" -ge "2" ; then - echo "runtest ERROR: program requires one argument." - echo " runtest PYTHON_CMD" - exit 0 -fi - -temp_success="1" -/bin/rm -f output.txt diff_test.out csvCode.txt ct2ctml.log \ - gri30.xml - -testName=tut1 -################################################################# -# -################################################################# -# -# Try to create a default python executable location if no -# argument to runtest is supplied. -# -if test -z "$PYTHON_CMD" ; then - if test -z "$PYTHONHOME" ; then - PYTHON_CMDA=python - else - PYTHON_CMDA=$PYTHONHOME/bin/python - fi -else - PYTHON_CMDA=$PYTHON_CMD -fi -FIRSTARG=$1 -PYTHON_CMDB=${FIRSTARG:=$PYTHON_CMDA} - -# -# Check to see whether the python executable exists in the -# current user path -# -locThere=`which $PYTHON_CMDB 2>&1` -isThere=$? -if test "$isThere" != "0" ; then - echo 'Can not find the python executable: ' $PYTHON_CMDB - echo ' ' - echo $locThere - exit 1 -fi -#pVersion=`$PYTHON_CMDB -V 2>&1` - -################################################################# -# -################################################################# - -echo -n "Testing \"$PYTHON_CMDB tut1\" ... " -$PYTHON_CMDB tut1.py > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "ERROR: tut1.py returned with bad status, $retnStat, check output" -fi - -diff -w output.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi -echo - diff --git a/test_problems/python/tut2/runtest b/test_problems/python/tut2/runtest deleted file mode 100755 index 6133ab200..000000000 --- a/test_problems/python/tut2/runtest +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh -# -# -if test "$#" -ge "2" ; then - echo "runtest ERROR: program requires one argument." - echo " runtest PYTHON_CMD" - exit 0 -fi - -temp_success="1" -/bin/rm -f output.txt diff_test.out csvCode.txt ct2ctml.log \ - gri30.xml - -testName=tut2 -################################################################# -# -################################################################# -# -# Try to create a default python executable location if no -# argument to runtest is supplied. -# -if test -z "$PYTHON_CMD" ; then - if test -z "$PYTHONHOME" ; then - PYTHON_CMDA=python - else - PYTHON_CMDA=$PYTHONHOME/bin/python - fi -else - PYTHON_CMDA=$PYTHON_CMD -fi -FIRSTARG=$1 -PYTHON_CMDB=${FIRSTARG:=$PYTHON_CMDA} - -# -# Check to see whether the python executable exists in the -# current user path -# -locThere=`which $PYTHON_CMDB 2>&1` -isThere=$? -if test "$isThere" != "0" ; then - echo 'Can not find the python executable: ' $PYTHON_CMDB - echo ' ' - echo $locThere - exit 1 -fi -#pVersion=`$PYTHON_CMDB -V 2>&1` - -################################################################# -# -################################################################# - -echo -n "Testing \"$PYTHON_CMDB tut2\" ... " -$PYTHON_CMDB tut2.py > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "ERROR: tut2.py returned with bad status, $retnStat, check output" -fi - -diff -w output.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi -echo - diff --git a/test_problems/python/tut3/runtest b/test_problems/python/tut3/runtest deleted file mode 100755 index 425373c4d..000000000 --- a/test_problems/python/tut3/runtest +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh -# -# -if test "$#" -ge "2" ; then - echo "runtest ERROR: program requires one argument." - echo " runtest PYTHON_CMD" - exit 0 -fi - -temp_success="1" -/bin/rm -f output.txt diff_test.out csvCode.txt ct2ctml.log \ - gri30.xml - -testName=tut3 -################################################################# -# -################################################################# -# -# Try to create a default python executable location if no -# argument to runtest is supplied. -# -if test -z "$PYTHON_CMD" ; then - if test -z "$PYTHONHOME" ; then - PYTHON_CMDA=python - else - PYTHON_CMDA=$PYTHONHOME/bin/python - fi -else - PYTHON_CMDA=$PYTHON_CMD -fi -FIRSTARG=$1 -PYTHON_CMDB=${FIRSTARG:=$PYTHON_CMDA} - -# -# Check to see whether the python executable exists in the -# current user path -# -locThere=`which $PYTHON_CMDB 2>&1` -isThere=$? -if test "$isThere" != "0" ; then - echo 'Can not find the python executable: ' $PYTHON_CMDB - echo ' ' - echo $locThere - exit 1 -fi -#pVersion=`$PYTHON_CMDB -V 2>&1` - -################################################################# -# -################################################################# - -echo -n "Testing \"$PYTHON_CMDB tut3\" ... " -$PYTHON_CMDB tut3.py > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "ERROR: tut3.py returned with bad status, $retnStat, check output" -fi - -diff -w output.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi -echo - diff --git a/test_problems/python/tut4/runtest b/test_problems/python/tut4/runtest deleted file mode 100755 index 81cf1477f..000000000 --- a/test_problems/python/tut4/runtest +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh -# -# -if test "$#" -ge "2" ; then - echo "runtest ERROR: program requires one argument." - echo " runtest PYTHON_CMD" - exit 0 -fi - -temp_success="1" -/bin/rm -f output.txt diff_test.out csvCode.txt ct2ctml.log \ - gri30.xml - -testName=tut4 -################################################################# -# -################################################################# -# -# Try to create a default python executable location if no -# argument to runtest is supplied. -# -if test -z "$PYTHON_CMD" ; then - if test -z "$PYTHONHOME" ; then - PYTHON_CMDA=python - else - PYTHON_CMDA=$PYTHONHOME/bin/python - fi -else - PYTHON_CMDA=$PYTHON_CMD -fi -FIRSTARG=$1 -PYTHON_CMDB=${FIRSTARG:=$PYTHON_CMDA} - -# -# Check to see whether the python executable exists in the -# current user path -# -locThere=`which $PYTHON_CMDB 2>&1` -isThere=$? -if test "$isThere" != "0" ; then - echo 'Can not find the python executable: ' $PYTHON_CMDB - echo ' ' - echo $locThere - exit 1 -fi -#pVersion=`$PYTHON_CMDB -V 2>&1` - -################################################################# -# -################################################################# - -echo -n "Testing \"$PYTHON_CMDB tut4\" ... " -$PYTHON_CMDB tut4.py > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "ERROR: tut4.py returned with bad status, $retnStat, check output" -fi - -diff -w output.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $testName test" - if [ $temp_success = "1" ] - then - echo "PASSED" > csvCode.txt - fi -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi -echo - diff --git a/test_problems/rankine_democxx/Makefile.in b/test_problems/rankine_democxx/Makefile.in deleted file mode 100644 index 19a4a97af..000000000 --- a/test_problems/rankine_democxx/Makefile.in +++ /dev/null @@ -1,132 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# Addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = rankine - -# The object files to be linked together. -OBJS = rankine.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -in_CanteraBuildTree = 1 - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# the directory where Cantera include files may be found. -ifeq ($(in_CanteraBuildTree),1) -CANTERA_INCROOTDIR=@ctroot@/build/include -else -CANTERA_INCROOTDIR=@ct_incroot@ -endif -CANTERA_INCLUDES=-I$(CANTERA_INCROOTDIR) -I$(CANTERA_INCROOTDIR)/cantera - -# LOCAL_DEFS = -DDEBUG_CHEMEQUIL -# LOCAL_DEFS = -DEBUG_BASISOPTIMIZE -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(CANTERA_INCLUDES) $(LOCAL_DEFS) @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBDIR=@buildlib@ -else -CANTERA_LIBDIR=@ct_libdir@ -endif - -# required Cantera libraries -CANTERA_LIBS = -L$(CANTERA_LIBDIR) @LOCAL_LIBS@ -lctcxx - -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -else -CANTERA_LIBS_DEP = @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -endif -# -# Alternate form of dependencies: (uses a gnu make extensions) -ALT_LIBS_DEP := $(addprefix $(CANTER_LIBDIR), @RAW_LIBS_DEP@ libctcxx.a) - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ - -# How to compile C++ source files to object files -.cpp.o: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -$(OBJS): Makefile - -# -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif diff --git a/test_problems/rankine_democxx/runtest b/test_problems/rankine_democxx/runtest deleted file mode 100755 index ecebf0c49..000000000 --- a/test_problems/rankine_democxx/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt -testName="rankine" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:="../../data/inputs"} -export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./rankine > output.txt -retnStat=$? -if test $retnStat != "0" -then - temp_success="0" - echo "$testName returned with bad status, $retnStat, check output" -fi - -diff -w output.txt output_blessed.txt > diff_test.out -retnStat=$? -if test $retnStat = "0" -then - echo "successful diff comparison on $testName test" -else - echo "unsuccessful diff comparison on $testName test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/silane_equil/Makefile.in b/test_problems/silane_equil/Makefile.in deleted file mode 100644 index 9fb9af396..000000000 --- a/test_problems/silane_equil/Makefile.in +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = silane_equil - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = silane_equil.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -PURIFY=@PURIFY@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: .depends $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/silane_equil/runtest b/test_problems/silane_equil/runtest deleted file mode 100755 index adb5f75ff..000000000 --- a/test_problems/silane_equil/runtest +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output.txt outputa.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./silane_equil > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "silane_equil returned with bad status, $retnStat, check output" -fi - -../../bin/exp3to2.sh output.txt > outputa.txt -diff -w outputa.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on silane_equil test" -else - echo "unsuccessful diff comparison on silane_equil test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/test_problems/spectroscopy/Makefile.in b/test_problems/spectroscopy/Makefile.in deleted file mode 100644 index 9a2cfaa93..000000000 --- a/test_problems/spectroscopy/Makefile.in +++ /dev/null @@ -1,117 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -.SUFFIXES : .d -# the name of the executable program to be created -PROG_NAME = spectratest - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = spectratest.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIB_DEPS = $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctspectra.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctbase.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -DEPENDS=$(OBJS:.o=.d) - -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEPS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; fi ) - - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/surfSolverTest/Makefile.in b/test_problems/surfSolverTest/Makefile.in deleted file mode 100644 index c3e454b9b..000000000 --- a/test_problems/surfSolverTest/Makefile.in +++ /dev/null @@ -1,123 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = surfaceSolver - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = surfaceSolver.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# Cantera library Dependencies -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.cpp.o: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) surfaceSolver2.d - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) surfaceSolver2 .depends - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -surfaceSolver2: surfaceSolver2.o $(CANTERA_LIB_DEP) - $(CXX) -o surfaceSolver2 surfaceSolver2.o $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS) surfaceSolver2.o : $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a -$(OBJS) surfaceSolver2.o : Makefile - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - @ ./runtest2 - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends surfaceSolver2 *.o - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/surfSolverTest/runtest b/test_problems/surfSolverTest/runtest deleted file mode 100755 index 1f1ed8cfd..000000000 --- a/test_problems/surfSolverTest/runtest +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt diff_test.txt results.txt diff_csv.txt -tname="surfaceSolver" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./surfaceSolver haca2.xml > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "surfaceSolver ($tname test) returned with bad status, $retnStat, check output" -fi -diff results.txt results_blessed.txt > diff_csv.txt -retnStat_csv=$? - -diff -w output.txt surfaceSolver_blessed.out > diff_out.txt -retnStat_txt=$? - -if test $retnStat_csv = "0" -then - echo "Successful test comparison on "`pwd` - if [ $retnStat_txt != "0" ] - then - echo " But, text output files have differences. See diff_out.txt" - fi -else - echo "Unsuccessful test comparison on "`pwd` " test" - if test $retnStat_csv != "0" - then - echo " results files are different - see diff_csv.txt" - fi - if test $retnStat_txt != "0" - then - echo " And, text output files have differences. See diff_out.txt" - fi -fi - - - - diff --git a/test_problems/surfSolverTest/runtest2 b/test_problems/surfSolverTest/runtest2 deleted file mode 100755 index 76ca39fca..000000000 --- a/test_problems/surfSolverTest/runtest2 +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output2.txt diff_2test.txt results2.txt -tname="surfaceSolver" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./surfaceSolver2 haca2.xml > output2.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "surfaceSolver ($tname test) returned with bad status, $retnStat, check output" -fi -diff results2.txt results2_blessed.txt > diff_2csv.txt -retnStat_csv=$? - -diff -w output2.txt surfaceSolver2_blessed.out > diff_2out.txt -retnStat_txt=$? - -if test $retnStat_csv = "0" -then - echo "Successful test comparison on "`pwd` - if [ $retnStat_txt != "0" ] - then - echo " But, text output files have differences. See diff_2out.txt" - fi -else - echo "Unsuccessful test comparison on "`pwd` " test" - if test $retnStat_csv != "0" - then - echo " results files are different - see diff_2csv.txt" - fi - if test $retnStat_txt != "0" - then - echo " And, text output files have differences. See diff_2out.txt" - fi -fi - - diff --git a/test_problems/surfSolverTest/runtest2_d3 b/test_problems/surfSolverTest/runtest2_d3 deleted file mode 100755 index a429c7e81..000000000 --- a/test_problems/surfSolverTest/runtest2_d3 +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# -temp_success="1" -/bin/rm -f output2.txt diff_test2.txt -tname="surfaceSolver2" -# -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./surfaceSolver2 -d 3 haca2.xml > output2.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "surfaceSolver ($tname test) returned with bad status, $retnStat, check output" -fi - -diff -w output2.txt surfaceSolver2_blessed3.out > diff_test2.txt -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname d3 test" -else - echo "unsuccessful diff comparison on $tname d3 test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - - diff --git a/test_problems/surfSolverTest/runtest_d3 b/test_problems/surfSolverTest/runtest_d3 deleted file mode 100755 index d2bb4a489..000000000 --- a/test_problems/surfSolverTest/runtest_d3 +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt diff_test.txt -tname="surfaceSolver" - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./surfaceSolver -d 3 haca2.xml > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "surfaceSolver ($tname test) returned with bad status, $retnStat, check output" -fi - -diff -w output.txt surfaceSolver_blessed3.out > diff_test.txt -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on $tname d3 test" -else - echo "unsuccessful diff comparison on $tname d3 test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - - diff --git a/test_problems/surfkin/Makefile.in b/test_problems/surfkin/Makefile.in deleted file mode 100644 index 121ed2127..000000000 --- a/test_problems/surfkin/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -.SUFFIXES : .d -# the name of the executable program to be created -PROG_NAME = surfdemo - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = surfdemo.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -DEPENDS=$(OBJS:.o=.d) - -%.d: %.o - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) .depends *.d - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; fi ) - - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/surfkin/runtest b/test_problems/surfkin/runtest deleted file mode 100755 index 5ad51209f..000000000 --- a/test_problems/surfkin/runtest +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# - -temp_success="1" -/bin/rm -f output.txt - -################################################################# -# -################################################################# -CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA - -CANTERA_BIN=${CANTERA_BIN:=../../bin} -./surfdemo > output.txt -retnStat=$? -if [ $retnStat != "0" ] -then - temp_success="0" - echo "surfdemo returned with bad status, $retnStat, check output" -fi - - -diff -w output.txt output_blessed.txt > diff_test.out -retnStat=$? -if [ $retnStat = "0" ] -then - echo "successful diff comparison on surfkin test" -else - echo "unsuccessful diff comparison on surfkin test" - echo "FAILED" > csvCode.txt - temp_success="0" -fi - diff --git a/tools/Makefile.in b/tools/Makefile.in deleted file mode 100644 index 839919dc3..000000000 --- a/tools/Makefile.in +++ /dev/null @@ -1,63 +0,0 @@ -# -# $Revision: 1.13 $ -# $Author: hkmoffa $ -# $Date: 2008/09/08 23:56:40 $ -# -build_ck=@BUILD_CK@ - -all: apps - -install: templates-install apps-install man-install - -apps: - cd src; @MAKE@ - cd testtools; @MAKE@ - -apps-install: - @INSTALL@ -d @ct_bindir@ -ifeq ($(build_ck),1) - @INSTALL@ -c @buildbin@/ck2cti @ct_bindir@ -endif - @INSTALL@ -c @buildbin@/cti2ctml @ct_bindir@ - @INSTALL@ -c @buildbin@/csvdiff @ct_bindir@ - -man-install: - @INSTALL@ -d @ct_mandir@/man1 - @INSTALL@ -c man/ck2cti.1 @ct_mandir@/man1 - @INSTALL@ -c man/mixmaster.1 @ct_mandir@/man1 - -uninstall: - rm -r -f @ct_mandir@/man1/ck2cti.1 - rm -f @ct_bindir@/ck2cti - -clean: - $(RM) *.*~ - cd src; @MAKE@ clean - cd testtools; @MAKE@ clean - -docs: - cd doc; doxygen Cantera.cfg - -depends: - cd src; @MAKE@ depends - cd testtools; @MAKE@ depends - -templates-install: - @INSTALL@ -d @ct_dir@/templates - @INSTALL@ -d @ct_dir@/templates/f77 - @(for ihhh in templates/f77/*.mak templates/f77/*.f ; do \ - @INSTALL@ -c $${ihhh} @ct_dir@/templates/f77 ; \ - echo "@INSTALL@ -c $${ihhh} @ct_dir@/templates/f77" ; \ - done ) - @INSTALL@ -d @ct_dir@/templates/f90 - @(for ihhh in templates/f90/*.mak templates/f90/*.f90 templates/f90/*.cpp ; do \ - @INSTALL@ -c $${ihhh} @ct_dir@/templates/f90 ; \ - echo "@INSTALL@ -c $${ihhh} @ct_dir@/templates/f90" ; \ - done ) - @INSTALL@ -d @ct_dir@/templates/cxx - @(for ihhh in templates/cxx/*.mak templates/cxx/*.cpp; do \ - @INSTALL@ -c $${ihhh} @ct_dir@/templates/cxx ; \ - echo "@INSTALL@ -c $${ihhh} @ct_dir@/templates/cxx" ; \ - done ) - chown -R @username@ @ct_dir@/templates - diff --git a/tools/SConscript b/tools/SConscript index da40ef106..5126dfd7d 100644 --- a/tools/SConscript +++ b/tools/SConscript @@ -5,7 +5,6 @@ localenv = env.Clone() programs = [('cti2ctml', ['src/cti2ctml.cpp'], ['ctbase']), ('ck2cti', ['src/ck2cti.cpp'], ['converters','ctbase','tpx','ctcxx']), - ('fixtext', ['src/fixtext.cpp'] , []), ('csvdiff', mglob(localenv, 'testtools', 'cpp'), [])] for name, src, libs in programs: diff --git a/tools/bin/ctupdate.py b/tools/bin/ctupdate.py deleted file mode 100644 index 3d1f7668a..000000000 --- a/tools/bin/ctupdate.py +++ /dev/null @@ -1,763 +0,0 @@ -######################################################################## -# -# Cantera installation / upgrade utility. -# -# Download this file, save it as ctupdate.py, and process it with python -# to install Cantera or update an existing installation. -# -######################################################################### - - -""" - usage: python ctupdate.py - - valid options are: - --help print this message - --force update everything, whether it needs it or not - --src compile/install from source code - --bin do a binary installation - --[no]python [don't] install the Cantera Python interface - --[no]matlab [don't] install the Cantera Matlab toolbox - - This script installs Cantera or updates an existing installation. - Both Windows and linux/unix installations are supported. It - installs from binaries on Windows, and builds everything from the - source code on all non-Windows platforms. - - If you are updating and have more than one Python interpreter - installed, be sure to run this script using the interpreter - you use with Cantera. On linux systems, this may be 'python2.' - -""" - -import urllib -import os -import sys -import time - -v = float(sys.version[:3]) -if v < 2.0: - print """ - -### ERROR ### - -This script must be run with python version 2.0 or greater. -This is version """+sys.version+""". -""" - if sys.platform[:5] == 'linux': - print """On many linux systems, python 2.x is installed as 'python2'. -""" - - sys.exit(-1) - - - -# -# definitions -# -_CTINFO_FILE = 'http://www.cantera.org/cantera_dist/etc/_ctinfo.py' - - -# -# set these to zero to skip installation of Python and Matlab components -# -install_python_module = 1 -install_matlab_toolbox = 1 - - -# -# global variables -# -_instdir = '--' # installation directory -_srcdir = '--' # directory where downloaded files go -force_update = 0 # force updating if nonzero - -_updates = [] -_reason = [] # -_num = 0 -_bininstall = -1 -_new_python = 0 - -_options = {} -_local = {} -_srv = {} - - -def read_options(): - """Read local configuration information.""" - optionfile = get_options_fname() - if not os.access(optionfile,os.F_OK): - return - f = open(optionfile) - lines = f.readlines() - for line in lines: - if line: - w = line.split()+['null','null'] - if w[1][-1] == '\n': - v = w[1][:-1] - else: - v = w[1] - _local[w[0]] = v - _options[w[0]] = v - - -def get_options_fname(): - - # if the OS is Windows, store the config file in - # C:\Documents and Settings\\Application Data - if sys.platform == 'win32': - appdata = os.getenv('APPDATA') - if not appdata: - print """ - Application Data directory cannot be found, because - environment variable APPDATA is not set. - """ - sys.exit(-1) - - home = appdata+os.sep+'cantera' - if not os.access(home,os.F_OK): - os.makedirs(home) - - # otherwise, look for environment variable 'HOME' to determine - # the home directory - else: - home = os.getenv('HOME') - - # if HOME is not set, then look in the current working directory. - if not home: - home = os.getcwd() - - optionfile = home+os.sep+'.ctupdate' - return optionfile - - - -def write_options(): - """ - Save configuration options. - """ - optionfile = get_options_fname() - f = open(optionfile,'w') - lines = [] - for k in _options.keys(): - if k: - if type(_options[k]) == types.StringType: - lines.append(k+' '+_options[k]+'\n') - else: - lines.append(k+' '+`_options[k]`+'\n') - f.writelines(lines) - f.close() - - -def ask(msg, options, deflt, helpmsg=''): - """ - Prompt for input. - options -- string listing the possible answers - deflt -- default response - helpmsg -- message printed if 'h' is input. - """ - print msg, - if options: - print '['+options+'] ', - if deflt: - print '('+deflt+') ', - ans = sys.stdin.readline()[:-1] - if ans == 'q' or ans == 'quit': - sys.exit(0) - elif ans == 'h': - print helpmsg - ans = ask(msg, options, deflt) - - if not ans: return deflt - else: return ans - - - -def report(prog, blocks, size): - """Print dots and percent completed during file download.""" - global _num - sys.stdout.write('.') - _num = _num + 1 - if 20*(prog/20) == prog: sys.stdout.write('%5.1f' % - ((100.0)*prog*blocks/size,)+'%') - - -def check_write(): - """ - Check to see if the Python library directory is writable. - """ - prefix = sys.prefix - return os.access(prefix+'/lib',os.W_OK) - - -def pycmd(): - """ - Return the location of the Python interpreter used to run Cantera, - or if this cannot be found, then return the string 'python'. - """ - if _options.has_key('pycmd'): - return _options['pycmd'] - else: - return 'python' - - -def get_srcdir(): - - """ Enter the directory where the installation files downloaded - from the web should be put. Once the installation is complete, any - files in this directory may be deleted. (But if you are building - from the source code, you might want to keep them, since the - source code is not copied to the installation directory.) """ - - global _srcdir - if _srcdir <> '--': - return _srcdir - - if _local.has_key('download_dir'): - d = _local['download_dir'] - else: - try: - d = os.getenv('HOME') - except: - d = os.getcwd() - - dir = ask('Download directory:','|q|h',d, - get_srcdir.__doc__) - - dir = os.path.expanduser(dir) - _srcdir = os.path.abspath(dir) - if not os.access(_srcdir,os.F_OK): - a = ask('Directory '+_srcdir+' does not exist. Create it?','y/n/q/h','y') - if a == 'y': - os.makedirs(_srcdir) - os.chdir(_srcdir) - _options['download_dir'] = _srcdir - return _srcdir - - -def get_instdir(): - - """ Enter the root directory under which binary executables, - library files, etc., should be installed. If you are doing a - system-wide install and have write-access to the /usr partition, - just press . Otherwise, enter the name of an existing - directory you have write access to. In this case, subdirectories - bin, lib, cantera, etc. will be created in this directory if they - don't already exist. """ - - global _instdir - if _instdir <> '--': - return _instdir - if _local.has_key('install_dir'): - d = _local['install_dir'] - else: - d = '' - dir = ask('Installation directory:','|q|h',d,get_instdir.__doc__) - ndir = dir - try: - if dir <> '' and dir[0] == '~': - ndir = os.getenv('HOME')+dir[1:] - except: - ndir = dir - _instdir = os.path.abspath(ndir) - _options['install_dir'] = _instdir - return _instdir - - - -def get_python(): - """ - Download the version of Python Cantera requires. - """ - global _new_python - _new_python = 1 - server = _ctinfo_srv.server - - if platform == 'win32': - path = _ctinfo_srv.WinPythonPath - urllib.urlretrieve(server+path,'installPython.exe',report) - _install_script.write('installPython.exe\n') - _options['pycmd'] = 'python' - - elif _bininstall == 0: - _prefix = get_instdir() - path = _ctinfo_srv.SrcPythonPath - urllib.urlretrieve(server+path,'python.tar.gz',report) - - _install_script.write('gunzip python.tar.gz\ntar xvf python.tar\n') - _install_script.write('cd '+_ctinfo_srv.SrcPythonDir+'\n') - if _prefix: - _install_script.write('./configure --prefix='+_prefix - +' --exec-prefix='+_prefix+'\n') - else: - _install_script.write('./configure\n') - _install_script.write('make\nmake install\ncd ..\n\n') - if _prefix: - _options['pycmd'] = _prefix+'/bin/python' - else: - _options['pycmd'] = 'python' - _options['python_version'] = _srv['python_version'] - - - -def get_graphviz(): - """Download graphviz.""" - server = _ctinfo_srv.server - - _options['dot_version'] = _srv['dot_version'] - - if platform == 'win32' and _bininstall == 1: - path = _ctinfo_srv.WinGraphvizPath - urllib.urlretrieve(server+path,'installGraphviz.exe',report) - _install_script.write('installGraphviz.exe\n') - - elif _bininstall == 0: - _prefix = get_instdir() - path = _ctinfo_srv.SrcGraphvizPath - urllib.urlretrieve(server+path,'graphviz.tar.gz',report) - - _install_script.write('gunzip graphviz.tar.gz\ntar xvf graphviz.tar\n') - _install_script.write('cd '+_ctinfo_srv.SrcGraphvizDir+'\n') - if _prefix: - _install_script.write('./configure --prefix='+_prefix - +' --exec-prefix='+_prefix+'\n') - else: - _install_script.write('./configure\n') - _install_script.write('make\nmake install\ncd ..\n\n') - - -def get_numeric(): - """Download the version of Numeric Cantera requires.""" - server = _ctinfo_srv.server - - if platform == 'win32' and _bininstall == 1: - path = _ctinfo_srv.WinNumericPath - urllib.urlretrieve(server+path,'installNumeric.exe',report) - _install_script.write('installNumeric.exe\n') - else: - path = _ctinfo_srv.SrcNumericPath - urllib.urlretrieve(server+path,'numeric.tar.gz',report) - - _install_script.write('gunzip numeric.tar.gz\ntar xvf numeric.tar\n') - _install_script.write('cd '+_ctinfo_srv.SrcNumericDir+'\n') - _install_script.write(pycmd()+' setup.py install\ncd ..\n\n') - - -def get_ct(): - """Download cantera.""" - server = _ctinfo_srv.server - server = 'http://prdownloads.sourceforge.net/cantera/' - ctfile = 'cantera-1.5.4.tar.gz' - mirror = 'easynews' - url = server+ctfile+'?use_mirror='+mirror - - _options['cantera'] = _srv['cantera'] - - if platform == 'win32' and _bininstall == 1: - path = _ctinfo_srv.WinCanteraPath - urllib.urlretrieve(server+path,url,report) - _install_script.write('Cantera13.msi\n') - _install_script.write('Cantera13.msi\n') - path = _ctinfo_srv.WinCanteraPyPath - urllib.urlretrieve(server+path,'installCanteraPy.exe',report) - _install_script.write('installCanteraPy.exe\n') - - elif _bininstall == 0: - _prefix = get_instdir() - path = _ctinfo_srv.SrcCanteraPath - print urllib.urlopen(url) #,'get.html',report) - - _install_script.write('gunzip cantera.tar.gz\ntar xvf cantera-1.3.tar\n') - _install_script.write('cd '+_ctinfo_srv.SrcCanteraDir+'\n') - _install_script.write('PYTHON_CMD='+pycmd()+'; export PYTHON_CMD\n') - if install_matlab_toolbox == 0: - _install_script.write('BUILD_MATLAB_TOOLBOX="n"; export BUILD_MATLAB_TOOLBOX\n') - if install_python_module == 0: - _install_script.write('BUILD_PYTHON_INTERFACE="n"; export BUILD_PYTHON_INTERFACE\n') - if _prefix: - _install_script.write('configure --prefix='+_prefix - +' --exec-prefix='+_prefix+'\n') - else: - _install_script.write('configure\n') - _install_script.write('make\nmake install\ncd ..\n\n\n') - - - -def check_python(): - py_update_reason = '' - v = sys.version_info - vsrv =_ctinfo_srv.PythonVersion - _srv['python_version'] = vsrv - - need_upgrade = 0 - if _bininstall and (v[0] <> vsrv[0] or v[1] <> vsrv[1]): - py_update_reason = """ - Binary installs of Cantera requires Python version - """+`vsrv[0]`+'.'+`vsrv[1]`+""", but this is version """+`v[0]`+'.'+`v[1]`+""". - While any Python version 2.x can be used if you build Cantera - from the source, binary installs require that the Python - version matches that used when the binary distribution was - created. """ - need_upgrade = 1 - - elif not check_write(): - - py_update_reason = """ - You do not have write access to the library directory - associated with this Python executable - ("""+sys.prefix+"""/lib), and so the Python packages Cantera, - Numeric, and MixMaster can't be installed. - - Options: - - a) quit and re-run this script as super-user (unix) - or Administrator (Windows); or - - b) use this script to install a local version of Python - in a directory where you have write access - (won't work on Windows); or - - c) install only the Matlab and/or C++ components. - - """ - need_upgrade = 1 - - - elif force_update: - need_upgrade = 1 - py_update_reason = '\nforced update\n' - - if need_upgrade: - _updates.append(('Python '+`vsrv[0]`+'.'+`vsrv[1]`,get_python)) - _reason.append(py_update_reason) - return need_upgrade - - -def check_numeric(): - if platform == 'win32' and _bininstall == 1: - nv = _ctinfo_srv.WinNumericVersion - else: - nv = _ctinfo_srv.SrcNumericVersion - - num_update_reason = '--' - - try: - import Numeric - v = Numeric.__version__ - if _bininstall and v <> nv: - num_update_reason = """ - - Binary installs of Cantera requires Numeric (NumPy) version - """+nv+""", but this system has version """+v+""". While any - version can be used if you build Cantera from the source, - binary installs require that the version matches that used - when the binary distribution was created. - """ - - except: - num_update_reason = """ - The Cantera Python package requires the 'Numeric Extensions for - Python' package ('Numeric'), but it is not installed on this - system. - """ - - if force_update and num_update_reason == '--': - num_update_reason = '\nForced update.\n' - - if num_update_reason <> '--': - _updates.append(('Numeric Extensions for Python '+nv,get_numeric)) - _reason.append(num_update_reason) - return 1 - else: - return 0 - - - - - - -print """ - Cantera Installation / Upgrade Utility - version 1.0 - - type 'h' for help, or 'q' to quit -""" - - -platform = sys.platform -read_options() - -# -# process command-line arguments -# -args = sys.argv -nargs = len(args) - -if nargs >= 2: - for n in range(nargs): - if args[n] == '--force': - force_update = 1 - elif args[n] == '--help': - print __doc__ - sys.exit(0) - elif args[n] == '--src': - _bininstall = 0 - elif args[n] == '--python': - install_python_module = 1 - elif args[n] == '--nopython': - install_python_module = 0 - elif args[n] == '--matlab': - install_matlab_toolbox = 1 - elif args[n] == '--nomatlab': - install_matlab_toolbox = 0 - -_options['build_python'] = install_python_module -_options['build_matlab'] = install_matlab_toolbox - - -# open the install script files. -if sys.platform == 'win32' and _bininstall < 0: - _bininstall = 1 - _install_script = open('install.bat','w') - _install_script.write("""@echo off -REM run this script to install or update Cantera. -""") -else: - _bininstall = 0 - _install_script = open('install.sh','w') - _install_script.write("""#!/bin/sh -# run this script to install or update Cantera. -""") - -print 'checking for updates...' - -# get the information file from the server. This contains information about -# the versions on the server. -urllib.urlretrieve(_CTINFO_FILE, '_ctinfo_srv.py') -import _ctinfo_srv - - -######################################################################### - - -_thisdir = os.getcwd() - - -_files = [] - - -################################################################## -# -# check the Python version -# -################################################################## - -if install_python_module: - need_update = check_python() - if need_update: - install_python_module = 0 - - -################################################################## -# -# install/update Numeric -# -################################################################## - -if install_python_module: - check_numeric() - - -################################################################## -# -# install/update Graphviz -# -################################################################## - - -if install_python_module: - if platform == 'win32' and _bininstall == 1: - gv = _ctinfo_srv.WinGraphvizVersion - else: - gv = _ctinfo_srv.SrcGraphvizVersion - _srv['dot_version'] = gv - graphviz_update_reason = '--' - need_dot = 0 - dot_update_reason = '--' - v = '' - if _local.has_key('dot_version'): - v = _local['dot_version'] - else: - err = os.system('dot -V') - if err == 0: - print """ - Dot is installed, but the local configuration file - does not contain version information. - """ - v = ask('Enter dot version:','','','') - _options['dot_version'] = v - - if v <> '': - if v <> gv: - need_dot = 1 - dot_update_reason = """ - A newer version of 'dot' is available. - Installed dot version: """+v+""", - Latest dot version: """+gv+""" - """ - else: - need_dot = 1 - dot_update_reason = """ - Dot is not installed. - """ - - if force_update and dot_update_reason == '--': - need_dot = 1 - dot_update_reason = '\nforced update\n' - - if need_dot == 1: - _updates.append(('Graphviz version '+gv, get_graphviz)) - _reason.append(dot_update_reason) - - - -################################################################## -# -# install/update Cantera -# -################################################################## -import types -ct_update_reason = 'none' - -if _local.has_key('cantera'): - v = float(_local['cantera']) -else: - v = 0.0 -srvv = float(_ctinfo_srv.CanteraDate) -_srv['cantera'] = `srvv` -if v <> 0.0 and (abs(v - srvv) > 1.0): - ct_update_reason = """ - A newer version of Cantera is available. - Installed version date: """+time.ctime(v)+""" - Latest version date: """+time.ctime(srvv) - _updates.append(('Cantera',get_ct)) - _reason.append(ct_update_reason) -elif v == 0: - ct_update_reason = """ - Cantera is not installed, or version information can't be found. - """ - _updates.append(('Cantera',get_ct)) - _reason.append(ct_update_reason) -elif force_update: - ct_update_reason = '\nforced update\n' - _updates.append(('Cantera',get_ct)) - _reason.append(ct_update_reason) -#except: -# _updates.append(('Cantera',get_ct)) - - - -urllib.urlcleanup() -os.remove('_ctinfo_srv.pyc') - -ninst = len(_updates) - -if ninst > 0: - print '\n'+`ninst`+' update(s) found.\n' - - i = 0 - for u in _updates: - i = i + 1 - print '--------------------------------------------------------\n' - print ' ['+`i`+'] '+u[0] + '\nReason for update: '+_reason[i-1] - - - print '----------------------------------------------------------\n' - print ' The following packages will be downloaded and installed:' - - a = '' - print - _selected = [' ']*ninst - while a <> 'q': - print - i = 0 - for u in _updates: - i = i + 1 - print _selected[i-1]+' ['+`i`+'] '+u[0] - - a = '' - print - print """ - Enter 'a' to select all packages, or enter a package number. - Press to begin download. - """ - a = ask('Package:','1-'+`i`+'/a/h/q','') - if a == '': - break - if a == 'a': - for n in range(ninst): - _selected[n] = '*' - else: - #try: - nt = int(a) - if nt > 0 and nt <= ninst: - if _selected[nt-1] == '*': - _selected[nt-1] = ' ' - else: - _selected[nt-1] = '*' - #except: - # pass - - if _srcdir == '--': - print '\n\n' - srcdir = get_srcdir() - if srcdir: _install_script.write('cd '+srcdir+'\n') - if _bininstall == 0: - instdir = get_instdir() - - - n = 0 - for u in _updates: - n = n + 1 - if _selected[n-1] == '*': - print 'downloading '+u[0] - _num = 0 - u[1]() - print 'done.\n\n' - - - _install_script.close() - write_options() - - hlp = """ - The shell script 'install.sh' must be run to install the packages - downloaded. If you answer 'y' or hit , this script will - be run now. If you enter 'n' or 'q', nothing will be installed, but you - can later run 'install.sh' yourself to install the packages. - """ - a = ask('Install the downloaded packages?','y/n/h/q','y',hlp) - if a == 'y': - if _new_python > 0: - print """ - -************************ NOTE *************************************** - -You are installing a new Python interpreter. After the installation -finishes, you need to run this script again with the new interpreter -in order to set up the Cantera Python interface. - -********************************************************************* - -""" - os.chdir(_thisdir) - if sys.platform == 'win32': - os.execl('install.bat','install.bat') - else: - os.execl('/bin/sh','/bin/sh','install.sh') -else: - write_options() - print 'Cantera is up to date.' - - - - diff --git a/tools/bin/cvs2cl.pl b/tools/bin/cvs2cl.pl deleted file mode 100755 index b6792e5a0..000000000 --- a/tools/bin/cvs2cl.pl +++ /dev/null @@ -1,3222 +0,0 @@ -#!/bin/sh -exec perl -w -x $0 ${1+"$@"} # -*- mode: perl; perl-indent-level: 2; -*- -#!perl -w - - -############################################################## -### ### -### cvs2cl.pl: produce ChangeLog(s) from `cvs log` output. ### -### ### -############################################################## - -## $Revision: 1.2 $ -## $Date: 2004/12/13 14:58:11 $ -## $Author: dggoodwin $ -## - -use strict; - -use File::Basename qw( fileparse ); -use Getopt::Long qw( GetOptions ); -use Text::Wrap qw( ); -use Time::Local qw( timegm ); -use User::pwent qw( getpwnam ); - -# The Plan: -# -# Read in the logs for multiple files, spit out a nice ChangeLog that -# mirrors the information entered during `cvs commit'. -# -# The problem presents some challenges. In an ideal world, we could -# detect files with the same author, log message, and checkin time -- -# each would be a changelog entry. -# We'd sort them; and spit them out. Unfortunately, CVS is *not atomic* -# so checkins can span a range of times. Also, the directory structure -# could be hierarchical. -# -# Another question is whether we really want to have the ChangeLog -# exactly reflect commits. An author could issue two related commits, -# with different log entries, reflecting a single logical change to the -# source. GNU style ChangeLogs group these under a single author/date. -# We try to do the same. -# -# So, we parse the output of `cvs log', storing log messages in a -# multilevel hash that stores the mapping: -# directory => author => time => message => filelist -# As we go, we notice "nearby" commit times and store them together -# (i.e., under the same timestamp), so they appear in the same log -# entry. -# -# When we've read all the logs, we twist this mapping into -# a time => author => message => filelist mapping for each directory. -# -# If we're not using the `--distributed' flag, the directory is always -# considered to be `./', even as descend into subdirectories. - -# Call Tree - -# name number of lines (10.xii.03) -# parse_options 192 -# derive_changelog 13 -# +-maybe_grab_accumulation_date 38 -# +-read_changelog 277 -# +-maybe_read_user_map_file 94 -# +-run_ext 9 -# +-read_file_path 29 -# +-read_symbolic_name 43 -# +-read_revision 49 -# +-read_date_author_and_state 25 -# +-parse_date_author_and_state 20 -# +-read_branches 36 -# +-output_changelog 424 -# +-pretty_file_list 290 -# +-common_path_prefix 35 -# +-preprocess_msg_text 30 -# +-min 1 -# +-mywrap 16 -# +-last_line_len 5 -# +-wrap_log_entry 177 -# -# Utilities -# -# xml_escape 6 -# slurp_file 11 -# debug 5 -# version 2 -# usage 142 - -# -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -*- -# -# Note about a bug-slash-opportunity: -# ----------------------------------- -# -# There's a bug in Text::Wrap, which affects cvs2cl. This script -# reveals it: -# -# #!/usr/bin/perl -w -# -# use Text::Wrap; -# -# my $test_text = -# "This script demonstrates a bug in Text::Wrap. The very long line -# following this paragraph will be relocated relative to the surrounding -# text: -# -# ==================================================================== -# -# See? When the bug happens, we'll get the line of equal signs below -# this paragraph, even though it should be above."; -# -# -# # Print out the test text with no wrapping: -# print "$test_text"; -# print "\n"; -# print "\n"; -# -# # Now print it out wrapped, and see the bug: -# print wrap ("\t", " ", "$test_text"); -# print "\n"; -# print "\n"; -# -# If the line of equal signs were one shorter, then the bug doesn't -# happen. Interesting. -# -# Anyway, rather than fix this in Text::Wrap, we might as well write a -# new wrap() which has the following much-needed features: -# -# * initial indentation, like current Text::Wrap() -# * subsequent line indentation, like current Text::Wrap() -# * user chooses among: force-break long words, leave them alone, or die()? -# * preserve existing indentation: chopped chunks from an indented line -# are indented by same (like this line, not counting the asterisk!) -# * optional list of things to preserve on line starts, default ">" -# -# Note that the last two are essentially the same concept, so unify in -# implementation and give a good interface to controlling them. -# -# And how about: -# -# Optionally, when encounter a line pre-indented by same as previous -# line, then strip the newline and refill, but indent by the same. -# Yeah... - -# Globals -------------------------------------------------------------------- - -# In case we have to print it out: -my $VERSION = '$Revision: 1.2 $'; -$VERSION =~ s/\S+\s+(\S+)\s+\S+/$1/; - -## Vars set by options: - -# Print debugging messages? -my $Debug = 0; - -# Just show version and exit? -my $Print_Version = 0; - -# Just print usage message and exit? -my $Print_Usage = 0; - -# What file should we generate (defaults to "ChangeLog")? -my $Log_File_Name = "ChangeLog"; - -# Grab most recent entry date from existing ChangeLog file, just add -# to that ChangeLog. -my $Cumulative = 0; - -# `cvs log -d`, this will repeat the last entry in the old log. This is OK, -# as it guarantees at least one entry in the update changelog, which means -# that there will always be a date to extract for the next update. The repeat -# entry can be removed in postprocessing, if necessary. - -# MJP 2003-08-02 -# I don't think this actually does anything useful -my $Update = 0; - -# Expand usernames to email addresses based on a map file? -my $User_Map_File = ''; -my $User_Passwd_File; -my $Mail_Domain; - -# Output log in chronological order? [default is reverse chronological order] -my $Chronological_Order = 0; - -# Grab user details via gecos -my $Gecos = 0; - -# User domain for gecos email addresses -my $Domain; - -# Output to a file or to stdout? -my $Output_To_Stdout = 0; - -# Eliminate empty log messages? -my $Prune_Empty_Msgs = 0; - -# Tags of which not to output -my %ignore_tags; - -# Show only revisions with Tags -my %show_tags; - -# Don't call Text::Wrap on the body of the message -my $No_Wrap = 0; - -# Indentation of log messages -my $Indent = "\t"; - -# Don't do any pretty print processing -my $Summary = 0; - -# Separates header from log message. Code assumes it is either " " or -# "\n\n", so if there's ever an option to set it to something else, -# make sure to go through all conditionals that use this var. -my $After_Header = " "; - -# XML Encoding -my $XML_Encoding = ''; - -# Format more for programs than for humans. -my $XML_Output = 0; -my $No_XML_Namespace = 0; -my $No_XML_ISO_Date = 0; - -# Do some special tweaks for log data that was written in FSF -# ChangeLog style. -my $FSF_Style = 0; - -# Show times in UTC instead of local time -my $UTC_Times = 0; - -# Show times in output? -my $Show_Times = 1; - -# Show day of week in output? -my $Show_Day_Of_Week = 0; - -# Show revision numbers in output? -my $Show_Revisions = 0; - -# Show dead files in output? -my $Show_Dead = 0; - -# Hide dead trunk files which were created as a result of additions on a -# branch? -my $Hide_Branch_Additions = 1; - -# Show tags (symbolic names) in output? -my $Show_Tags = 0; - -# Show tags separately in output? -my $Show_Tag_Dates = 0; - -# Show branches by symbolic name in output? -my $Show_Branches = 0; - -# Show only revisions on these branches or their ancestors. -my @Follow_Branches; -# Show only revisions on these branches or their ancestors; ignore descendent -# branches. -my @Follow_Only; - -# Don't bother with files matching this regexp. -my @Ignore_Files; - -# How exactly we match entries. We definitely want "o", -# and user might add "i" by using --case-insensitive option. -my $Case_Insensitive = 0; - -# Maybe only show log messages matching a certain regular expression. -my $Regexp_Gate = ''; - -# Pass this global option string along to cvs, to the left of `log': -my $Global_Opts = ''; - -# Pass this option string along to the cvs log subcommand: -my $Command_Opts = ''; - -# Read log output from stdin instead of invoking cvs log? -my $Input_From_Stdin = 0; - -# Don't show filenames in output. -my $Hide_Filenames = 0; - -# Don't shorten directory names from filenames. -my $Common_Dir = 1; - -# Max checkin duration. CVS checkin is not atomic, so we may have checkin -# times that span a range of time. We assume that checkins will last no -# longer than $Max_Checkin_Duration seconds, and that similarly, no -# checkins will happen from the same users with the same message less -# than $Max_Checkin_Duration seconds apart. -my $Max_Checkin_Duration = 180; - -# What to put at the front of [each] ChangeLog. -my $ChangeLog_Header = ''; - -# Whether to enable 'delta' mode, and for what start/end tags. -my $Delta_Mode = 0; -my $Delta_From = ''; -my $Delta_To = ''; - -my $TestCode; - -# Whether to parse filenames from the RCS filename, and if so what -# prefix to strip. -my $RCS_Root; - -# Whether to output information on the # of lines added and removed -# by each file modification. -my $Show_Lines_Modified = 0; - -## end vars set by options. - -# latest observed times for the start/end tags in delta mode -my $Delta_StartTime = 0; -my $Delta_EndTime = 0; - -my $No_Ancestors = 0; - -my $No_Extra_Indent = 0; - -my $GroupWithinDate = 0; - -# ---------------------------------------------------------------------------- - -package CVS::Utils::ChangeLog::EntrySet; - -sub new { - my $class = shift; - my %self; - bless \%self, $class; -} - -# ------------------------------------- - -sub output_changelog { - my $output_type = $XML_Output ? 'XML' : 'Text'; - my $output_class = "CVS::Utils::ChangeLog::EntrySet::Output::${output_type}"; - my $output = $output_class->new(follow_branches => \@Follow_Branches, - follow_only => \@Follow_Only, - ignore_tags => \%ignore_tags, - show_tags => \%show_tags, - ); - $output->output_changelog(@_); -} - -# ------------------------------------- - -sub add_fileentry { - my ($self, $file_full_path, $time, $revision, $state, $lines, - $branch_names, $branch_roots, $branch_numbers, - $symbolic_names, $author, $msg_txt) = @_; - - my $qunk = - CVS::Utils::ChangeLog::FileEntry->new($file_full_path, $time, $revision, - $state, $lines, - $branch_names, $branch_roots, - $branch_numbers, - $symbolic_names); - - # We might be including revision numbers and/or tags and/or - # branch names in the output. Most of the code from here to - # loop-end deals with organizing these in qunk. - - unless ( $Hide_Branch_Additions - and - $msg_txt =~ /file .+ was initially added on branch \S+./ ) { - # Add this file to the list - # (We use many spoonfuls of autovivication magic. Hashes and arrays - # will spring into existence if they aren't there already.) - - &main::debug ("(pushing log msg for ". $qunk->dir_key . $qunk->filename . ")\n"); - - # Store with the files in this commit. Later we'll loop through - # again, making sure that revisions with the same log message - # and nearby commit times are grouped together as one commit. - $self->{$qunk->dir_key}{$author}{$time}{$msg_txt} = - CVS::Utils::ChangeLog::Message->new($msg_txt) - unless exists $self->{$qunk->dir_key}{$author}{$time}{$msg_txt}; - $self->{$qunk->dir_key}{$author}{$time}{$msg_txt}->add_fileentry($qunk); - } - -} - -# ---------------------------------------------------------------------------- - -package CVS::Utils::ChangeLog::EntrySet::Output::Text; - -use base qw( CVS::Utils::ChangeLog::EntrySet::Output ); - -use File::Basename qw( fileparse ); - -sub new { - my $class = shift; - my $self = $class->SUPER::new(@_); -} - -# ------------------------------------- - -sub wday { - my $self = shift; my $class = ref $self; - my ($wday) = @_; - - return $Show_Day_Of_Week ? ' ' . $class->weekday_en($wday) : ''; -} - -# ------------------------------------- - -sub header_line { - my $self = shift; - my ($time, $author, $lastdate) = @_; - - my $header_line = ''; - - my (undef,$min,$hour,$mday,$mon,$year,$wday) - = $UTC_Times ? gmtime($time) : localtime($time); - - my $date = $self->fdatetime($time); - - if ($Show_Times) { - $header_line = - sprintf "%s %s\n\n", $date, $author; - } else { - if ( ! defined $lastdate or $date ne $lastdate or ! $GroupWithinDate ) { - if ( $GroupWithinDate ) { - $header_line = "$date\n\n"; - } else { - $header_line = "$date $author\n\n"; - } - } else { - $header_line = ''; - } - } -} - -# ------------------------------------- - -sub preprocess_msg_text { - my $self = shift; - my ($text) = @_; - - $text = $self->SUPER::preprocess_msg_text($text); - - unless ( $No_Wrap ) { - # Strip off lone newlines, but only for lines that don't begin with - # whitespace or a mail-quoting character, since we want to preserve - # that kind of formatting. Also don't strip newlines that follow a - # period; we handle those specially next. And don't strip - # newlines that precede an open paren. - 1 while $text =~ s/(^|\n)([^>\s].*[^.\n])\n([^>\n])/$1$2 $3/g; - - # If a newline follows a period, make sure that when we bring up the - # bottom sentence, it begins with two spaces. - 1 while $text =~ s/(^|\n)([^>\s].*)\n([^>\n])/$1$2 $3/g; - } - - return $text; -} - -# ------------------------------------- - -# Here we take a bunch of qunks and convert them into printed -# summary that will include all the information the user asked for. -sub pretty_file_list { - my $self = shift; - - return '' - if $Hide_Filenames; - - my $qunksref = shift; - - my @filenames; - my $beauty = ''; # The accumulating header string for this entry. - my %non_unanimous_tags; # Tags found in a proper subset of qunks - my %unanimous_tags; # Tags found in all qunks - my %all_branches; # Branches found in any qunk - my $fbegun = 0; # Did we begin printing filenames yet? - - my ($common_dir, $qunkrefs) = - $self->_pretty_file_list(\(%unanimous_tags, %non_unanimous_tags, %all_branches), $qunksref); - - my @qunkrefs = @$qunkrefs; - - # Not XML output, so complexly compactify for chordate consumption. At this - # point we have enough global information about all the qunks to organize - # them non-redundantly for output. - - if ($common_dir) { - # Note that $common_dir still has its trailing slash - $beauty .= "$common_dir: "; - } - - if ($Show_Branches) - { - # For trailing revision numbers. - my @brevisions; - - foreach my $branch (keys (%all_branches)) - { - foreach my $qunkref (@qunkrefs) - { - if ((defined ($qunkref->branch)) - and ($qunkref->branch eq $branch)) - { - if ($fbegun) { - # kff todo: comma-delimited in XML too? Sure. - $beauty .= ", "; - } - else { - $fbegun = 1; - } - my $fname = substr ($qunkref->filename, length ($common_dir)); - $beauty .= $fname; - $qunkref->{'printed'} = 1; # Just setting a mark bit, basically - - if ( $Show_Tags and defined $qunkref->tags ) { - my @tags = grep ($non_unanimous_tags{$_}, @{$qunkref->tags}); - - if (@tags) { - $beauty .= " (tags: "; - $beauty .= join (', ', @tags); - $beauty .= ")"; - } - } - - if ($Show_Revisions) { - # Collect the revision numbers' last components, but don't - # print them -- they'll get printed with the branch name - # later. - $qunkref->revision =~ /.+\.([\d]+)$/; - push (@brevisions, $1); - - # todo: we're still collecting branch roots, but we're not - # showing them anywhere. If we do show them, it would be - # nifty to just call them revision "0" on a the branch. - # Yeah, that's the ticket. - } - } - } - $beauty .= " ($branch"; - if (@brevisions) { - if ((scalar (@brevisions)) > 1) { - $beauty .= ".["; - $beauty .= (join (',', @brevisions)); - $beauty .= "]"; - } - else { - # Square brackets are spurious here, since there's no range to - # encapsulate - $beauty .= ".$brevisions[0]"; - } - } - $beauty .= ")"; - } - } - - # Okay; any qunks that were done according to branch are taken care - # of, and marked as printed. Now print everyone else. - - my %fileinfo_printed; - foreach my $qunkref (@qunkrefs) - { - next if (defined ($qunkref->{'printed'})); # skip if already printed - - my $b = substr ($qunkref->filename, length ($common_dir)); - # todo: Shlomo's change was this: - # $beauty .= substr ($qunkref->filename, - # (($common_dir eq "./") ? '' : length ($common_dir))); - $qunkref->{'printed'} = 1; # Set a mark bit. - - if ($Show_Revisions || $Show_Tags || $Show_Dead) - { - my $started_addendum = 0; - - if ($Show_Revisions) { - $started_addendum = 1; - $b .= " ("; - $b .= $qunkref->revision; - } - if ($Show_Dead && $qunkref->state =~ /dead/) - { - # Deliberately not using $started_addendum. Keeping it simple. - $b .= "[DEAD]"; - } - if ($Show_Tags && (defined $qunkref->tags)) { - my @tags = grep ($non_unanimous_tags{$_}, @{$qunkref->tags}); - if ((scalar (@tags)) > 0) { - if ($started_addendum) { - $b .= ", "; - } - else { - $b .= " (tags: "; - } - $b .= join (', ', @tags); - $started_addendum = 1; - } - } - if ($started_addendum) { - $b .= ")"; - } - } - - unless ( exists $fileinfo_printed{$b} ) { - if ($fbegun) { - $beauty .= ", "; - } else { - $fbegun = 1; - } - $beauty .= $b, $fileinfo_printed{$b} = 1; - } - } - - # Unanimous tags always come last. - if ($Show_Tags && %unanimous_tags) - { - $beauty .= " (utags: "; - $beauty .= join (', ', sort keys (%unanimous_tags)); - $beauty .= ")"; - } - - # todo: still have to take care of branch_roots? - - $beauty = "$beauty:"; - - return $beauty; -} - -# ------------------------------------- - -sub output_tagdate { - my $self = shift; - my ($fh, $time, $tag) = @_; - - my $fdatetime = $self->fdatetime($time); - print $fh "$fdatetime tag $tag\n\n"; - return; -} - -# ------------------------------------- - -sub format_body { - my $self = shift; - my ($msg, $files, $qunklist) = @_; - - my $body; - - if ( $No_Wrap and ! $Summary ) { - $msg = $self->preprocess_msg_text($msg); - $files = $self->mywrap("\t", "\t ", "* $files"); - $msg =~ s/\n(.+)/\n$Indent$1/g; - unless ($After_Header eq " ") { - $msg =~ s/^(.+)/$Indent$1/g; - } - if ( $Hide_Filenames ) { - $body = $After_Header . $msg; - } else { - $body = $files . $After_Header . $msg; - } - } elsif ( $Summary ) { - my ($filelist, $qunk); - my (@DeletedQunks, @AddedQunks, @ChangedQunks); - - $msg = $self->preprocess_msg_text($msg); - # - # Sort the files (qunks) according to the operation that was - # performed. Files which were added have no line change - # indicator, whereas deleted files have state dead. - # - foreach $qunk ( @$qunklist ) { - if ( "dead" eq $qunk->state) { - push @DeletedQunks, $qunk; - } elsif ( ! defined $qunk->lines ) { - push @AddedQunks, $qunk; - } else { - push @ChangedQunks, $qunk; - } - } - # - # The qunks list was originally in tree search order. Let's - # get that back. The lists, if they exist, will be reversed upon - # processing. - # - - # - # Now write the three sections onto $filelist - # - if ( @DeletedQunks ) { - $filelist .= "\tDeleted:\n"; - foreach $qunk ( @DeletedQunks ) { - $filelist .= "\t\t" . $qunk->filename; - $filelist .= " (" . $qunk->revision . ")"; - $filelist .= "\n"; - } - undef @DeletedQunks; - } - - if ( @AddedQunks ) { - $filelist .= "\tAdded:\n"; - foreach $qunk (@AddedQunks) { - $filelist .= "\t\t" . $qunk->filename; - $filelist .= " (" . $qunk->revision . ")"; - $filelist .= "\n"; - } - undef @AddedQunks ; - } - - if ( @ChangedQunks ) { - $filelist .= "\tChanged:\n"; - foreach $qunk (@ChangedQunks) { - $filelist .= "\t\t" . $qunk->filename; - $filelist .= " (" . $qunk->revision . ")"; - $filelist .= ", \"" . $qunk->state . "\""; - $filelist .= ", lines: " . $qunk->lines; - $filelist .= "\n"; - } - undef @ChangedQunks; - } - - chomp $filelist; - - if ( $Hide_Filenames ) { - $filelist = ''; - } - - $msg =~ s/\n(.*)/\n$Indent$1/g; - unless ( $After_Header eq " " or $FSF_Style ) { - $msg =~ s/^(.*)/$Indent$1/g; - } - - unless ( $No_Wrap ) { - if ( $FSF_Style ) { - $msg = $self->wrap_log_entry($msg, '', 69, 69); - chomp($msg); - chomp($msg); - } else { - $msg = $self->mywrap('', $Indent, "$msg"); - $msg =~ s/[ \t]+\n/\n/g; - } - } - - $body = $filelist . $After_Header . $msg; - } else { # do wrapping, either FSF-style or regular - my $latter_wrap = $No_Extra_Indent ? $Indent : "$Indent "; - - if ( $FSF_Style ) { - $files = $self->mywrap($Indent, $latter_wrap, "* $files"); - - my $files_last_line_len = 0; - if ( $After_Header eq " " ) { - $files_last_line_len = $self->last_line_len($files); - $files_last_line_len += 1; # for $After_Header - } - - $msg = $self->wrap_log_entry($msg, $latter_wrap, 69-$files_last_line_len, 69); - $body = $files . $After_Header . $msg; - } else { # not FSF-style - $msg = $self->preprocess_msg_text($msg); - $body = $files . $After_Header . $msg; - $body = $self->mywrap($Indent, $latter_wrap, "* $body"); - $body =~ s/[ \t]+\n/\n/g; - } - } - - return $body; -} - -# ---------------------------------------------------------------------------- - -package CVS::Utils::ChangeLog::EntrySet::Output::XML; - -use base qw( CVS::Utils::ChangeLog::EntrySet::Output ); - -use File::Basename qw( fileparse ); - -sub new { - my $class = shift; - my $self = $class->SUPER::new(@_); -} - -# ------------------------------------- - -sub header_line { - my $self = shift; - my ($time, $author, $lastdate) = @_; - - my $header_line = ''; - - my $isoDate; - - my ($y, $m, $d, $H, $M, $S) = (gmtime($time))[5,4,3,2,1,0]; - - # Ideally, this would honor $UTC_Times and use +HH:MM syntax - $isoDate = sprintf("%04d-%02d-%02dT%02d:%02d:%02dZ", - $y + 1900, $m + 1, $d, $H, $M, $S); - - my (undef,$min,$hour,$mday,$mon,$year,$wday) - = $UTC_Times ? gmtime($time) : localtime($time); - - my $date = $self->fdatetime($time); - $wday = $self->wday($wday); - - $header_line = - sprintf ("%4u-%02u-%02u\n${wday}\n", - $year+1900, $mon+1, $mday, $hour, $min); - $header_line .= "$isoDate\n" - unless $No_XML_ISO_Date; - $header_line .= sprintf("%s\n" , $author); -} - -# ------------------------------------- - -sub wday { - my $self = shift; my $class = ref $self; - my ($wday) = @_; - - return '' . $class->weekday_en($wday) . "\n"; -} - -# ------------------------------------- - -sub escape { - my $self = shift; - - my $txt = shift; - $txt =~ s/&/&/g; - $txt =~ s//>/g; - return $txt; -} - -# ------------------------------------- - -sub output_header { - my $self = shift; - my ($fh) = @_; - - my $encoding = - length $XML_Encoding ? qq'encoding="$XML_Encoding"' : ''; - my $version = 'version="1.0"'; - my $declaration = - sprintf '', join ' ', grep length, $version, $encoding; - my $root = - $No_XML_Namespace ? - '' : - ''; - print $fh "$declaration\n\n$root\n\n"; -} - -# ------------------------------------- - -sub output_footer { - my $self = shift; - my ($fh) = @_; - - print $fh "\n"; -} - -# ------------------------------------- - -sub preprocess_msg_text { - my $self = shift; - my ($text) = @_; - - $text = $self->SUPER::preprocess_msg_text($text); - - $text = $self->escape($text); - chomp $text; - $text = "${text}\n"; - - return $text; -} - -# ------------------------------------- - -# Here we take a bunch of qunks and convert them into a printed -# summary that will include all the information the user asked for. -sub pretty_file_list { - my $self = shift; - my ($qunksref) = @_; - - my $beauty = ''; # The accumulating header string for this entry. - my %non_unanimous_tags; # Tags found in a proper subset of qunks - my %unanimous_tags; # Tags found in all qunks - my %all_branches; # Branches found in any qunk - my $fbegun = 0; # Did we begin printing filenames yet? - - my ($common_dir, $qunkrefs) = - $self->_pretty_file_list(\(%unanimous_tags, %non_unanimous_tags, %all_branches), - $qunksref); - - my @qunkrefs = @$qunkrefs; - - # If outputting XML, then our task is pretty simple, because we - # don't have to detect common dir, common tags, branch prefixing, - # etc. We just output exactly what we have, and don't worry about - # redundancy or readability. - - foreach my $qunkref (@qunkrefs) - { - my $filename = $qunkref->filename; - my $state = $qunkref->state; - my $revision = $qunkref->revision; - my $tags = $qunkref->tags; - my $branch = $qunkref->branch; - my $branchroots = $qunkref->roots; - my $lines = $qunkref->lines; - - $filename = $self->escape($filename); # probably paranoia - $revision = $self->escape($revision); # definitely paranoia - - $beauty .= "\n"; - $beauty .= "${filename}\n"; - $beauty .= "${state}\n"; - $beauty .= "${revision}\n"; - - if ($Show_Lines_Modified - && $lines && $lines =~ m/\+(\d+)\s+-(\d+)/) { - $beauty .= "$1\n"; - $beauty .= "$2\n"; - } - - if ($branch) { - $branch = $self->escape($branch); # more paranoia - $beauty .= "${branch}\n"; - } - foreach my $tag (@$tags) { - $tag = $self->escape($tag); # by now you're used to the paranoia - $beauty .= "${tag}\n"; - } - foreach my $root (@$branchroots) { - $root = $self->escape($root); # which is good, because it will continue - $beauty .= "${root}\n"; - } - $beauty .= "\n"; - } - - # Theoretically, we could go home now. But as long as we're here, - # let's print out the common_dir and utags, as a convenience to - # the receiver (after all, earlier code calculated that stuff - # anyway, so we might as well take advantage of it). - - if ((scalar (keys (%unanimous_tags))) > 1) { - foreach my $utag ((keys (%unanimous_tags))) { - $utag = $self->escape($utag); # the usual paranoia - $beauty .= "${utag}\n"; - } - } - if ($common_dir) { - $common_dir = $self->escape($common_dir); - $beauty .= "${common_dir}\n"; - } - - # That's enough for XML, time to go home: - return $beauty; -} - -# ------------------------------------- - -sub output_tagdate { - my $self = shift; - my ($fh, $time, $tag) = @_; - - my ($y, $m, $d, $H, $M, $S) = (gmtime($time))[5,4,3,2,1,0]; - - # Ideally, this would honor $UTC_Times and use +HH:MM syntax - my $isoDate = sprintf("%04d-%02d-%02dT%02d:%02d:%02dZ", - $y + 1900, $m + 1, $d, $H, $M, $S); - - print $fh "\n"; - print $fh "$isoDate\n"; - print $fh "$tag\n"; - print $fh "\n\n"; - return; -} - -# ------------------------------------- - -sub output_entry { - my $self = shift; - my ($fh, $entry) = @_; - print $fh "\n$entry\n\n"; -} - -# ------------------------------------- - -sub format_body { - my $self = shift; - my ($msg, $files, $qunklist) = @_; - - $msg = $self->preprocess_msg_text($msg); - return $files . $msg; -} - -# ---------------------------------------------------------------------------- - -package CVS::Utils::ChangeLog::EntrySet::Output; - -use Carp qw( croak ); -use File::Basename qw( fileparse ); - -# Class Utility Functions ------------- - -{ # form closure - -my @weekdays = (qw(Sunday Monday Tuesday Wednesday Thursday Friday Saturday)); -sub weekday_en { - my $class = shift; - return $weekdays[$_[0]]; -} - -} - -# ------------------------------------- - -sub new { - my ($proto, %args) = @_; - my $class = ref $proto || $proto; - - my $follow_branches = delete $args{follow_branches}; - my $follow_only = delete $args{follow_only}; - my $ignore_tags = delete $args{ignore_tags}; - my $show_tags = delete $args{show_tags}; - die "Unrecognized arg to EntrySet::Output::new: '$_'\n" - for keys %args; - - bless +{follow_branches => $follow_branches, - follow_only => $follow_only, - show_tags => $show_tags, - ignore_tags => $ignore_tags, - }, $class; -} - -# Abstract Subrs ---------------------- - -sub wday { croak "Whoops. Abtract method call (wday).\n" } -sub pretty_file_list { croak "Whoops. Abtract method call (pretty_file_list).\n" } -sub output_tagdate { croak "Whoops. Abtract method call (output_tagdate).\n" } -sub header_line { croak "Whoops. Abtract method call (header_line).\n" } - -# Instance Subrs ---------------------- - -sub output_header { } - -# ------------------------------------- - -sub output_entry { - my $self = shift; - my ($fh, $entry) = @_; - print $fh "$entry\n"; -} - -# ------------------------------------- - -sub output_footer { } - -# ------------------------------------- - -sub escape { return $_[1] } - -# ------------------------------------- - -sub _revision_is_wanted { - my ($self, $qunk) = @_; - - my ($revision, $branch_numbers) = @{$qunk}{qw( revision branch_numbers )}; - my $follow_branches = $self->{follow_branches}; - my $follow_only = $self->{follow_only}; - - for my $ignore_tag (keys %{$self->{ignore_tags}}) { - return - if defined $qunk->{tags} and grep $_ eq $ignore_tag, @{$qunk->{tags}}; - } - - if ( keys %{$self->{show_tags}} ) { - for my $show_tag (keys %{$self->{show_tags}}) { - return - if ! defined $qunk->{tags} or ! grep $_ eq $show_tag, @{$qunk->{tags}}; - } - } - - return 1 - unless @$follow_branches + @$follow_only; # no follow is follow all - - for my $x (map([$_, 1], @$follow_branches), - map([$_, 0], @$follow_only )) { - my ($branch, $followsub) = @$x; - - # Special case for following trunk revisions - return 1 - if $branch =~ /^trunk$/i and $revision =~ /^[0-9]+\.[0-9]+$/; - - if ( my $branch_number = $branch_numbers->{$branch} ) { - # Are we on one of the follow branches or an ancestor of same? - - # If this revision is a prefix of the branch number, or possibly is less - # in the minormost number, OR if this branch number is a prefix of the - # revision, then yes. Otherwise, no. - - # So below, we determine if any of those conditions are met. - - # Trivial case: is this revision on the branch? (Compare this way to - # avoid regexps that screw up Emacs indentation, argh.) - if ( substr($revision, 0, (length($branch_number) + 1)) - eq - ($branch_number . ".") ) { - if ( $followsub ) { - return 1; -# } elsif ( length($revision) == length($branch_number)+2 ) { - } elsif ( substr($revision, length($branch_number)+1) =~ /^\d+$/ ) { - return 1; - } - } elsif ( length($branch_number) > length($revision) - and - ! $No_Ancestors ) { - # Non-trivial case: check if rev is ancestral to branch - - # r_left still has the trailing "." - my ($r_left, $r_end) = ($revision =~ /^((?:\d+\.)+)(\d+)$/); - - # b_left still has trailing "." - # b_mid has no trailing "." - my ($b_left, $b_mid) = ($branch_number =~ /^((?:\d+\.)+)(\d+)\.\d+$/); - return 1 - if $r_left eq $b_left and $r_end <= $b_mid; - } - } - } - - return; -} - -# ------------------------------------- - -sub output_changelog { -my $self = shift; my $class = ref $self; - my ($grand_poobah) = @_; - ### Process each ChangeLog - - while (my ($dir,$authorhash) = each %$grand_poobah) - { - &main::debug ("DOING DIR: $dir\n"); - - # Here we twist our hash around, from being - # author => time => message => filelist - # in %$authorhash to - # time => author => message => filelist - # in %changelog. - # - # This is also where we merge entries. The algorithm proceeds - # through the timeline of the changelog with a sliding window of - # $Max_Checkin_Duration seconds; within that window, entries that - # have the same log message are merged. - # - # (To save space, we zap %$authorhash after we've copied - # everything out of it.) - - my %changelog; - while (my ($author,$timehash) = each %$authorhash) - { - my %stamptime; - foreach my $time (sort {$a <=> $b} (keys %$timehash)) - { - my $msghash = $timehash->{$time}; - while (my ($msg,$qunklist) = each %$msghash) - { - my $stamptime = $stamptime{$msg}; - if ((defined $stamptime) - and (($time - $stamptime) < $Max_Checkin_Duration) - and (defined $changelog{$stamptime}{$author}{$msg})) - { - push(@{$changelog{$stamptime}{$author}{$msg}}, $qunklist->files); - } - else { - $changelog{$time}{$author}{$msg} = $qunklist->files; - $stamptime{$msg} = $time; - } - } - } - } - undef (%$authorhash); - - ### Now we can write out the ChangeLog! - - my ($logfile_here, $logfile_bak, $tmpfile); - my $lastdate; - - if (! $Output_To_Stdout) { - $logfile_here = $dir . $Log_File_Name; - $logfile_here =~ s/^\.\/\//\//; # fix any leading ".//" problem - $tmpfile = "${logfile_here}.cvs2cl$$.tmp"; - $logfile_bak = "${logfile_here}.bak"; - - open (LOG_OUT, ">$tmpfile") or die "Unable to open \"$tmpfile\""; - } - else { - open (LOG_OUT, ">-") or die "Unable to open stdout for writing"; - } - - print LOG_OUT $ChangeLog_Header; - - my %tag_date_printed; - - $self->output_header(\*LOG_OUT); - - my @key_list = (); - if($Chronological_Order) { - @key_list = sort {$a <=> $b} (keys %changelog); - } else { - @key_list = sort {$b <=> $a} (keys %changelog); - } - foreach my $time (@key_list) - { - next if ($Delta_Mode && - (($time <= $Delta_StartTime) || - ($time > $Delta_EndTime && $Delta_EndTime))); - - # Set up the date/author line. - # kff todo: do some more XML munging here, on the header - # part of the entry: - my (undef,$min,$hour,$mday,$mon,$year,$wday) - = $UTC_Times ? gmtime($time) : localtime($time); - - $wday = $self->wday($wday); - # XML output includes everything else, we might as well make - # it always include Day Of Week too, for consistency. - my $authorhash = $changelog{$time}; - if ( $Show_Tag_Dates || $XML_Output ) { - my %tags; - while (my ($author,$mesghash) = each %$authorhash) { - while (my ($msg,$qunk) = each %$mesghash) { - for my $qunkref2 (@$qunk) { - if (defined ($qunkref2->tags)) { - for my $tag (@{$qunkref2->tags}) { - $tags{$tag} = 1; - } - } - } - } - } - # Sort here for determinism to ease testing - foreach my $tag (sort keys %tags) { - if ( ! defined $tag_date_printed{$tag} ) { - $tag_date_printed{$tag} = $time; - $self->output_tagdate(\*LOG_OUT, $time, $tag); - } - } - } - while (my ($author,$mesghash) = each %$authorhash) - { - # If XML, escape in outer loop to avoid compound quoting: - $author = $self->escape($author); - - FOOBIE: - # We sort here to enable predictable ordering for the testing porpoises - for my $msg (sort keys %$mesghash) - { - my $qunklist = $mesghash->{$msg}; - - my @qunklist = - grep $self->_revision_is_wanted($_), @$qunklist; - - next FOOBIE unless @qunklist; - - my $files = $self->pretty_file_list(\@qunklist); - my $header_line; # date and author - my $wholething; # $header_line + $body - - my $date = $self->fdatetime($time); - $header_line = $self->header_line($time, $author, $lastdate); - $lastdate = $date; - - $Text::Wrap::huge = 'overflow' - if $Text::Wrap::VERSION >= 2001.0130; - # Reshape the body according to user preferences. - my $body = $self->format_body($msg, $files, \@qunklist); - - $body =~ s/[ \t]+\n/\n/g; - $wholething = $header_line . $body; - - # One last check: make sure it passes the regexp test, if the - # user asked for that. We have to do it here, so that the - # test can match against information in the header as well - # as in the text of the log message. - - # How annoying to duplicate so much code just because I - # can't figure out a way to evaluate scalars on the trailing - # operator portion of a regular expression. Grrr. - if ($Case_Insensitive) { - unless ( $Regexp_Gate and ( $wholething !~ /$Regexp_Gate/oi ) ) { - $self->output_entry(\*LOG_OUT, $wholething); - } - } - else { - unless ( $Regexp_Gate and ( $wholething !~ /$Regexp_Gate/o ) ) { - $self->output_entry(\*LOG_OUT, $wholething); - } - } - } - } - } - - $self->output_footer(\*LOG_OUT); - - close (LOG_OUT); - - if ( ! $Output_To_Stdout ) { - # If accumulating, append old data to new before renaming. But - # don't append the most recent entry, since it's already in the - # new log due to CVS's idiosyncratic interpretation of "log -d". - if ($Cumulative && -f $logfile_here) { - open NEW_LOG, ">>$tmpfile" - or die "trouble appending to $tmpfile ($!)"; - - open OLD_LOG, "<$logfile_here" - or die "trouble reading from $logfile_here ($!)"; - - my $started_first_entry = 0; - my $passed_first_entry = 0; - while () { - if ( ! $passed_first_entry ) { - if ( ( ! $started_first_entry ) - and /^(\d\d\d\d-\d\d-\d\d\s+\d\d:\d\d)/ ) { - $started_first_entry = 1; - } elsif ( /^(\d\d\d\d-\d\d-\d\d\s+\d\d:\d\d)/ ) { - $passed_first_entry = 1; - print NEW_LOG $_; - } - } else { - print NEW_LOG $_; - } - } - - close NEW_LOG; - close OLD_LOG; - } - - if ( -f $logfile_here ) { - rename $logfile_here, $logfile_bak; - } - rename $tmpfile, $logfile_here; - } - } -} - -# ------------------------------------- - -# Don't call this wrap, because with 5.5.3, that clashes with the -# (unconditional :-( ) export of wrap() from Text::Wrap -sub mywrap { - my $self = shift; - my ($indent1, $indent2, @text) = @_; - # If incoming text looks preformatted, don't get clever - my $text = Text::Wrap::wrap($indent1, $indent2, @text); - if ( grep /^\s+/m, @text ) { - return $text; - } - my @lines = split /\n/, $text; - $indent2 =~ s!^((?: {8})+)!"\t" x (length($1)/8)!e; - $lines[0] =~ s/^$indent1\s+/$indent1/; - s/^$indent2\s+/$indent2/ - for @lines[1..$#lines]; - my $newtext = join "\n", @lines; - $newtext .= "\n" - if substr($text, -1) eq "\n"; - return $newtext; -} - -# ------------------------------------- - -sub preprocess_msg_text { - my $self = shift; - my ($text) = @_; - - # Strip out carriage returns (as they probably result from DOSsy editors). - $text =~ s/\r\n/\n/g; - # If it *looks* like two newlines, make it *be* two newlines: - $text =~ s/\n\s*\n/\n\n/g; - - return $text; -} - -# ------------------------------------- - -sub last_line_len { - my $self = shift; - - my $files_list = shift; - my @lines = split (/\n/, $files_list); - my $last_line = pop (@lines); - return length ($last_line); -} - -# ------------------------------------- - -# A custom wrap function, sensitive to some common constructs used in -# log entries. -sub wrap_log_entry { - my $self = shift; - - my $text = shift; # The text to wrap. - my $left_pad_str = shift; # String to pad with on the left. - - # These do NOT take left_pad_str into account: - my $length_remaining = shift; # Amount left on current line. - my $max_line_length = shift; # Amount left for a blank line. - - my $wrapped_text = ''; # The accumulating wrapped entry. - my $user_indent = ''; # Inherited user_indent from prev line. - - my $first_time = 1; # First iteration of the loop? - my $suppress_line_start_match = 0; # Set to disable line start checks. - - my @lines = split (/\n/, $text); - while (@lines) # Don't use `foreach' here, it won't work. - { - my $this_line = shift (@lines); - chomp $this_line; - - if ($this_line =~ /^(\s+)/) { - $user_indent = $1; - } - else { - $user_indent = ''; - } - - # If it matches any of the line-start regexps, print a newline now... - if ($suppress_line_start_match) - { - $suppress_line_start_match = 0; - } - elsif (($this_line =~ /^(\s*)\*\s+[a-zA-Z0-9]/) - || ($this_line =~ /^(\s*)\* [a-zA-Z0-9_\.\/\+-]+/) - || ($this_line =~ /^(\s*)\([a-zA-Z0-9_\.\/\+-]+(\)|,\s*)/) - || ($this_line =~ /^(\s+)(\S+)/) - || ($this_line =~ /^(\s*)- +/) - || ($this_line =~ /^()\s*$/) - || ($this_line =~ /^(\s*)\*\) +/) - || ($this_line =~ /^(\s*)[a-zA-Z0-9](\)|\.|\:) +/)) - { - # Make a line break immediately, unless header separator is set - # and this line is the first line in the entry, in which case - # we're getting the blank line for free already and shouldn't - # add an extra one. - unless (($After_Header ne " ") and ($first_time)) - { - if ($this_line =~ /^()\s*$/) { - $suppress_line_start_match = 1; - $wrapped_text .= "\n${left_pad_str}"; - } - - $wrapped_text .= "\n${left_pad_str}"; - } - - $length_remaining = $max_line_length - (length ($user_indent)); - } - - # Now that any user_indent has been preserved, strip off leading - # whitespace, so up-folding has no ugly side-effects. - $this_line =~ s/^\s*//; - - # Accumulate the line, and adjust parameters for next line. - my $this_len = length ($this_line); - if ($this_len == 0) - { - # Blank lines should cancel any user_indent level. - $user_indent = ''; - $length_remaining = $max_line_length; - } - elsif ($this_len >= $length_remaining) # Line too long, try breaking it. - { - # Walk backwards from the end. At first acceptable spot, break - # a new line. - my $idx = $length_remaining - 1; - if ($idx < 0) { $idx = 0 }; - while ($idx > 0) - { - if (substr ($this_line, $idx, 1) =~ /\s/) - { - my $line_now = substr ($this_line, 0, $idx); - my $next_line = substr ($this_line, $idx); - $this_line = $line_now; - - # Clean whitespace off the end. - chomp $this_line; - - # The current line is ready to be printed. - $this_line .= "\n${left_pad_str}"; - - # Make sure the next line is allowed full room. - $length_remaining = $max_line_length - (length ($user_indent)); - - # Strip next_line, but then preserve any user_indent. - $next_line =~ s/^\s*//; - - # Sneak a peek at the user_indent of the upcoming line, so - # $next_line (which will now precede it) can inherit that - # indent level. Otherwise, use whatever user_indent level - # we currently have, which might be none. - my $next_next_line = shift (@lines); - if ((defined ($next_next_line)) && ($next_next_line =~ /^(\s+)/)) { - $next_line = $1 . $next_line if (defined ($1)); - # $length_remaining = $max_line_length - (length ($1)); - $next_next_line =~ s/^\s*//; - } - else { - $next_line = $user_indent . $next_line; - } - if (defined ($next_next_line)) { - unshift (@lines, $next_next_line); - } - unshift (@lines, $next_line); - - # Our new next line might, coincidentally, begin with one of - # the line-start regexps, so we temporarily turn off - # sensitivity to that until we're past the line. - $suppress_line_start_match = 1; - - last; - } - else - { - $idx--; - } - } - - if ($idx == 0) - { - # We bottomed out because the line is longer than the - # available space. But that could be because the space is - # small, or because the line is longer than even the maximum - # possible space. Handle both cases below. - - if ($length_remaining == ($max_line_length - (length ($user_indent)))) - { - # The line is simply too long -- there is no hope of ever - # breaking it nicely, so just insert it verbatim, with - # appropriate padding. - $this_line = "\n${left_pad_str}${this_line}"; - } - else - { - # Can't break it here, but may be able to on the next round... - unshift (@lines, $this_line); - $length_remaining = $max_line_length - (length ($user_indent)); - $this_line = "\n${left_pad_str}"; - } - } - } - else # $this_len < $length_remaining, so tack on what we can. - { - # Leave a note for the next iteration. - $length_remaining = $length_remaining - $this_len; - - if ($this_line =~ /\.$/) - { - $this_line .= " "; - $length_remaining -= 2; - } - else # not a sentence end - { - $this_line .= " "; - $length_remaining -= 1; - } - } - - # Unconditionally indicate that loop has run at least once. - $first_time = 0; - - $wrapped_text .= "${user_indent}${this_line}"; - } - - # One last bit of padding. - $wrapped_text .= "\n"; - - return $wrapped_text; -} - -# ------------------------------------- - -sub _pretty_file_list { - my $self = shift; - - my ($unanimous_tags, $non_unanimous_tags, $all_branches, $qunksref) = @_; - - my @qunkrefs = - grep +( ( ! $_->tags_exists - or - ! grep exists $ignore_tags{$_}, @{$_->tags}) - and - ( ! keys %show_tags - or - ( $_->tags_exists - and - grep exists $show_tags{$_}, @{$_->tags} ) - ) - ), - @$qunksref; - - my $common_dir; # Dir prefix common to all files ('' if none) - - # First, loop over the qunks gathering all the tag/branch names. - # We'll put them all in non_unanimous_tags, and take out the - # unanimous ones later. - QUNKREF: - foreach my $qunkref (@qunkrefs) - { - # Keep track of whether all the files in this commit were in the - # same directory, and memorize it if so. We can make the output a - # little more compact by mentioning the directory only once. - if ($Common_Dir && (scalar (@qunkrefs)) > 1) - { - if (! (defined ($common_dir))) - { - my ($base, $dir); - ($base, $dir, undef) = fileparse ($qunkref->filename); - - if ((! (defined ($dir))) # this first case is sheer paranoia - or ($dir eq '') - or ($dir eq "./") - or ($dir eq ".\\")) - { - $common_dir = ''; - } - else - { - $common_dir = $dir; - } - } - elsif ($common_dir ne '') - { - # Already have a common dir prefix, so how much of it can we preserve? - $common_dir = &main::common_path_prefix ($qunkref->filename, $common_dir); - } - } - else # only one file in this entry anyway, so common dir not an issue - { - $common_dir = ''; - } - - if (defined ($qunkref->branch)) { - $all_branches->{$qunkref->branch} = 1; - } - if (defined ($qunkref->tags)) { - foreach my $tag (@{$qunkref->tags}) { - $non_unanimous_tags->{$tag} = 1; - } - } - } - - # Any tag held by all qunks will be printed specially... but only if - # there are multiple qunks in the first place! - if ((scalar (@qunkrefs)) > 1) { - foreach my $tag (keys (%$non_unanimous_tags)) { - my $everyone_has_this_tag = 1; - foreach my $qunkref (@qunkrefs) { - if ((! (defined ($qunkref->tags))) - or (! (grep ($_ eq $tag, @{$qunkref->tags})))) { - $everyone_has_this_tag = 0; - } - } - if ($everyone_has_this_tag) { - $unanimous_tags->{$tag} = 1; - delete $non_unanimous_tags->{$tag}; - } - } - } - - return $common_dir, \@qunkrefs; -} - -# ------------------------------------- - -sub fdatetime { - my $self = shift; - - my ($year, $mday, $mon, $wday, $hour, $min); - - if ( @_ > 1 ) { - ($year, $mday, $mon, $wday, $hour, $min) = @_; - } else { - my ($time) = @_; - (undef, $min, $hour, $mday, $mon, $year, $wday) = - $UTC_Times ? gmtime($time) : localtime($time); - - $year += 1900; - $mon += 1; - $wday = $self->wday($wday); - } - - my $fdate = $self->fdate($year, $mon, $mday, $wday); - - if ($Show_Times) { - my $ftime = $self->ftime($hour, $min); - return "$fdate $ftime"; - } else { - return $fdate; - } -} - -# ------------------------------------- - -sub fdate { - my $self = shift; - - my ($year, $mday, $mon, $wday); - - if ( @_ > 1 ) { - ($year, $mon, $mday, $wday) = @_; - } else { - my ($time) = @_; - (undef, undef, undef, $mday, $mon, $year, $wday) = - $UTC_Times ? gmtime($time) : localtime($time); - - $year += 1900; - $mon += 1; - $wday = $self->wday($wday); - } - - return sprintf '%4u-%02u-%02u%s', $year, $mon, $mday, $wday; -} - -# ------------------------------------- - -sub ftime { - my $self = shift; - - my ($hour, $min); - - if ( @_ > 1 ) { - ($hour, $min) = @_; - } else { - my ($time) = @_; - (undef, $min, $hour) = $UTC_Times ? gmtime($time) : localtime($time); - } - - return sprintf '%02u:%02u', $hour, $min; -} - -# ---------------------------------------------------------------------------- - -package CVS::Utils::ChangeLog::Message; - -sub new { - my $class = shift; - my ($msg) = @_; - - my %self = (msg => $msg, files => []); - - bless \%self, $class; -} - -sub add_fileentry { - my $self = shift; - my ($fileentry) = @_; - - die "Not a fileentry: $fileentry" - unless $fileentry->isa('CVS::Utils::ChangeLog::FileEntry'); - - push @{$self->{files}}, $fileentry; -} - -sub files { wantarray ? @{$_[0]->{files}} : $_[0]->{files} } - -# ---------------------------------------------------------------------------- - -package CVS::Utils::ChangeLog::FileEntry; - -use File::Basename qw( fileparse ); - -# Each revision of a file has a little data structure (a `qunk') -# associated with it. That data structure holds not only the -# file's name, but any additional information about the file -# that might be needed in the output, such as the revision -# number, tags, branches, etc. The reason to have these things -# arranged in a data structure, instead of just appending them -# textually to the file's name, is that we may want to do a -# little rearranging later as we write the output. For example, -# all the files on a given tag/branch will go together, followed -# by the tag in parentheses (so trunk or otherwise non-tagged -# files would go at the end of the file list for a given log -# message). This rearrangement is a lot easier to do if we -# don't have to reparse the text. -# -# A qunk looks like this: -# -# { -# filename => "hello.c", -# revision => "1.4.3.2", -# time => a timegm() return value (moment of commit) -# tags => [ "tag1", "tag2", ... ], -# branch => "branchname" # There should be only one, right? -# roots => [ "branchtag1", "branchtag2", ... ] -# lines => "+x -y" # or undefined; x and y are integers -# } - -# Single top-level ChangeLog, or one per subdirectory? -my $distributed; -sub distributed { $#_ ? ($distributed = $_[1]) : $distributed; } - -sub new { - my $class = shift; - my ($path, $time, $revision, $state, $lines, - $branch_names, $branch_roots, $branch_numbers, $symbolic_names) = @_; - - my %self = (time => $time, - revision => $revision, - state => $state, - lines => $lines, - branch_numbers => $branch_numbers, - ); - - if ( $distributed ) { - @self{qw(filename dir_key)} = fileparse($path); - } else { - @self{qw(filename dir_key)} = ($path, './'); - } - - { # Scope for $branch_prefix - (my ($branch_prefix) = ($revision =~ /((?:\d+\.)+)\d+/)); - $branch_prefix =~ s/\.$//; - if ( $branch_names->{$branch_prefix} ) { - my $branch_name = $branch_names->{$branch_prefix}; - $self{branch} = $branch_name; - $self{branches} = [$branch_name]; - } - while ( $branch_prefix =~ s/^(\d+(?:\.\d+\.\d+)+)\.\d+\.\d+$/$1/ ) { - push @{$self{branches}}, $branch_names->{$branch_prefix} - if exists $branch_names->{$branch_prefix}; - } - } - - # If there's anything in the @branch_roots array, then this - # revision is the root of at least one branch. We'll display - # them as branch names instead of revision numbers, the - # substitution for which is done directly in the array: - $self{'roots'} = [ map { $branch_names->{$_} } @$branch_roots ] - if @$branch_roots; - - if ( exists $symbolic_names->{$revision} ) { - $self{tags} = delete $symbolic_names->{$revision}; - &main::delta_check($time, $self{tags}); - } - - bless \%self, $class; -} - -sub filename { $_[0]->{filename} } -sub dir_key { $_[0]->{dir_key} } -sub revision { $_[0]->{revision} } -sub branch { $_[0]->{branch} } -sub state { $_[0]->{state} } -sub lines { $_[0]->{lines} } -sub roots { $_[0]->{roots} } -sub branch_numbers { $_[0]->{branch_numbers} } - -sub tags { $_[0]->{tags} } -sub tags_exists { - exists $_[0]->{tags}; -} - -# This may someday be used in a more sophisticated calculation of what other -# files are involved in this commit. For now, we don't use it much except for -# delta mode, because the common-commit-detection algorithm is hypothesized to -# be "good enough" as it stands. -sub time { $_[0]->{time} } - -# ---------------------------------------------------------------------------- - -package CVS::Utils::ChangeLog::EntrySetBuilder; - -use File::Basename qw( fileparse ); -use Time::Local qw( timegm ); - -use constant MAILNAME => "/etc/mailname"; - -# In 'cvs log' output, one long unbroken line of equal signs separates files: -use constant FILE_SEPARATOR => '=' x 77;# . "\n"; -# In 'cvs log' output, a shorter line of dashes separates log messages within -# a file: -use constant REV_SEPARATOR => '-' x 28;# . "\n"; - -use constant EMPTY_LOG_MESSAGE => '*** empty log message ***'; - -# ------------------------------------- - -sub new { - my ($proto) = @_; - my $class = ref $proto || $proto; - - my $poobah = CVS::Utils::ChangeLog::EntrySet->new; - my $self = bless +{ grand_poobah => $poobah }, $class; - - $self->clear_file; - $self->maybe_read_user_map_file; - return $self; -} - -# ------------------------------------- - -sub clear_msg { - my ($self) = @_; - - # Make way for the next message - undef $self->{rev_msg}; - undef $self->{rev_time}; - undef $self->{rev_revision}; - undef $self->{rev_author}; - undef $self->{rev_state}; - undef $self->{lines}; - $self->{rev_branch_roots} = []; # For showing which files are branch - # ancestors. - $self->{collecting_symbolic_names} = 0; -} - -# ------------------------------------- - -sub clear_file { - my ($self) = @_; - $self->clear_msg; - - undef $self->{filename}; - $self->{branch_names} = +{}; # We'll grab branch names while we're - # at it. - $self->{branch_numbers} = +{}; # Save some revisions for - # @Follow_Branches - $self->{symbolic_names} = +{}; # Where tag names get stored. -} - -# ------------------------------------- - -sub grand_poobah { $_[0]->{grand_poobah} } - -# ------------------------------------- - -sub read_changelog { - my ($self, $command) = @_; - - local (*READER, *WRITER); - my $pid; - if (! $Input_From_Stdin) { - pipe(READER, WRITER) - or die "Couldn't form pipe: $!\n"; - $pid = fork; - die "Couldn't fork: $!\n" - if ! defined $pid; - if ( ! $pid ) { # child - open STDOUT, '>&=' . fileno WRITER - or die "Couldn't dup stderr to ", fileno WRITER, "\n"; - # strangely, some perls give spurious warnings about STDIN being opened - # for output only these close calls precede the STDOUT reopen above. - # I think they must be reusing fd 1. - close READER; - close STDIN; - - exec @$command; - } - - close WRITER; - - &main::debug ("(run \"@$command\")\n"); - } - else { - open READER, '-' or die "unable to open stdin for reading"; - } - - binmode READER; - - XX_Log_Source: - while () { - chomp; - s!\r$!!; - - # If on a new file and don't see filename, skip until we find it, and - # when we find it, grab it. - if ( ! defined $self->{filename} ) { - $self->read_file_path($_); - } elsif ( /^symbolic names:$/ ) { - $self->{collecting_symbolic_names} = 1; - } elsif ( $self->{collecting_symbolic_names} ) { - $self->read_symbolic_name($_); - } elsif ( $_ eq FILE_SEPARATOR and ! defined $self->{rev_revision} ) { - $self->clear_file; - } elsif ( ! defined $self->{rev_revision} ) { - # If have file name, but not revision, and see revision, then grab - # it. (We collect unconditionally, even though we may or may not - # ever use it.) - $self->read_revision($_); - } elsif ( ! defined $self->{rev_time} ) { # and /^date: /) { - $self->read_date_author_and_state($_); - } elsif ( /^branches:\s+(.*);$/ ) { - $self->read_branches($1); - } elsif ( ! ( $_ eq FILE_SEPARATOR or $_ eq REV_SEPARATOR ) ) { - # If have file name, time, and author, then we're just grabbing - # log message texts: - $self->{rev_msg} .= $_ . "\n"; # Normally, just accumulate the message... - } else { - my $noadd = 0; - if ( ! $self->{rev_msg} - or $self->{rev_msg} =~ /^\s*(\.\s*)?$/ - or index($self->{rev_msg}, EMPTY_LOG_MESSAGE) > -1 ) { - # ... until a msg separator is encountered: - # Ensure the message contains something: - $self->clear_msg, $noadd = 1 - if $Prune_Empty_Msgs; - $self->{rev_msg} = "[no log message]\n"; - } - - $self->add_file_entry - unless $noadd; - - if ( $_ eq FILE_SEPARATOR ) { - $self->clear_file; - } else { - $self->clear_msg; - } - } - } - - close READER - or die "Couldn't close pipe reader: $!\n"; - if ( defined $pid ) { - my $rv; - waitpid $pid, 0; - 0 == $? - or $!=1, die sprintf("Problem reading log input (pid/exit/signal/core: %d/%d/%d/%d)\n", - $pid, $? >> 8, $? & 127, $? & 128); - } - return; -} - -# ------------------------------------- - -sub add_file_entry { - $_[0]->grand_poobah->add_fileentry(@{$_[0]}{qw(filename rev_time rev_revision - rev_state lines branch_names - rev_branch_roots - branch_numbers - symbolic_names - rev_author rev_msg)}); -} - -# ------------------------------------- - -sub maybe_read_user_map_file { - my ($self) = @_; - - my %expansions; - my $User_Map_Input; - - if ($User_Map_File) - { - if ( $User_Map_File =~ m{^([-\w\@+=.,\/]+):([-\w\@+=.,\/:]+)} and - !-f $User_Map_File ) - { - my $rsh = (exists $ENV{'CVS_RSH'} ? $ENV{'CVS_RSH'} : 'ssh'); - $User_Map_Input = "$rsh $1 'cat $2' |"; - &main::debug ("(run \"${User_Map_Input}\")\n"); - } - else - { - $User_Map_Input = "<$User_Map_File"; - } - - open (MAPFILE, $User_Map_Input) - or die ("Unable to open $User_Map_File ($!)"); - - while () - { - next if /^\s*#/; # Skip comment lines. - next if not /:/; # Skip lines without colons. - - # It is now safe to split on ':'. - my ($username, $expansion) = split ':'; - chomp $expansion; - $expansion =~ s/^'(.*)'$/$1/; - $expansion =~ s/^"(.*)"$/$1/; - - # If it looks like the expansion has a real name already, then - # we toss the username we got from CVS log. Otherwise, keep - # it to use in combination with the email address. - - if ($expansion =~ /^\s*<{0,1}\S+@.*/) { - # Also, add angle brackets if none present - if (! ($expansion =~ /<\S+@\S+>/)) { - $expansions{$username} = "$username <$expansion>"; - } - else { - $expansions{$username} = "$username $expansion"; - } - } - else { - $expansions{$username} = $expansion; - } - } # fi ($User_Map_File) - - close (MAPFILE); - } - - if (defined $User_Passwd_File) - { - if ( ! defined $Domain ) { - if ( -e MAILNAME ) { - chomp($Domain = slurp_file(MAILNAME)); - } else { - MAILDOMAIN_CMD: - for ([qw(hostname -d)], 'dnsdomainname', 'domainname') { - my ($text, $exit, $sig, $core) = run_ext($_); - if ( $exit == 0 && $sig == 0 && $core == 0 ) { - chomp $text; - if ( length $text ) { - $Domain = $text; - last MAILDOMAIN_CMD; - } - } - } - } - } - - die "No mail domain found\n" - unless defined $Domain; - - open (MAPFILE, "<$User_Passwd_File") - or die ("Unable to open $User_Passwd_File ($!)"); - while () - { - # all lines are valid - my ($username, $pw, $uid, $gid, $gecos, $homedir, $shell) = split ':'; - my $expansion = ''; - ($expansion) = split (',', $gecos) - if defined $gecos && length $gecos; - - my $mailname = $Domain eq '' ? $username : "$username\@$Domain"; - $expansions{$username} = "$expansion <$mailname>"; - } - close (MAPFILE); - } - - $self->{usermap} = \%expansions; -} - -# ------------------------------------- - -sub read_file_path { - my ($self, $line) = @_; - - my $path; - - if ( $line =~ /^Working file: (.*)/ ) { - $path = $1; - } elsif ( defined $RCS_Root - and - $line =~ m|^RCS file: $RCS_Root[/\\](.*),v$| ) { - $path = $1; - $path =~ s!Attic/!!; - } else { - return; - } - - if ( @Ignore_Files ) { - my $base; - ($base, undef, undef) = fileparse($path); - - my $xpath = $Case_Insensitive ? lc($path) : $path; - return - if grep $path =~ /$_/, @Ignore_Files; - } - - $self->{filename} = $path; - return; -} - -# ------------------------------------- - -sub read_symbolic_name { - my ($self, $line) = @_; - - # All tag names are listed with whitespace in front in cvs log - # output; so if see non-whitespace, then we're done collecting. - if ( /^\S/ ) { - $self->{collecting_symbolic_names} = 0; - return; - } else { - # we're looking at a tag name, so parse & store it - - # According to the Cederqvist manual, in node "Tags", tag names must start - # with an uppercase or lowercase letter and can contain uppercase and - # lowercase letters, digits, `-', and `_'. However, it's not our place to - # enforce that, so we'll allow anything CVS hands us to be a tag: - my ($tag_name, $tag_rev) = ($line =~ /^\s+([^:]+): ([\d.]+)$/); - - # A branch number either has an odd number of digit sections - # (and hence an even number of dots), or has ".0." as the - # second-to-last digit section. Test for these conditions. - my $real_branch_rev = ''; - if ( $tag_rev =~ /^(\d+\.\d+\.)+\d+$/ # Even number of dots... - and - $tag_rev !~ /^(1\.)+1$/ ) { # ...but not "1.[1.]1" - $real_branch_rev = $tag_rev; - } elsif ($tag_rev =~ /(\d+\.(\d+\.)+)0.(\d+)/) { # Has ".0." - $real_branch_rev = $1 . $3; - } - - # If we got a branch, record its number. - if ( $real_branch_rev ) { - $self->{branch_names}->{$real_branch_rev} = $tag_name; - $self->{branch_numbers}->{$tag_name} = $real_branch_rev; - } else { - # Else it's just a regular (non-branch) tag. - push @{$self->{symbolic_names}->{$tag_rev}}, $tag_name; - } - } - - $self->{collecting_symbolic_names} = 1; - return; -} - -# ------------------------------------- - -sub read_revision { - my ($self, $line) = @_; - - my ($revision) = ( $line =~ /^revision (\d+\.[\d.]+)/ ); - - return - unless $revision; - - $self->{rev_revision} = $revision; - return; -} - -# ------------------------------------- - -{ # Closure over %gecos_warned -my %gecos_warned; -sub read_date_author_and_state { - my ($self, $line) = @_; - - my ($time, $author, $state) = $self->parse_date_author_and_state($line); - - if ( defined($self->{usermap}->{$author}) and $self->{usermap}->{$author} ) { - $author = $self->{usermap}->{$author}; - } elsif ( defined $Domain or $Gecos == 1 ) { - my $email = $author; - $email = $author."@".$Domain - if defined $Domain && $Domain ne ''; - - my $pw = getpwnam($author); - my ($fullname, $office, $workphone, $homephone, $gcos); - if ( defined $pw ) { - $gcos = (getpwnam($author))[6]; - ($fullname, $office, $workphone, $homephone) = - split /\s*,\s*/, $gcos; - } else { - warn "Couldn't find gecos info for author '$author'\n" - unless $gecos_warned{$author}++; - $fullname = ''; - } - for (grep defined, $fullname, $office, $workphone, $homephone) { - s/&/ucfirst(lc($pw->name))/ge; - } - $author = $fullname . " <" . $email . ">" - if $fullname ne ''; - } - - $self->{rev_state} = $state; - $self->{rev_time} = $time; - $self->{rev_author} = $author; - return; -} -} - -# ------------------------------------- - -sub read_branches { - # A "branches: ..." line here indicates that one or more branches - # are rooted at this revision. If we're showing branches, then we - # want to show that fact as well, so we collect all the branches - # that this is the latest ancestor of and store them in - # $self->[rev_branch_roots}. Just for reference, the format of the - # line we're seeing at this point is: - # - # branches: 1.5.2; 1.5.4; ...; - # - # Okay, here goes: - my ($self, $line) = @_; - - # Ugh. This really bothers me. Suppose we see a log entry - # like this: - # - # ---------------------------- - # revision 1.1 - # date: 1999/10/17 03:07:38; author: jrandom; state: Exp; - # branches: 1.1.2; - # Intended first line of log message begins here. - # ---------------------------- - # - # The question is, how we can tell the difference between that - # log message and a *two*-line log message whose first line is - # - # "branches: 1.1.2;" - # - # See the problem? The output of "cvs log" is inherently - # ambiguous. - # - # For now, we punt: we liberally assume that people don't - # write log messages like that, and just toss a "branches:" - # line if we see it but are not showing branches. I hope no - # one ever loses real log data because of this. - if ( $Show_Branches ) { - $line =~ s/(1\.)+1;|(1\.)+1$//; # ignore the trivial branch 1.1.1 - $self->{rev_branch_roots} = [split /;\s+/, $line] - if length $line; - } -} - -# ------------------------------------- - -sub parse_date_author_and_state { - my ($self, $line) = @_; - # Parses the date/time and author out of a line like: - # - # date: 1999/02/19 23:29:05; author: apharris; state: Exp; - # - # or, in CVS 1.12.9: - # - # date: 2004-06-05 16:10:32 +0000; author: somebody; state: Exp; - - my ($year, $mon, $mday, $hours, $min, $secs, $utcOffset, $author, $state, $rest) = - $line =~ - m!(\d+)[-/](\d+)[-/](\d+)\s+(\d+):(\d+):(\d+)(\s+[+-]\d{4})?;\s+ - author:\s+([^;]+);\s+state:\s+([^;]+);(.*)!x - or die "Couldn't parse date ``$line''"; - die "Bad date or Y2K issues" - unless $year > 1969 and $year < 2258; - # Kinda arbitrary, but useful as a sanity check - my $time = timegm($secs, $min, $hours, $mday, $mon-1, $year-1900); - if ( defined $utcOffset ) { - my ($plusminus, $hour, $minute) = ($utcOffset =~ m/([+-])(\d\d)(\d\d)/); - my $offset = (($hour * 60) + $minute) * 60 * ($plusminus eq '+' ? -1 : 1); - $time += $offset; - } - if ( $rest =~ m!\s+lines:\s+(.*)! ) { - $self->{lines} = $1; - } - - return $time, $author, $state; -} - -# Subrs ---------------------------------------------------------------------- - -package main; - -sub delta_check { - my ($time, $tags) = @_; - - # If we're in 'delta' mode, update the latest observed times for the - # beginning and ending tags, and when we get around to printing output, we - # will simply restrict ourselves to that timeframe... - return - unless $Delta_Mode; - - $Delta_StartTime = $time - if $time > $Delta_StartTime and grep { $_ eq $Delta_From } @$tags; - - $Delta_EndTime = $time - if $time > $Delta_EndTime and grep { $_ eq $Delta_To } @$tags; -} - -sub run_ext { - my ($cmd) = @_; - $cmd = [$cmd] - unless ref $cmd; - local $" = ' '; - my $out = qx"@$cmd 2>&1"; - my $rv = $?; - my ($sig, $core, $exit) = ($? & 127, $? & 128, $? >> 8); - return $out, $exit, $sig, $core; -} - -# ------------------------------------- - -# If accumulating, grab the boundary date from pre-existing ChangeLog. -sub maybe_grab_accumulation_date { - if (! $Cumulative || $Update) { - return ''; - } - - # else - - open (LOG, "$Log_File_Name") - or die ("trouble opening $Log_File_Name for reading ($!)"); - - my $boundary_date; - while () - { - if (/^(\d\d\d\d-\d\d-\d\d\s+\d\d:\d\d)/) - { - $boundary_date = "$1"; - last; - } - } - - close (LOG); - - # convert time from utc to local timezone if the ChangeLog has - # dates/times in utc - if ($UTC_Times && $boundary_date) - { - # convert the utc time to a time value - my ($year,$mon,$mday,$hour,$min) = $boundary_date =~ - m#(\d+)-(\d+)-(\d+)\s+(\d+):(\d+)#; - my $time = timegm(0,$min,$hour,$mday,$mon-1,$year-1900); - # print the timevalue in the local timezone - my ($ignore,$wday); - ($ignore,$min,$hour,$mday,$mon,$year,$wday) = localtime($time); - $boundary_date=sprintf ("%4u-%02u-%02u %02u:%02u", - $year+1900,$mon+1,$mday,$hour,$min); - } - - return $boundary_date; -} - -# ------------------------------------- - -# Fills up a ChangeLog structure in the current directory. -sub derive_changelog { - my ($command) = @_; - - # See "The Plan" above for a full explanation. - - # Might be adding to an existing ChangeLog - my $accumulation_date = maybe_grab_accumulation_date; - if ($accumulation_date) { - # Insert -d immediately after 'cvs log' - my $Log_Date_Command = "-d>${accumulation_date}"; - - my ($log_index) = grep $command->[$_] eq 'log', 0..$#$command; - splice @$command, $log_index+1, 0, $Log_Date_Command; - &debug ("(adding log msg starting from $accumulation_date)\n"); - } - -# output_changelog(read_changelog($command)); - my $builder = CVS::Utils::ChangeLog::EntrySetBuilder->new; - $builder->read_changelog($command); - $builder->grand_poobah->output_changelog; -} - -# ------------------------------------- - -sub min { $_[0] < $_[1] ? $_[0] : $_[1] } - -# ------------------------------------- - -sub common_path_prefix { - my ($path1, $path2) = @_; - - # For compatibility (with older versions of cvs2cl.pl), we think in UN*X - # terms, and mould windoze filenames to match. Is this really appropriate? - # If a file is checked in under UN*X, and cvs log run on windoze, which way - # do the path separators slope? Can we use fileparse as per the local - # conventions? If so, we should probably have a user option to specify an - # OS to emulate to handle stdin-fed logs. If we did this, we could avoid - # the nasty \-/ transmogrification below. - - my ($dir1, $dir2) = map +(fileparse($_))[1], $path1, $path2; - - # Transmogrify Windows filenames to look like Unix. - # (It is far more likely that someone is running cvs2cl.pl under - # Windows than that they would genuinely have backslashes in their - # filenames.) - tr!\\!/! - for $dir1, $dir2; - - my ($accum1, $accum2, $last_common_prefix) = ('') x 3; - - my @path1 = grep length($_), split qr!/!, $dir1; - my @path2 = grep length($_), split qr!/!, $dir2; - - my @common_path; - for (0..min($#path1,$#path2)) { - if ( $path1[$_] eq $path2[$_]) { - push @common_path, $path1[$_]; - } else { - last; - } - } - - return join '', map "$_/", @common_path; -} - -# ------------------------------------- - -sub parse_options { - # Check this internally before setting the global variable. - my $output_file; - - # If this gets set, we encountered unknown options and will exit at - # the end of this subroutine. - my $exit_with_admonishment = 0; - - # command to generate the log - my @log_source_command = qw( cvs log ); - - my (@Global_Opts, @Local_Opts); - - Getopt::Long::Configure(qw( bundling permute no_getopt_compat - pass_through no_ignore_case )); - GetOptions('help|usage|h' => \$Print_Usage, - 'debug' => \$Debug, # unadvertised option, heh - 'version' => \$Print_Version, - - 'file|f=s' => \$output_file, - 'accum' => \$Cumulative, - 'update' => \$Update, - 'fsf' => \$FSF_Style, - 'rcs=s' => \$RCS_Root, - 'usermap|U=s' => \$User_Map_File, - 'gecos' => \$Gecos, - 'domain=s' => \$Domain, - 'passwd=s' => \$User_Passwd_File, - 'window|W=i' => \$Max_Checkin_Duration, - 'chrono' => \$Chronological_Order, - 'ignore|I=s' => \@Ignore_Files, - 'case-insensitive|C' => \$Case_Insensitive, - 'regexp|R=s' => \$Regexp_Gate, - 'stdin' => \$Input_From_Stdin, - 'stdout' => \$Output_To_Stdout, - 'distributed|d' => sub { CVS::Utils::ChangeLog::FileEntry->distributed(1) }, - 'prune|P' => \$Prune_Empty_Msgs, - 'no-wrap' => \$No_Wrap, - 'gmt|utc' => \$UTC_Times, - 'day-of-week|w' => \$Show_Day_Of_Week, - 'revisions|r' => \$Show_Revisions, - 'show-dead' => \$Show_Dead, - 'tags|t' => \$Show_Tags, - 'tagdates|T' => \$Show_Tag_Dates, - 'branches|b' => \$Show_Branches, - 'follow|F=s' => \@Follow_Branches, - 'follow-only=s' => \@Follow_Only, - 'xml-encoding=s' => \$XML_Encoding, - 'xml' => \$XML_Output, - 'noxmlns' => \$No_XML_Namespace, - 'no-xml-iso-date' => \$No_XML_ISO_Date, - 'no-ancestors' => \$No_Ancestors, - 'lines-modified' => \$Show_Lines_Modified, - - 'no-indent' => sub { - $Indent = ''; - }, - - 'summary' => sub { - $Summary = 1; - $After_Header = "\n\n"; # Summary implies --separate-header - }, - - 'no-times' => sub { - $Show_Times = 0; - }, - - 'no-hide-branch-additions' => sub { - $Hide_Branch_Additions = 0; - }, - - 'no-common-dir' => sub { - $Common_Dir = 0; - }, - - 'ignore-tag=s' => sub { - $ignore_tags{$_[1]} = 1; - }, - - 'show-tag=s' => sub { - $show_tags{$_[1]} = 1; - }, - - # Deliberately undocumented. This is not a public interface, and - # may change/disappear at any time. - 'test-code=s' => \$TestCode, - - 'delta=s' => sub { - my $arg = $_[1]; - if ( $arg =~ - /^([A-Za-z][A-Za-z0-9_\-\]\[]*):([A-Za-z][A-Za-z0-9_\-\]\[]*)$/ ) { - $Delta_From = $1; - $Delta_To = $2; - $Delta_Mode = 1; - } else { - die "--delta FROM_TAG:TO_TAG is what you meant to say.\n"; - } - }, - - 'FSF' => sub { - $Show_Times = 0; - $Common_Dir = 0; - $No_Extra_Indent = 1; - $Indent = "\t"; - }, - - 'header=s' => sub { - my $narg = $_[1]; - $ChangeLog_Header = &slurp_file ($narg); - if (! defined ($ChangeLog_Header)) { - $ChangeLog_Header = ''; - } - }, - - 'global-opts|g=s' => sub { - my $narg = $_[1]; - push @Global_Opts, $narg; - splice @log_source_command, 1, 0, $narg; - }, - - 'log-opts|l=s' => sub { - my $narg = $_[1]; - push @Local_Opts, $narg; - push @log_source_command, $narg; - }, - - 'mailname=s' => sub { - my $narg = $_[1]; - warn "--mailname is deprecated; please use --domain instead\n"; - $Domain = $narg; - }, - - 'separate-header|S' => sub { - $After_Header = "\n\n"; - $No_Extra_Indent = 1; - }, - - 'group-within-date' => sub { - $GroupWithinDate = 1; - $Show_Times = 0; - }, - - 'hide-filenames' => sub { - $Hide_Filenames = 1; - $After_Header = ''; - }, - ) - or die "options parsing failed\n"; - - push @log_source_command, map "$_", @ARGV; - - ## Check for contradictions... - - if ($Output_To_Stdout && CVS::Utils::ChangeLog::FileEntry->distributed) { - print STDERR "cannot pass both --stdout and --distributed\n"; - $exit_with_admonishment = 1; - } - - if ($Output_To_Stdout && $output_file) { - print STDERR "cannot pass both --stdout and --file\n"; - $exit_with_admonishment = 1; - } - - if ($Input_From_Stdin && @Global_Opts) { - print STDERR "cannot pass both --stdin and -g\n"; - $exit_with_admonishment = 1; - } - - if ($Input_From_Stdin && @Local_Opts) { - print STDERR "cannot pass both --stdin and -l\n"; - $exit_with_admonishment = 1; - } - - if ($XML_Output && $Cumulative) { - print STDERR "cannot pass both --xml and --accum\n"; - $exit_with_admonishment = 1; - } - - # Other consistency checks and option-driven logic - - # Bleargh. Compensate for a deficiency of custom wrapping. - if ( ($After_Header ne " ") and $FSF_Style ) { - $After_Header .= "\t"; - } - - @Ignore_Files = map lc, @Ignore_Files - if $Case_Insensitive; - - # Or if any other error message has already been printed out, we - # just leave now: - if ($exit_with_admonishment) { - &usage (); - exit (1); - } - elsif ($Print_Usage) { - &usage (); - exit (0); - } - elsif ($Print_Version) { - &version (); - exit (0); - } - - ## Else no problems, so proceed. - - if ($output_file) { - $Log_File_Name = $output_file; - } - - return \@log_source_command; -} - -# ------------------------------------- - -sub slurp_file { - my $filename = shift || die ("no filename passed to slurp_file()"); - my $retstr; - - open (SLURPEE, "<${filename}") or die ("unable to open $filename ($!)"); - local $/ = undef; - $retstr = ; - close (SLURPEE); - return $retstr; -} - -# ------------------------------------- - -sub debug { - if ($Debug) { - my $msg = shift; - print STDERR $msg; - } -} - -# ------------------------------------- - -sub version { - print "cvs2cl.pl version ${VERSION}; distributed under the GNU GPL.\n"; -} - -# ------------------------------------- - -sub usage { - &version (); - - eval "use Pod::Usage qw( pod2usage )"; - - if ( $@ ) { - print <<'END'; - -* Pod::Usage was not found. The formatting may be suboptimal. Consider - upgrading your Perl --- Pod::Usage is standard from 5.6 onwards, and - versions of perl prior to 5.6 are getting rather rusty, now. Alternatively, - install Pod::Usage direct from CPAN. -END - - local $/ = undef; - my $message = ; - $message =~ s/^=(head1|item) //gm; - $message =~ s/^=(over|back).*\n//gm; - $message =~ s/\n{3,}/\n\n/g; - print $message; - } else { - print "\n"; - pod2usage( -exitval => 'NOEXIT', - -verbose => 1, - -output => \*STDOUT, - ); - } - - return; -} - -# Main ----------------------------------------------------------------------- - -my $log_source_command = parse_options; -if ( defined $TestCode ) { - eval $TestCode; - die "Eval failed: '$@'\n" - if $@; -} else { - derive_changelog($log_source_command); -} - -__DATA__ - -=head1 NAME - -cvs2cl.pl - convert cvs log messages to changelogs - -=head1 SYNOPSIS - -B [I] [I [I ...]] - -=head1 DESCRIPTION - -cvs2cl produces a GNU-style ChangeLog for CVS-controlled sources by -running "cvs log" and parsing the output. Duplicate log messages get -unified in the Right Way. - -The default output of cvs2cl is designed to be compact, formally unambiguous, -but still easy for humans to read. It should be largely self-explanatory; the -one abbreviation that might not be obvious is "utags". That stands for -"universal tags" -- a universal tag is one held by all the files in a given -change entry. - -If you need output that's easy for a program to parse, use the B<--xml> option. -Note that with XML output, just about all available information is included -with each change entry, whether you asked for it or not, on the theory that -your parser can ignore anything it's not looking for. - -If filenames are given as arguments cvs2cl only shows log information for the -named files. - -=head1 OPTIONS - -=over 4 - -=item B<-h>, B<-help>, B<--help>, B<-?> - -Show a short help and exit. - -=item B<--version> - -Show version and exit. - -=item B<-r>, B<--revisions> - -Show revision numbers in output. - -=item B<-b>, B<--branches> - -Show branch names in revisions when possible. - -=item B<-t>, B<--tags> - -Show tags (symbolic names) in output. - -=item B<-T>, B<--tagdates> - -Show tags in output on their first occurance. - -=item B<--show-dead> - -Show dead files. - -=item B<--stdin> - -Read from stdin, don't run cvs log. - -=item B<--stdout> - -Output to stdout not to ChangeLog. - -=item B<-d>, B<--distributed> - -Put ChangeLogs in subdirs. - -=item B<-f> I, B<--file> I - -Write to I instead of ChangeLog. - -=item B<--fsf> - -Use this if log data is in FSF ChangeLog style. - -=item B<--FSF> - -Attempt strict FSF-standard compatible output. - -=item B<-W> I, B<--window> I - -Window of time within which log entries unify. - -=item -B I, B<--usermap> I - -Expand usernames to email addresses from I. - -=item B<--passwd> I - -Use system passwd file for user name expansion. If no mail domain is provided -(via B<--domain>), it tries to read one from B, output of B, B, or B. cvs2cl exits with an error if none of -those options is successful. Use a domain of '' to prevent the addition of a -mail domain. - -=item B<--domain> I - -Domain to build email addresses from. - -=item B<--gecos> - -Get user information from GECOS data. - -=item B<-R> I, B<--regexp> I - -Include only entries that match I. This option may be used multiple -times. - -=item B<-I> I, B<--ignore> I - -Ignore files whose names match I. This option may be used multiple -times. The regexp is a perl regular expression. It is matched as is; you may -want to prefix with a ^ or suffix with a $ to anchor the match. - -=item B<-C>, B<--case-insensitive> - -Any regexp matching is done case-insensitively. - -=item B<-F> I, B<--follow> I - -Show only revisions on or ancestral to I. - -=item B<--follow-only> I - -Like --follow, but sub-branches are not followed. - -=item B<--no-ancestors> - -When using B<-F>, only track changes since the I started. - -=item B<--no-hide-branch-additions> - -By default, entries generated by cvs for a file added on a branch (a dead 1.1 -entry) are not shown. This flag reverses that action. - -=item B<-S>, B<--separate-header> - -Blank line between each header and log message. - -=item B<--summary> - -Add CVS change summary information. - -=item B<--no-wrap> - -Don't auto-wrap log message (recommend B<-S> also). - -=item B<--no-indent> - -Don't indent log message - -=item B<--gmt>, B<--utc> - -Show times in GMT/UTC instead of local time. - -=item B<--accum> - -Add to an existing ChangeLog (incompatible with B<--xml>). - -=item B<-w>, B<--day-of-week> - -Show day of week. - -=item B<--no-times> - -Don't show times in output. - -=item B<--chrono> - -Output log in chronological order (default is reverse chronological order). - -=item B<--header> I - -Get ChangeLog header from I ("B<->" means stdin). - -=item B<--xml> - -Output XML instead of ChangeLog format. - -=item B<--xml-encoding> I - -Insert encoding clause in XML header. - -=item B<--noxmlns> - -Don't include xmlns= attribute in root element. - -=item B<--hide-filenames> - -Don't show filenames (ignored for XML output). - -=item B<--no-common-dir> - -Don't shorten directory names from filenames. - -=item B<--rcs> I - -Handle filenames from raw RCS, for instance those produced by "cvs rlog" -output, stripping the prefix I. - -=item B<-P>, B<--prune> - -Don't show empty log messages. - -=item B<--lines-modified> - -Output the number of lines added and the number of lines removed for -each checkin (if applicable). At the moment, this only affects the -XML output mode. - -=item B<--ignore-tag> I - -Ignore individual changes that are associated with a given tag. -May be repeated, if so, changes that are associated with any of -the given tags are ignored. - -=item B<--show-tag> I - -Log only individual changes that are associated with a given -tag. May be repeated, if so, changes that are associated with -any of the given tags are logged. - -=item B<--delta> IB<:>I - -Attempt a delta between two tags (since I up to and -including I). The algorithm is a simple date-based one -(this is a hard problem) so results are imperfect. - -=item B<-g> I, B<--global-opts> I - -Pass I to cvs like in "cvs I log ...". - -=item B<-l> I, B<--log-opts> I - -Pass I to cvs log like in "cvs ... log I". - -=back - -Notes about the options and arguments: - -=over 4 - -=item * - -The B<-I> and B<-F> options may appear multiple times. - -=item * - -To follow trunk revisions, use "B<-F trunk>" ("B<-F TRUNK>" also works). This is -okay because no would ever, ever be crazy enough to name a branch "trunk", -right? Right. - -=item * - -For the B<-U> option, the I should be formatted like CVSROOT/users. That is, -each line of I looks like this: - - jrandom:jrandom@red-bean.com - -or maybe even like this - - jrandom:'Jesse Q. Random ' - -Don't forget to quote the portion after the colon if necessary. - -=item * - -Many people want to filter by date. To do so, invoke cvs2cl.pl like this: - - cvs2cl.pl -l "-d'DATESPEC'" - -where DATESPEC is any date specification valid for "cvs log -d". (Note that -CVS 1.10.7 and below requires there be no space between -d and its argument). - -=item * - -Dates/times are interpreted in the local time zone. - -=item * - -Remember to quote the argument to `B<-l>' so that your shell doesn't interpret -spaces as argument separators. - -=item * - -See the 'Common Options' section of the cvs manual ('info cvs' on UNIX-like -systems) for more information. - -=item * - -Note that the rules for quoting under windows shells are different. - -=item * - -To run in an automated environment such as CGI or PHP, suidperl may be needed -in order to execute as the correct user to enable /cvsroot read lock files to -be written for the 'cvs log' command. This is likely just a case of changing -the /usr/bin/perl command to /usr/bin/suidperl, and explicitly declaring the -PATH variable. - -=back - -=head1 EXAMPLES - -Some examples (working on UNIX shells): - - # logs after 6th March, 2003 (inclusive) - cvs2cl.pl -l "-d'>2003-03-06'" - # logs after 4:34PM 6th March, 2003 (inclusive) - cvs2cl.pl -l "-d'>2003-03-06 16:34'" - # logs between 4:46PM 6th March, 2003 (exclusive) and - # 4:34PM 6th March, 2003 (inclusive) - cvs2cl.pl -l "-d'2003-03-06 16:46>2003-03-06 16:34'" - -Some examples (on non-UNIX shells): - - # Reported to work on windows xp/2000 - cvs2cl.pl -l "-d"">2003-10-18;today<""" - -=head1 AUTHORS - -=over 4 - -=item Karl Fogel - -=item Melissa O'Neill - -=item Martyn J. Pearce - -=back - -Contributions from - -=over 4 - -=item Mike Ayers - -=item Tim Bradshaw - -=item Richard Broberg - -=item Nathan Bryant - -=item Oswald Buddenhagen - -=item Neil Conway - -=item Arthur de Jong - -=item Mark W. Eichin - -=item Dave Elcock - -=item Reid Ellis - -=item Simon Josefsson - -=item Robin Hugh Johnson - -=item Terry Kane - -=item Pete Kempf - -=item Akos Kiss - -=item Claus Klein - -=item Eddie Kohler - -=item Richard Laager - -=item Kevin Lilly - -=item Karl-Heinz Marbaise - -=item Mitsuaki Masuhara - -=item Henrik Nordstrom - -=item Joe Orton - -=item Peter Palfrader - -=item Thomas Parmelan - -=item Jordan Russell - -=item Jacek Sliwerski - -=item Johannes Stezenbach - -=item Joseph Walton - -=item Ernie Zapata - -=back - -=head1 BUGS - -Please report bugs to C. - -=head1 PREREQUISITES - -This script requires C, C, and C. It -also seems to require C or higher. - -=head1 OPERATING SYSTEM COMPATIBILITY - -Should work on any OS. - -=head1 SCRIPT CATEGORIES - -Version_Control/CVS - -=head1 COPYRIGHT - -(C) 2001,2002,2003,2004 Martyn J. Pearce , under the GNU GPL. - -(C) 1999 Karl Fogel , under the GNU GPL. - -cvs2cl.pl is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -cvs2cl.pl is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You may have received a copy of the GNU General Public License -along with cvs2cl.pl; see the file COPYING. If not, write to the -Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. - -=head1 SEE ALSO - -cvs(1) - diff --git a/tools/bin/erase b/tools/bin/erase deleted file mode 100755 index efa4d2eee..000000000 --- a/tools/bin/erase +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -if test $# = 0; then -echo 'usage: erase ' -else -file=$1 -erased_dir=$HOME/erased -mv -f $file erased_dir -cvs remove $file -fi diff --git a/tools/doc/Makefile.in b/tools/doc/Makefile.in deleted file mode 100644 index 7a300e892..000000000 --- a/tools/doc/Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ -# -# $Revision: 1.2 $ -# $Author: hkmoffa $ -# $Date: 2006/07/25 16:52:52 $ -# -build_ck=@BUILD_CK@ - -all: docs - -install: - - - -man-install: - -uninstall: - -clean: - cd html; mv banner4.jpg .. ; \ - $(RM) *.jpg *.png *.html *.map *.md5 *.gif *.dot \ - *.css *.hh[ckp] formula.repository ; \ - mv ../banner4.jpg . - - -docs doxygen: - doxygen Cantera.cfg - -depends: - diff --git a/tools/doc/README b/tools/doc/README deleted file mode 100644 index 036298805..000000000 --- a/tools/doc/README +++ /dev/null @@ -1,15 +0,0 @@ -Doxygen information: - - -The current version is 1.4.7: -I have version 1.3.9.1 - -Support is provided in the following versions for the following features - -SEPARATE_MEMBER_PAGES = 1.4.2 -FILE_VERSION_FILTER = 1.4.0 -WARN_NO_PARAMDOC = 1.4.0 -GROUP_GRAPHS = 1.4.0 -DIRECTORY_GRAPHS = 1.4.0 -DOT_TRANSPARENT = 1.4.0 -DOT_MULTI_TARGET =1.4.0 diff --git a/tools/export b/tools/export deleted file mode 100755 index cca0bfbfd..000000000 --- a/tools/export +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -version = cantera1.1b -export_dir = $2 -echo $export_dir - -#if (test -d $(export_dir)/$version); then rm -r $(export_dir)/$version; fi -#cd $(export_dir); cvs export -D 1/01/10 cantera-1.1 -# rm -r $(export_dir)/cantera-1.1/*/tests -# rm -r $(export_dir)/cantera-1.1/*/test -# rm -r $(export_dir)/cantera-1.1/*/doc -# mkdir $(export_dir)/cantera-1.1/lib - - - - - diff --git a/tools/src/Makefile.in b/tools/src/Makefile.in deleted file mode 100755 index cc6579e1c..000000000 --- a/tools/src/Makefile.in +++ /dev/null @@ -1,71 +0,0 @@ -#/bin/sh - -LIBDIR = @buildlib@ -INCDIR = -I@ctroot@/Cantera/src/ -BINDIR = @buildbin@ -build_ck = @BUILD_CK@ - -PURIFY=@PURIFY@ - -LCXX_FLAGS = -L$(LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ -LOCAL_LIBS = @LOCAL_LIBS@ - -LL_DEPS=@LOCAL_LIBS_DEP@ - -LCXX_END_LIBS = @LCXX_END_LIBS@ @EXTRA_LINK@ - -OBJS = ck2cti.o cti2ctml.o fixtext.o - -DEPENDS = $(OBJS:.o=.d) - -CONVLIB_DEP = @buildlib@/libconverters.a - - -progs = $(BINDIR)/cti2ctml $(BINDIR)/fixtext -ifeq ($(build_ck),1) -exes = $(progs) $(BINDIR)/ck2cti -else -exes = $(progs) -endif - -.cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(INCDIR)base $(INCDIR)converters @CXX_INCLUDES@ @CXXFLAGS@ $(CXX_FLAGS) - -all: $(exes) - -ck: $(BINDIR)/ck2cti - -$(BINDIR)/ck2cti: ck2cti.o $(CONVLIB_DEP) $(LL_DEPS) - $(RM) $(BINDIR)/ck2cti - $(PURIFY) @CXX@ -o $(BINDIR)/ck2cti ck2cti.o $(LCXX_FLAGS) \ - -lconverters -lctbase -ltpx -lctcxx $(LOCAL_LIBS) $(LCXX_END_LIBS) - -$(BINDIR)/cti2ctml: cti2ctml.o $(LL_DEPS) - $(RM) $(BINDIR)/cti2ctml - $(PURIFY) @CXX@ -o $(BINDIR)/cti2ctml cti2ctml.o $(LCXX_FLAGS) $(LOCAL_LIBS) \ - $(LCXX_END_LIBS) - -$(BINDIR)/fixtext: fixtext.o $(LL_DEPS) - $(RM) $(BINDIR)/fixtext - $(PURIFY) @CXX@ -o $(BINDIR)/fixtext fixtext.o $(LCXX_FLAGS) \ - $(LOCAL_LIBS) $(LCXX_END_LIBS) - -$(CONVLIB_DEP): - cd ../../Cantera/src/converters; @MAKE@ - -clean: - $(RM) *.o *.*~ $(BINDIR)/cti2ctml $(BINDIR)/ck2cti $(BINDIR)/fixtext - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -%.d: - @CXX_DEPENDS@ $(INCDIR)base $(INCDIR)converters @CXXFLAGS@ $(CXX_FLAGS) $*.cpp > $*.d - -depends: $(DEPENDS) - cat *.d &> .depends - $(RM) $(DEPENDS) - -ifeq ((test -e .depends),0) -include .depends -endif diff --git a/tools/src/ck2ctml.cpp b/tools/src/ck2ctml.cpp deleted file mode 100755 index e00013deb..000000000 --- a/tools/src/ck2ctml.cpp +++ /dev/null @@ -1,84 +0,0 @@ -/** - * @file ck2ctml.cpp - * - * Program to convert CK-format reaction mechanism files to CTML format. - * - */ -#ifdef WIN32 -#pragma warning(disable:4786) -#pragma warning(disable:4503) -#endif - -#include -#include -using namespace std; - -#include "converters/ck2ctml.h" -#include "converters/ck2ct.h" - -using namespace ctml; - -int showHelp() { - cout << "\nck2ckml: convert a CK-format reaction mechanism file to CTML.\n" - << "\n D. G. Goodwin, Caltech \n" - << " Version 1.0, August 2002.\n\n" - << endl; - cout << "options:" << endl; - cout << " -i \n" - << " -o \n" - << " -t \n" - << " -tr \n" - << " -id \n"; - return 0; -} - -int main(int argc, char** argv) { - string infile="chem.inp", dbfile="", trfile="", logfile, outfile=""; - string idtag = "gas"; - // ckr::CKReader r; - //r.validate = true; - int i=1; - if (argc == 1) return showHelp(); - - while (i < argc) { - string arg = string(argv[i]); - if (i < argc-1) { - if (arg == "-i") { - infile = argv[i+1]; - ++i; - } - else if (arg == "-o") { - outfile = argv[i+1]; - ++i; - } - else if (arg == "-t") { - dbfile = argv[i+1]; - ++i; - } - else if (arg == "-tr") { - trfile = argv[i+1]; - ++i; - } - else if (arg == "-id") { - idtag = argv[i+1]; - } - } - else if (arg == "-h" || argc < 3) { - return showHelp(); - } - ++i; - } - -//#define MAKE_CT_INPUT -#ifdef MAKE_CT_INPUT - int ierr = pip::convert_ck(infile.c_str(), dbfile.c_str(), trfile.c_str(), - idtag.c_str()); -#else - int ierr = convert_ck(infile.c_str(), dbfile.c_str(), trfile.c_str(), - outfile.c_str(), idtag.c_str()); -#endif - if (ierr < 0) { - showErrors(cerr); - } - return ierr; -} diff --git a/tools/src/ck2ctml.dsp b/tools/src/ck2ctml.dsp deleted file mode 100755 index 737e54532..000000000 --- a/tools/src/ck2ctml.dsp +++ /dev/null @@ -1,108 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ck2ctml" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=ck2ctml - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ck2ctml.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ck2ctml.mak" CFG="ck2ctml - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ck2ctml - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "ck2ctml - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ck2ctml - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /math_library:fast /names:lowercase /nologo /warn:nofileopt /module:"" -# SUBTRACT F90 /threads -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib /nologo /subsystem:console /machine:I386 /out:"../../bin/ck2ctml.exe" /libpath:"c:/users/dgg/dv/cantera-1.2/lib" - -!ELSEIF "$(CFG)" == "ck2ctml - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt /module:"" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "c:/users/dgg/dv/cantera-1.2/include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib cantera_d.lib ckreader_d.lib ctmath_d.lib ctlapack_d.lib ctblas_d.lib cvode_d.lib recipes_d.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /out:"../../bin/ck2ctml.exe" /pdbtype:sept /libpath:"c:/users/dgg/dv/cantera-1.2/lib" - -!ENDIF - -# Begin Target - -# Name "ck2ctml - Win32 Release" -# Name "ck2ctml - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=.\ck2ctml.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/tools/src/ctlibsample.mak.in b/tools/src/ctlibsample.mak.in deleted file mode 100755 index 75155451e..000000000 --- a/tools/src/ctlibsample.mak.in +++ /dev/null @@ -1,82 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a Fortran application to CtLib. -# -############################################################################# - -# the name of the executable program to be created -PROG_NAME = __PROGRAM__ - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = __OBJS__ - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -# if your program also calls Chemkin, set this to be the command-line -# string to link to CKLIB. -#CHEMKIN_LIB = -lchemkin -#CHEMKIN_LIB = cklib.o -CHEMKIN_LIB = - -# other external libraries that might be needed -EXT_LIBS = -lcvode -lrecipes @LAPACK_LIBRARY@ @BLAS_LIBRARY@ - -############################################################################# - -# the Fortran compiler -FORT = @F77@ - -# Fortran compile flags -FORT_FLAGS = @FFLAGS@ - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - - -#------ you probably don't have to change anything below this line ----- - - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@CANTERA_LIBDIR@ - -# required Cantera libraries -CANTERA_LIBS = -lct -lcantera -lckreader - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@CANTERA_INCDIR@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# how to compile Fortran source files to object files -.@F77_EXT@.@OBJ_EXT@: - $(FORT) -c $< $(FORT_FLAGS) - -all: $(PROG_NAME) - -$(PROG_NAME): $(OBJS) - $(CXX) -o $(PROG_NAME) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) $(LINK_OPTIONS) $(CHEMKIN_LIB) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) - -clean: - $(RM) $(OBJS) $(PROGRAM) - - - - - - diff --git a/tools/src/ctsetup.cpp b/tools/src/ctsetup.cpp deleted file mode 100755 index 7fa03619a..000000000 --- a/tools/src/ctsetup.cpp +++ /dev/null @@ -1,228 +0,0 @@ -/** - * @file makedsp.cpp - * - * Write a Visual Studio Project File with settings for Cantera. This - * program writes a project file to build a console application only. - * - */ - -// copyright 2001 California Institute of Technology - - -#ifdef WIN32 -#pragma warning(disable:4786) -#pragma warning(disable:4503) -#endif - -#include -#include -#include -using namespace std; - -void write_prog(string fname); - -int write_dsp(string ctroot, string projdir, string projname) { - - char buf[500]; - for (int j = 0; j < 500; j++) buf[j] = ' '; - string line; - - -#ifdef CVF - ifstream proto((ctroot+"/tools/src/protocvf.dsp").c_str()); - if (!proto) { - cout << "Error: file protocvf.dsp not found in " << ctroot << "/tools/src" << endl; - return 1; - } -#else - ifstream proto((ctroot+"/tools/src/protocxx.dsp").c_str()); - if (!proto) { - cout << "Error: file protocxx.dsp not found in " - << ctroot << "/tools/src" << endl; - return 1; - } -#endif - - string fname, progname; - if (projdir != "." && projdir != "'.'") { - fname = projdir+"\\"+projname+".dsp"; - progname = projdir+"\\"+projname+".cpp"; - } - else { - fname = string(projname)+".dsp"; - progname = string(projname)+".cpp"; - } - ofstream fout(fname.c_str()); - while (!proto.eof()) { - proto.getline( buf,500); - line = buf; - int i; - while (i = line.find("__PROJECT__"), i >=0) { - line.replace(i,11,projname); - } - while (i = line.find("__CTROOT__"), i >=0) { - line.replace(i,10,ctroot); - } - fout << line << endl; - } - proto.close(); - fout.close(); - - // if main program file doesn't exist, create a prototype - ifstream fprog(progname.c_str()); - bool wrote_prog = false; - if (!fprog) { - write_prog(progname); - wrote_prog = true; - } - else - fprog.close(); - - cout << "created Developer Studio project file " - << fname; - if (wrote_prog) - cout << " and main program file " << progname; - cout << endl; - return 0; -} - - - -int write_mak(string ctroot, string projdir, string projname) { - - char buf[500]; - for (int j = 0; j < 500; j++) buf[j] = ' '; - string line, objs; - - - ifstream proto((ctroot+"/tools/src/sample.mak").c_str()); - if (!proto) { - cout << "Error: file sample.mak not found in " - << ctroot << "/tools/src" << endl; - return 1; - } - - string fname, progname; - if (projdir != "." && projdir != "'.'") { - fname = projdir+"/"+projname+".mak"; - progname = projdir+"/"+projname+".cpp"; - } - else { - fname = string(projname)+".mak"; - progname = string(projname)+".cpp"; - } - - objs = string(projname)+".o"; - - ofstream fout(fname.c_str()); - while (!proto.eof()) { - proto.getline( buf,500); - line = buf; - int i; - while (i = line.find("__PROGRAM__"), i >=0) { - line.replace(i,11,projname); - } - while (i = line.find("__CTROOT__"), i >=0) { - line.replace(i,10,ctroot); - } - while (i = line.find("__OBJS__"), i >=0) { - line.replace(i,10,objs); - } - fout << line << endl; - } - proto.close(); - fout.close(); - cout << "Makefile = " << fname << endl; - - // if main program file doesn't exist, create a prototype - ifstream fprog(progname.c_str()); - bool wrote_prog = false; - if (!fprog) { - write_prog(progname); - wrote_prog = true; - } - else - fprog.close(); - - cout << "created Makefile " - << fname; - if (wrote_prog) - cout << " and main program file " << progname; - cout << endl; - return 0; -} - - -int main() { - - char buf[500]; - for (int j = 0; j < 500; j++) buf[j] = ' '; - string line, projname, projdir, ctroot; - - // prompt for the project name - cout << "Project name: "; - cin >> projname; - - // prompt for the output directory - cout << "Project directory (enter '.' for local directory): "; - cin >> projdir; - - // get the Cantera root directory either from environment - // variable CANTERA_ROOT (if set) or from user input - - const char* ctr; - int iroot = 0; - ctr = getenv("WIN_CANTERA_ROOT"); - if (ctr == 0) { - ctr = getenv("CANTERA_ROOT"); - iroot = 1; - } - if (ctr != 0) { - ctroot = ctr; - cout << "\nCantera root directory: " << ctroot; - cout << (iroot == 1 ? " (CANTERA_ROOT)" : " (WIN_CANTERA_ROOT)") << endl << endl; - } - else { - iroot = -1; - cout << "Cantera root directory: "; - cin >> ctroot; - } - - int itype; - cout << "Output type:\n" - << " 1 Unix Makefile\n" - << " 2 Visual Studio project file\n" - << "Output type:"; - cin >> itype; - if (itype == 1) write_mak(ctroot, projdir, projname); - else if (itype == 2) write_dsp(ctroot, projdir, projname); - - return 0; -} - - - -void write_prog(string fname) { - - ofstream f(fname.c_str()); - f << endl - << "#include \"Cantera.h\"" << endl - << "// include additional header files here if needed" << endl - << endl - << "int main(int argc, char** argv) {" << endl - << " try {" << endl - << " // your code goes here" << endl - << " return 0;" << endl - << " }" << endl - << " catch (CanteraError) {" << endl - << " showErrors(cerr);" << endl - << " cerr << \"program terminating.\" << endl;" << endl - << " return -1;" << endl - << " }" << endl - << "}" << endl; - f.close(); -} - - - - diff --git a/tools/src/ctsetup.in b/tools/src/ctsetup.in deleted file mode 100755 index 21808b4a7..000000000 --- a/tools/src/ctsetup.in +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -# complain if no program name was given -if test $# = 0; then -echo 'usage: ctsetup ' -exit 0 -fi - -# -# make the Makefile -# - -for t in "$@"; do -if test $t = -fort; then - status=fort; -elif test $t = -f90; then - status=f90; -elif test $t = -cxx; then - status=cxx -else - objs=$objs' '$t'.o'; -fi -done - -TOOLS_DIR=@CANTERA_ROOT@/tools - -echo 'creating '$1'.mak...' -cat > .sedscript < ./$1.mak - -rm -f .sedscript - - - - diff --git a/tools/src/ctwin b/tools/src/ctwin deleted file mode 100755 index 7e957b342..000000000 --- a/tools/src/ctwin +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -# complain if no program name was given -if test $# = 0; then -echo 'usage: ctsetup ' -exit 0 -fi - -# -# make the Makefile -# - -for t in "$@"; do -if test $t = -fort; then - status=fort; -elif test $t = -cxx; then - status=cxx -else - objs=$objs" $t.@OBJ_EXT@" -fi -done - -TOOLS_DIR=@CANTERA_ROOT@/tools - - -if test $1 = -ctlib; then -USE_CTLIB=1 -else -USE_CTLIB=0 -fi - -if test $USE_CTLIB = 1; then -echo 'creating '$2'.mak...' -objs=$objs" drive-$2.@OBJ_EXT@" -cat > .sedscript < ./$2.mak - -sub=$2_ - -echo 'creating C++ driver program...' -cat > drive-$2.cpp << EOF - -/* - * driver program for Fortran subroutine $2 - */ - -#include - -extern "C" { - int $sub(); -} - -main() { - try { - $sub(); - } - catch (...) { - cerr << "an error occurred." << endl; - } -} -EOF - -else -echo 'creating '$1'.mak...' -cat > .sedscript < ./$1.mak -fi - -rm -f .sedscript - - - - diff --git a/tools/src/findtag.py b/tools/src/findtag.py deleted file mode 100644 index 258cb348d..000000000 --- a/tools/src/findtag.py +++ /dev/null @@ -1,21 +0,0 @@ -import sys - -def cvstag(dir): - path = dir+"/CVS/Tag" - try: - f = open(path,'r') - if f: - s = f.readlines() - if s: - return s[0][1:-1] - else: - return "" - else: - return "" - except: - return "" - -if __name__ == "__main__": - dir = sys.argv[1] - print cvstag(dir) - diff --git a/tools/src/finish_install.py.in b/tools/src/finish_install.py.in deleted file mode 100644 index b40b01e4b..000000000 --- a/tools/src/finish_install.py.in +++ /dev/null @@ -1,186 +0,0 @@ -import sys, os, string -prefix = '@python_prefix@' -pycmd = '@PYTHON_CMD@' # sys.argv[2] -localinst = @local_inst@ - -build_python = @BUILD_PYTHON@ -build_matlab = @BUILD_MATLAB@ - -bindir = '@ct_bindir@' -libdir = '@ct_libdir@' -hdrdir = '@ct_incdir@' -demodir = '@ct_demodir@' -datadir = '@ct_datadir@' -templdir = '@ct_templdir@' -ctdir = '@ct_dir@' -home = '@homedir@' -isdarwin = '@OS_IS_DARWIN@' -numarray_home = '@NUMARRAY_HOME@' - -f = open(home+'/setup_cantera','w') -f.write('#!/bin/sh\n') -f.write('LD_LIBRARY_PATH='+libdir+':$LD_LIBRARY_PATH\nexport LD_LIBRARY_PATH\n') -f.write('PATH='+bindir+':$PATH\nexport PATH\n') -f.write('PYTHON_CMD='+pycmd+'\nexport PYTHON_CMD\n') -if pycmd <> 'python': - f.write('alias ctpython='+pycmd+'\n') - -if build_matlab: - matlabdir = prefix + '/matlab/toolbox/cantera/cantera' - f.write('MATLABPATH=$MATLABPATH:%s/:%s/1D\n' % (matlabdir, matlabdir)) - f.write('export MATLABPATH\n') - -ctloc = '-' -warn = '' -warn2 = '' -pypath = '' -if localinst and build_python == 2: - try: - v = sys.version_info - ctloc = prefix+'/lib/python'+`v[0]`+'.'+`v[1]`+'/site-packages' - try: - import Cantera - ctpath = Cantera.__path__[0] - if ctpath <> ctloc+'/Cantera': - warn = """ - ###################################################################### - Warning: the Cantera Python package is already installed at - """+ctpath+""". - The newly-installed package at - """+ctloc+"""/Cantera - cannot be accessed until the existing one is removed. - ###################################################################### - -""" - except: - pass - - pypath = ctloc - if numarray_home <> '': - pypath += ':'+numarray_home+'/lib/python' - - sys.path.append(ctloc) - sys.path.append(numarray_home+'/lib/python') - f.write('PYTHONPATH='+pypath+':$PYTHONPATH\nexport PYTHONPATH\n') - except: - print 'error' - -f.write('# Uncomment this if you want to specify the tmp dir location where Cantera writes temporary files\n') -f.write('# (the default is (1) getenv("TMP") (2) getenv("TEMP") (3) ".")\n') -f.write('# CANTERA_TMPDIR="FILL_IN"\n') -f.write('# export CANTERA_TMPDIR\n') - -f.close() - - -if localinst and build_python == 1: - try: - v = sys.version_info - ctloc = prefix+'/lib/python'+`v[0]`+'.'+`v[1]`+'/site-packages' - f.write('PYTHONPATH='+ctloc+':$PYTHONPATH\nexport PYTHONPATH\n') - except: - print 'error' -f.close() - - -if build_python == 2: - # write the script to run MixMaster - f = open(bindir+'/mixmaster','w') - if isdarwin == '1': - f.write('#!/bin/sh\n'+pycmd+"""w -c 'from MixMaster import MixMaster; MixMaster()' - """) - else: - f.write('#!/bin/sh\n'+pycmd+""" -c 'from MixMaster import MixMaster; MixMaster()' - """) - f.close() - - -# write the script to copy files to build a new app -f = open(bindir+'/ctnew','w') -f.write("""#!/bin/sh -if test "x$1" = "x-f77"; then -cp """+templdir+"""/f77/*.* . -elif test "x$1" = "x-f90"; then -cp """+templdir+"""/f90/*.* . -else -cp """+templdir+"""/cxx/*.* . -fi -""") -f.close() - - -try: - import Cantera - ctpath = Cantera.__path__[0] -except: - print "Cantera not found on sys.path = ",sys.path - ctpath = "-" - -if build_matlab: - fm = open(ctdir+"/ctpath.m","w") - fm.write("""path('"""+prefix+"""/matlab/toolbox/cantera/cantera',path)\n""") - fm.write("""path('"""+prefix+"""/matlab/toolbox/cantera/cantera/1D',path)\n""") - if build_python: - fm.write("setenv('PYTHON_CMD','%s')\n" % pycmd) - fm.write("setenv('PYTHONPATH', [getenv('PYTHONPATH'), '%s'])\n" % pypath) - fm.close() - - fm = open(ctdir+"/cantera_demos.m","w") - fm.write("""ctpath;\n""") - fm.write("""cd demos/matlab;\n""") - fm.write("""run_examples;\n""") - fm.close() - -print """ - -Cantera has been successfully installed. - -File locations: - - applications """+bindir+""" - library files """+libdir+""" - C++ headers """+hdrdir+""" - demos """+demodir+""" - data files """+datadir - -if build_matlab: - print """ - - Matlab toolbox """+prefix+"""/matlab/toolbox/cantera/cantera - Matlab demos """+prefix+"""/matlab/toolbox/cantera/cantera-demos - Matlab tutorials """+prefix+"""/matlab/toolbox/cantera/cantera-tutorials - - An m-file to set the correct matlab path for Cantera - is at """+ctdir+"""/ctpath.m""" - -if ctpath <> "-": - print """ - Python package """+ctpath - if warn <> '': - print warn -elif build_python == 2: - print """ - ###################################################################### - Warning: the Cantera Python package is not installed. If you - intentionally skipped it, ignore this message. Otherwise, type - 'make python' and/or 'make python-install' and look for error messages. - Note that you must first install the 'numarray' package before installing - the Cantera package. - ###################################################################### -""" - - -print """ - - setup script """+home+"""/setup_cantera - - The setup script configures the environment for Cantera. It is - recommended that you run this script by typing - - source """+home+"""/setup_cantera - - before using Cantera, or else - include its contents in your shell login script. - """ - - diff --git a/tools/src/fixtext.cpp b/tools/src/fixtext.cpp deleted file mode 100644 index 513bd22a1..000000000 --- a/tools/src/fixtext.cpp +++ /dev/null @@ -1,39 +0,0 @@ -#include -#include -#include -using namespace std; - -//////////////////////////////////////////////////////////////////////// -// -// Convert a text file created on any system (unix, Mac, or Windows) -// to the line-ending convention used on this machine. The input is -// read from the standard input, and the output is written to the -// standard output. -// -// > convertfile < input_file.txt > output_file.txt -// -/////////////////////////////////////////////////////////////////////// - -int main() { - char ch; - char last_eol=' '; - const char char10 = char(10); - const char char13 = char(13); - string line; - while (1 > 0) { - line = ""; - while (1 > 0) { - cin.get(ch); - if (cin.eof()) break; - if (ch == char13 || (ch == char10 - && (last_eol != char13))) { - last_eol = ch; - break; - } - if (isprint(ch)) line += ch; - if (ch == '\t') {line += ' '; line += ' '; line += ' '; line += ' ';} - } - cout << line << endl; - if (cin.eof()) break; - } -} diff --git a/tools/src/makedsp.cpp b/tools/src/makedsp.cpp deleted file mode 100755 index 86bb16775..000000000 --- a/tools/src/makedsp.cpp +++ /dev/null @@ -1,81 +0,0 @@ -/** - * @file makedsp.cpp - * - * Write a Win32 Visual Studio Project File with settings for Cantera - * - */ - -// copyright (c) 2001 California Institute of Technology - - -#ifdef WIN32 -#pragma warning(disable:4786) -#pragma warning(disable:4503) -#endif - -#include -#include -#include -using namespace std; - -int main() { - - char buf[500]; - for (int j = 0; j < 500; j++) buf[j] = ' '; - string line, projname, ctroot; - - // prompt for the project name - cout << "Project name: "; - cin >> projname; - - - // get the Cantera root directory either from environment - // variable CANTERA_ROOT (if set) or from user input - - const char* ctr; - int iroot = 0; - ctr = getenv("WIN_CANTERA_ROOT"); - if (ctr == 0) { - ctr = getenv("CANTERA_ROOT"); - iroot = 1; - } - if (ctr != 0) { - ctroot = ctr; - cout << "\nCantera root directory: " << ctroot; - cout << (iroot == 1 ? " (CANTERA_ROOT)" : " (WIN_CANTERA_ROOT)") << endl << endl; - } - else { - iroot = -1; - cout << "Cantera root directory: "; - cin >> ctroot; - } - - ifstream proto((ctroot+"/tools/src/proto.dsp").c_str()); - if (!proto) { - cout << "Error: file proto.dsp not found in " << ctroot << "/tools/src" << endl; - return 1; - } - - ofstream fout((projname+".dsp").c_str()); - while (!proto.eof()) { - proto.getline( buf,500); - line = buf; - int i; - while (i = line.find("__PROTO__"), i >=0) { - line.replace(i,9,projname); - } - while (i = line.find("__CANTERAROOT__"), i >=0) { - line.replace(i,15,ctroot); - } - fout << line << endl; - } - proto.close(); - fout.close(); - - cout << "created Visual Studio project file " << projname << ".dsp" << endl; - return 0; -} - - - - diff --git a/tools/src/newdsp.cpp b/tools/src/newdsp.cpp deleted file mode 100755 index c48ff4219..000000000 --- a/tools/src/newdsp.cpp +++ /dev/null @@ -1,140 +0,0 @@ -/** - * @file makedsp.cpp - * - * Write a Visual Studio Project File with settings for Cantera. This - * program writes a project file to build a console application only. - * - */ - -// copyright 2001 California Institute of Technology - - -#ifdef WIN32 -#pragma warning(disable:4786) -#pragma warning(disable:4503) -#endif - -#include -#include -#include -using namespace std; - -void write_prog(string fname); - -int main() { - - char buf[500]; - for (int j = 0; j < 500; j++) buf[j] = ' '; - string line, projname, projdir, ctroot; - - // prompt for the project name - cout << "Project name: "; - cin >> projname; - - // prompt for the output directory - cout << "Project directory (enter '.' for local directory): "; - cin >> projdir; - - // get the Cantera root directory either from environment - // variable CANTERA_ROOT (if set) or from user input - - const char* ctr; - int iroot = 0; - ctr = getenv("WIN_CANTERA_ROOT"); - if (ctr == 0) { - ctr = getenv("CANTERA_ROOT"); - iroot = 1; - } - if (ctr != 0) { - ctroot = ctr; - cout << "\nCantera root directory: " << ctroot; - cout << (iroot == 1 ? " (CANTERA_ROOT)" : " (WIN_CANTERA_ROOT)") << endl << endl; - } - else { - iroot = -1; - cout << "Cantera root directory: "; - cin >> ctroot; - } - -#ifdef CVF - ifstream proto((ctroot+"/tools/src/protocvf.dsp").c_str()); - if (!proto) { - cout << "Error: file protocvf.dsp not found in " << ctroot << "/tools/src" << endl; - return 1; - } -#else - ifstream proto((ctroot+"/tools/src/protocxx.dsp").c_str()); - if (!proto) { - cout << "Error: file protocxx.dsp not found in " - << ctroot << "/tools/src" << endl; - return 1; - } -#endif - - string fname, progname; - if (projdir != "." && projdir != "'.'") { - fname = projdir+"\\"+projname+".dsp"; - progname = projdir+"\\"+projname+".cpp"; - } - else { - fname = string(projname)+".dsp"; - progname = string(projname)+".cpp"; - } - ofstream fout(fname.c_str()); - while (!proto.eof()) { - proto.getline( buf,500); - line = buf; - int i; - while (i = line.find("__PROJECT__"), i >=0) { - line.replace(i,11,projname); - } - while (i = line.find("__CTROOT__"), i >=0) { - line.replace(i,10,ctroot); - } - fout << line << endl; - } - proto.close(); - fout.close(); - - // if main program file doesn't exist, create a prototype - ifstream fprog(progname.c_str()); - bool wrote_prog = false; - if (!fprog) { - write_prog(progname); - wrote_prog = true; - } - else - fprog.close(); - - cout << "created Developer Studio project file " - << fname; - if (wrote_prog) - cout << " and main program file " << progname; - cout << endl; - return 0; -} - -void write_prog(string fname) { - - ofstream f(fname.c_str()); - f << endl - << "#include \"Cantera.h\"" << endl - << "// include additional header files here if needed" << endl - << endl - << "int main(int argc, char** argv) {" << endl - << " try {" << endl - << " // your code goes here" << endl - << " return 0;" << endl - << " }" << endl - << " catch (CanteraError) {" << endl - << " Application::showErrors(cerr);" << endl - << " cerr << \"program terminating.\" << endl;" << endl - << " return -1;" << endl - << " }" << endl - << "}" << endl; - f.close(); -} - - - - diff --git a/tools/src/package4mac.in b/tools/src/package4mac.in deleted file mode 100644 index 4e5221ccf..000000000 --- a/tools/src/package4mac.in +++ /dev/null @@ -1,69 +0,0 @@ -#!/bin/sh - -INSTALL='@INSTALL@' - -PYVERSION=2.3 -PKGDIR=$HOME/Packages - -ctname=Cantera -mixname=MixMaster - -CTDIR=$PKGDIR/Cantera/root_dir/Applications/$ctname -PYDIR=$PKGDIR/Cantera/root_dir/Library/Python/$PYVERSION -RESDIR=$PKGDIR/Cantera/resources_dir - -#NUMPYDIR=$PKGDIR/Numeric/root_dir/Library/Python/$PYVERSION -#NUMRESDIR=$PKGDIR/Numeric/resources_dir - -NUMARRAYPYDIR=$PKGDIR/numarray/root_dir/Library/Python/$PYVERSION -NUMARRAYRESDIR=$PKGDIR/numarray/resources_dir - -# where Cantera has been installed -instdir=/Applications/Cantera - -pylibdir=/Library/Python/$PYVERSION - -$INSTALL -d $CTDIR -$INSTALL -d $PYDIR -$INSTALL -d $PYDIR -$INSTALL -d $RESDIR - -$INSTALL -d $NUMARRAYPYDIR -$INSTALL -d $NUMARRAYRESDIR - -rm -r -f $CTDIR/* -rm -r -f $PYDIR/* -rm -r -f $RESDIR/* -rm -r -f $NUMARRAYPYDIR/* -rm -r -f $NUMARRAYRESDIR/* - -$INSTALL -d $PYDIR/$ctname -$INSTALL -d $PYDIR/$mixname -$INSTALL -d $RESDIR - -$INSTALL -d $NUMARRAYPYDIR/numarray -$INSTALL -d $NUMARRAYRESDIR - -cp -R -f $instdir/* $CTDIR -rm -r -f $CTDIR/*.xml -rm -r -f $CTDIR/*.csv -cp -R -f $instdir/data/*.xml $CTDIR/data - -chmod +x $CTDIR/bin/* -rm -r -f $CTDIR/lib - -cp -R -f $PKGDIR/apps/* $CTDIR - -cp -R -f $pylibdir/Cantera/*.py $PYDIR/$ctname -cp -R -f $pylibdir/Cantera/_cantera.so $PYDIR/$ctname -cp -R -f $pylibdir/MixMaster/*.py $PYDIR/$mixname -cp -f $pylibdir/ctml_writer.py $PYDIR -cp -f ~/setup_cantera $CTDIR - -chmod +x @ctroot@/tools/src/postflight -cp -f @ctroot@/tools/src/postflight $RESDIR -cp -f @ctroot@/License.rtf $RESDIR - -cp -R -f $pylibdir/numarray/*.py $NUMARRAYPYDIR/numarray -cp -R -f $pylibdir/numarray/*.so $NUMARRAYPYDIR/numarray - diff --git a/tools/src/postflight b/tools/src/postflight deleted file mode 100755 index 9ebda4f13..000000000 --- a/tools/src/postflight +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -apps=$2Applications -cd $INSTALLER_TEMP -rm -f setup.py -cat > setup.py << EOF -try: - from distutils.core import setup - setup(name="Cantera Localization", - version="1.0", - description="Defines location of Cantera", - long_description=""" - """, - author="Prof. D. G. Goodwin, Caltech", - author_email="dgoodwin@caltech.edu", - url="http://www.cantera.org", - py_modules = ["cantera_loc"], - ) -except: - pass -EOF -rm -f cantera_loc.py -cat > cantera_loc.py << AOF -# Cantera localization module. -CANTERA_INSTALL_DIR='$apps/Cantera' -CANTERA_DATA='$apps/Cantera/data' -AOF -python setup.py install - - diff --git a/tools/src/proto.dsp b/tools/src/proto.dsp deleted file mode 100755 index dad645923..000000000 --- a/tools/src/proto.dsp +++ /dev/null @@ -1,103 +0,0 @@ -# Microsoft Developer Studio Project File - Name="__PROTO__" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=__PROTO__ - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "__PROTO__.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "__PROTO__.mak" CFG="__PROTO__ - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "__PROTO__ - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "__PROTO__ - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "__PROTO__ - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "__CANTERAROOT__/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib cantera.lib ckreader.lib ctlib.lib ctlapack.lib ctblas.lib cvode.lib recipes.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib cantera.lib ckreader.lib ctlib.lib ctlapack.lib ctblas.lib cvode.lib recipes.lib /nologo /subsystem:console /machine:I386 /out:"__PROTO__.exe" /libpath:"__CANTERAROOT__/lib" - -!ELSEIF "$(CFG)" == "__PROTO__ - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "__CANTERAROOT__/include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib cantera.lib ckreader.lib ctlib.lib ctlapack.lib ctblas.lib cvode.lib recipes.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib cantera.lib ckreader.lib ctlib.lib ctlapack.lib ctblas.lib cvode.lib recipes.lib /nologo /subsystem:console /debug /machine:I386 /out:"__PROTO__.exe" /pdbtype:sept /libpath:"__CANTERAROOT__/lib" - -!ENDIF - -# Begin Target - -# Name "__PROTO__ - Win32 Release" -# Name "__PROTO__ - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/tools/src/protocvf.dsp b/tools/src/protocvf.dsp deleted file mode 100755 index 3fcd08795..000000000 --- a/tools/src/protocvf.dsp +++ /dev/null @@ -1,103 +0,0 @@ -# Microsoft Developer Studio Project File - Name="__PROJECT__" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=__PROJECT__ - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "__PROJECT__.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "__PROJECT__.mak" CFG="__PROJECT__ - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "__PROJECT__ - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "__PROJECT__ - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "__PROJECT__ - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /include:"__CTROOT__\include\fortran\" /libs:dll /math_library:fast /nologo /threads /warn:nofileopt /module:"" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ctf.lib modules.lib /nologo /subsystem:console /machine:I386 /libpath:"__CTROOT__/lib" - -!ELSEIF "$(CFG)" == "__PROJECT__ - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /include:"__CTROOT__\include\fortran\" /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt /module:"" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ctf.lib modules.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /pdbtype:sept /libpath:"__CTROOT__/lib" - -!ENDIF - -# Begin Target - -# Name "__PROJECT__ - Win32 Release" -# Name "__PROJECT__ - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/tools/src/protocxx.cpp b/tools/src/protocxx.cpp deleted file mode 100755 index 9e91a007e..000000000 --- a/tools/src/protocxx.cpp +++ /dev/null @@ -1,13 +0,0 @@ - -#include "Cantera.h" -// include additional header files here if needed - -main(int argc, char** argv) { - try { - // your code goes here - } - catch (CanteraError) { - showErrors(cerr); - cerr << "program terminating." << endl; - } -} diff --git a/tools/src/protocxx.dsp b/tools/src/protocxx.dsp deleted file mode 100755 index 5398d9766..000000000 --- a/tools/src/protocxx.dsp +++ /dev/null @@ -1,108 +0,0 @@ -# Microsoft Developer Studio Project File - Name="__PROJECT__" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=__PROJECT__ - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "__PROJECT__.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "__PROJECT__.mak" CFG="__PROJECT__ - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "__PROJECT__ - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "__PROJECT__ - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "__PROJECT__ - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt /module:"" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "__CTROOT__/include" /I "__CTROOT__/Cantera/src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# SUBTRACT CPP /Z -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib cantera.lib ckreader.lib ctmath.lib ctlapack.lib ctblas.lib cvode.lib recipes.lib /nologo /subsystem:console /machine:I386 /libpath:"__CTROOT__/lib" - -!ELSEIF "$(CFG)" == "__PROJECT__ - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt /module:"" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "__CTROOT__/include" /I "__CTROOT__/Cantera/src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib cantera.lib ckreader.lib ctmath.lib ctlapack.lib ctblas.lib cvode.lib recipes.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /pdbtype:sept /libpath:"__CTROOT__/lib" - -!ENDIF - -# Begin Target - -# Name "__PROJECT__ - Win32 Release" -# Name "__PROJECT__ - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=.\__PROJECT__.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/tools/src/sample.mak.in b/tools/src/sample.mak.in deleted file mode 100755 index bf53ca20e..000000000 --- a/tools/src/sample.mak.in +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ or Fortran application to -# Cantera. -# -############################################################################# - -# the name of the executable program to be created -PROG_NAME = __PROGRAM__ - -# the object files to be linked together. -OBJS = __OBJS__ - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - - -############################################################################# - -# the Fortran compiler -FORT = @F77@ - -# Fortran compile flags -FORT_FLAGS = @FFLAGS@ - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ - - - -#------ you probably don't have to change anything below this line ----- - - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@CANTERA_LIBDIR@ - -# required Cantera libraries -CANTERA_LIBS = - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@CANTERA_INCDIR@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# how to compile Fortran source files to object files -.@F77_EXT@.@OBJ_EXT@: - $(FORT) -c $< $(FORT_FLAGS) - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) - -%.d: - g++ -MM $*.cpp > $*.d - -clean: - $(RM) $(OBJS) $(PROGRAM) - -depends: $(DEPENDS) - cat *.d > .depends - $(RM) $(DEPENDS) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - - diff --git a/tools/src/sample_f90.mak.in b/tools/src/sample_f90.mak.in deleted file mode 100755 index 62beb142a..000000000 --- a/tools/src/sample_f90.mak.in +++ /dev/null @@ -1,90 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a Fortran 90 application to -# Cantera. -# -############################################################################# - -# the name of the executable program to be created -PROG_NAME = __PROGRAM__ - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = __OBJS__ - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - - -############################################################################# - -# the Fortran compiler -FORT = @F90@ - -# Fortran compile flags -FORT_FLAGS = @FFLAGS@ - -# Fortran libraries -FORT_LIBS = @FLIBS@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = -lcvode -lrecipes @LAPACK_LIBRARY@ @BLAS_LIBRARY@ - -#------ you probably don't have to change anything below this line ----- - -# Fortran module directory -FTN_MODULE_DIR = @CANTERA_ROOT@/Cantera/fortran - -# Cantera modules -CT_MODULES = $(FTN_MODULE_DIR)/ctmixturemod.f \ - $(FTN_MODULE_DIR)/ctreactormod.f \ - $(FTN_MODULE_DIR)/ctfdevmod.f \ - $(FTN_MODULE_DIR)/ctmod.f - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@CANTERA_LIBDIR@ - -# required Cantera libraries -CANTERA_LIBS = -lctf -lcantera -lckreader - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@CANTERA_INCDIR@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# how to compile Fortran source files to object files -.@F77_EXT@.@OBJ_EXT@: - $(FORT) -c $< $(FORT_FLAGS) - -.@F90_EXT@.@OBJ_EXT@: - $(FORT) -c $< $(FORT_FLAGS) - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) - $(FORT) -o $(PROGRAM) $(CT_MODULES) $(OBJS) $(LF90_FLAGS) $(CANTERA_LIBS) $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ - -clean: - $(RM) $(OBJS) $(PROGRAM) - - - - - - diff --git a/tools/src/sundials_version.py b/tools/src/sundials_version.py deleted file mode 100644 index 0af19e049..000000000 --- a/tools/src/sundials_version.py +++ /dev/null @@ -1,45 +0,0 @@ -# -# find the version of the installed sundials package -# -import string -import sys -args = sys.argv - -def splitversion(s): - toks = s.split('.') - if len(toks) <> 3: - return (0,0,0) - return (string.atoi(toks[0]), string.atoi(toks[1]), string.atoi(toks[2])) - -sundials_home = args[1] -vinst = (0,0,0) - -try: - readme = open(sundials_home+'/README','r') -except: - print "can't open "+sundials_home+"/README" - sys.exit(-1) - -try: - lines = readme.readlines() - for line in lines: - toks = line.split() - if 'Release' in toks: - n = toks.index('Release') - version = toks[n+1] - if version[-1] == ',': - version = version[:-1] - vinst = splitversion(version) - break -except: - vinst = (-1,-1,-1) - -fout = open('sundials_includes.h','w') -fout.write('#define SUNDIALS_MAJOR_VERSION = '+`vinst[0]`+'\n#define SUNDIALS_MINOR_VERSION = '+`vinst[1]`+'\n#define SUNDIALS_REVISION = '+`vinst[2]`) - -fout.write('\n#define SUNDIALS_VERSION_'+`vinst[0]`+'\n') - -fout.close() - - - diff --git a/tools/src/validate.cpp b/tools/src/validate.cpp deleted file mode 100755 index ca1944445..000000000 --- a/tools/src/validate.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/** - * @file validate.cpp - * validate a CK-format reaction mechanism file - */ - -// Copyright 2001 California Institute of Technology - -#include -#include "Cantera.h" -#include "IdealGasMix.h" -#include -using namespace Cantera; - -int main(int argc, char** args) { - - try { - IdealGasMix gas; - char* infile = 0; - char* dbfile = 0; - bool ok = true; - if (argc == 1 || argc > 3) { - cout << "usage: validate " << endl; - return 0; - } - else if (argc == 2) { - infile = args[1]; - ok = gas.import(string(infile),"",true); - } - else if (argc == 3) { - infile = args[1]; - dbfile = args[2]; - ok = gas.import(string(infile),string(dbfile),true); - } - showErrors(cerr); - if (!ok) - cerr << infile << " contains errors" << endl; - else - cout << infile << " is valid." << endl; - return int(!ok); - } - catch (...) { - cerr << "exception raised." << endl; - showErrors(cerr); - } -} diff --git a/tools/templates/cxx/demo.mak.in b/tools/templates/cxx/demo.mak.in deleted file mode 100644 index 996dbad4a..000000000 --- a/tools/templates/cxx/demo.mak.in +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh - -# This Makefile builds a C++ application that uses Cantera. By -# default, the main program file is 'demo.cpp,' which prints out some -# properties of a reacting gas mixture. - -# To build program 'demo', simply type 'make', or 'make -f ' if this file is named something other than 'Makefile.' - -# Once you have verified that the demo runs, edit this file to replace -# object file 'demo.o' with your own object file or files. - - -#------------------------ edit this block --------------------------------- - -# the name of the executable program to be created -PROG_NAME = demo - -# the object files to be linked together. -OBJS = demo.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @LCXX_FLAGS@ @EXTRA_LINK@ - -#--------------------------------------------------------------------------- -# You probably don't need to edit anything below. - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@ct_libdir@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ct_incroot@ - -# flags passed to the C++ compiler/linker for the linking step -LCXXFLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXXFLAGS)\ - $(CANTERA_LIBS) $(LINK_OPTIONS) $(EXT_LIBS) \ - @LIBS@ $(LCXX_END_LIBS) - -%.d: - g++ -MM -I$(CANTERA_INCDIR) $*.cpp > $*.d - -clean: - $(RM) $(OBJS) $(PROGRAM) - -depends: $(DEPENDS) - cat *.d > .depends - $(RM) $(DEPENDS) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - - diff --git a/tools/templates/f77/README_WIN32.txt b/tools/templates/f77/README_WIN32.txt deleted file mode 100644 index 3cae54fc9..000000000 --- a/tools/templates/f77/README_WIN32.txt +++ /dev/null @@ -1,18 +0,0 @@ -CVF/VC++ 6.0 Build Procedure -============================ - -This demo program can be built on a PC using Compaq Visual Fortran 6.0 -and Microsoft Visual C++ 6.0, which share a common development -environment (Visual Studio). To build it, open project file -f77demo.dsp in Visual Studio by double-clicking its icon. Build the -project, and then run it. - -To modify this project file to build your own Fortran 77 application, -make a copy with a different name, open the copy in Visual Studio, -delete file demo.f and replace it with your Fortran program. If you -need to change demo_ftnlib.cpp, then also replace it with your -modified version. - -Note that the include and library directories are specified relative -to the location of the project file. If you move it to another -directory, you will need to update these locations under 'Settings'. diff --git a/tools/templates/f77/demo.mak.in b/tools/templates/f77/demo.mak.in deleted file mode 100644 index 885788cc8..000000000 --- a/tools/templates/f77/demo.mak.in +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/sh - -# This Makefile builds a Fortran 77 application that uses Cantera. By -# default, the main program file is 'demo.f,' which prints out some -# properties of a reacting gas mixture. It uses the library -# 'demo_ftnlib.cpp,' which contains Fortran-callable functions that -# are implemented with C++ calls to Cantera. - -# To build program 'demo', simply type 'make', or 'make -f ' if this file is named something other than 'Makefile.' - -# Once you have verified that the demo runs, edit this file to replace -# object file 'demo.o' with your own object file or files. You may -# continue to use 'demo_ftnlib' if it serves your needs, or else -# replace it with a different interface library. - - -#------------------------ edit this block --------------------------------- - -# the name of the executable program to be created -PROG_NAME = demo - -# the object files to be linked together. -OBJS = demo.o demo_ftnlib.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @LCXX_FLAGS@ @EXTRA_LINK@ - - -#--------------------------------------------------------------------------- -# You probably don't need to edit anything below. - - -# the Fortran compiler -FORT = @F77@ - -# Fortran compile flags -FORT_FLAGS = @FFLAGS@ - -# Fortran libraries used to link fortran main programs -# using the CXX linker -FORT_LIBS = @LCXX_FLIBS@ @FLIBS@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@ct_libdir@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ct_incroot@ - -# flags passed to the C++ compiler/linker for the linking step -LCXXFLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @LCXX_FLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# how to compile Fortran source files to object files -.@F77_EXT@.@OBJ_EXT@: - $(FORT) -c $< $(FORT_FLAGS) - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXXFLAGS) $(CANTERA_LIBS) $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ $(FORT_LIBS) - -%.d: - g++ -MM $*.cpp > $*.d - -clean: - $(RM) $(OBJS) $(PROGRAM) - -depends: $(DEPENDS) - cat *.d > .depends - $(RM) $(DEPENDS) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - - diff --git a/tools/templates/f77/f77demo.dsp b/tools/templates/f77/f77demo.dsp deleted file mode 100644 index c9a729eb6..000000000 --- a/tools/templates/f77/f77demo.dsp +++ /dev/null @@ -1,110 +0,0 @@ -# Microsoft Developer Studio Project File - Name="f77demo" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=f77demo - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "f77demo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "f77demo.mak" CFG="f77demo - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "f77demo - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "f77demo - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "f77demo - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../../include/cantera" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib cantera.lib cvode.lib ctlapack.lib ctmath.lib recipes.lib cxxutils.lib /nologo /subsystem:console /machine:I386 /libpath:"../../../lib/cantera" - -!ELSEIF "$(CFG)" == "f77demo - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "f77demo - Win32 Release" -# Name "f77demo - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=demo.f -# End Source File -# Begin Source File - -SOURCE=demo_ftnlib.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/tools/templates/f90/demo.mak.in b/tools/templates/f90/demo.mak.in deleted file mode 100644 index 42ae369c3..000000000 --- a/tools/templates/f90/demo.mak.in +++ /dev/null @@ -1,99 +0,0 @@ -#!/bin/sh - -# This Makefile builds a Fortran 90 application that uses Cantera. By -# default, the main program file is 'demo.f90,' which prints out some -# properties of a reacting gas mixture. - -# To build program 'demo', simply type 'make', or 'make -f ' if this file is named something other than 'Makefile.' - -# Once you have verified that the demo runs, edit this file to replace -# object file 'demo.o' with your own object file or files. - - -#------------------------ edit this block --------------------------------- - -# the name of the executable program to be created -PROG_NAME = demo - -# the object files to be linked together. -OBJS = demo.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @LCXX_FLAGS@ @EXTRA_LINK@ - -#--------------------------------------------------------------------------- -# You probably don't need to edit anything below. - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = -lfct -lclib @LOCAL_LIBS@ -lctcxx -lstdc++ @F90LIBS@ - -# the Fortran 90/95 compiler -F90 = @F90@ - -# Fortran libraries used to link fortran main programs -# using the CXX linker -FLIBS=@LCXX_FLIBS@ @FLIBS@ - -# Fortran compile flags -FORT_FLAGS = @F90FLAGS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@ct_libdir@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ct_incroot@ - -# the directory where Cantera Fortran 90 modules may be found. -CANTERA_MODULE_DIR=@ct_incroot@/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXXFLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ - -# how to compile C++ source files to object files -%.o : %.cpp - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# how to compile Fortran 90/95 source files to object files -%.o : %.f90 - $(F90) -c $< -I$(CANTERA_MODULE_DIR) $(FORT_FLAGS) - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -DEPENDS = $(OBJS:.o=.d) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXXFLAGS) $(CANTERA_LIBS) $(LINK_OPTIONS) \ - $(EXT_LIBS) $(FLIBS) @LIBS@ - -%.d : %.cpp - g++ -MM -I$(CANTERA_INCDIR) $*.cpp > $*.d - -clean: - $(RM) $(OBJS) $(PROGRAM) - -depends: $(DEPENDS) - cat *.d > .depends - $(RM) $(DEPENDS) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - - diff --git a/tools/testtools/Makefile.in b/tools/testtools/Makefile.in deleted file mode 100644 index 945b9857b..000000000 --- a/tools/testtools/Makefile.in +++ /dev/null @@ -1,53 +0,0 @@ -#/bin/sh - -LIBDIR = @buildlib@ -INCDIR = @ctroot@/build/include/cantera -BINDIR = @ctroot@/bin -BBINDIR = @buildbin@ -build_ck = @BUILD_CK@ - -PURIFY=@PURIFY@ - -LCXX_FLAGS = -L$(LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ -LOCAL_LIBS = -lcantera -lckreader @math_libs@ @LAPACK_LIBRARY@ @BLAS_LIBRARY@ -lctcxx - -LCXX_END_LIBS = @LCXX_END_LIBS@ - -OBJS = mdp_allo.o csvdiff.o tok_input_util.o -DEPENDS = $(OBJS:.o=.d) - -CXX_FLAGS=@CXXFLAGS@ -CONFIGDEFS=@DEFS@ - -# Optimization is turned off (-O0) because a strange interal compiler -# error results when using g++ 3.0 on Mac OS X. Optimization should -# not be needed here anyway. - -.cpp.o: - $(PURIFY) @CXX@ -c $< -I$(INCDIR) @CXXFLAGS@ -O0 - -all: $(BINDIR)/csvdiff $(BBINDIR)/csvdiff - -$(BINDIR)/csvdiff: mdp_allo.o csvdiff.o tok_input_util.o - $(PURIFY) @CXX@ -o $(BINDIR)/csvdiff mdp_allo.o csvdiff.o tok_input_util.o \ - $(LCXX_FLAGS) $(LCXX_END_LIBS) - -$(BBINDIR)/csvdiff: $(BINDIR)/csvdiff - cp -f $(BINDIR)/csvdiff $(BBINDIR) - -clean: - $(RM) *.o *.*~ csvdiff $(BINDIR)/csvdiff $(BBINDIR)/csvdiff - -%.d: - @CXX_DEPENDS@ -MM -I$(INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -depends: $(DEPENDS) - cat *.d &> .depends - $(RM) $(DEPENDS) - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif diff --git a/win32/README.vc7 b/win32/README.vc7 deleted file mode 100644 index 0166cf5f0..000000000 --- a/win32/README.vc7 +++ /dev/null @@ -1,97 +0,0 @@ - -Instructions for building under Visual C++ v.7 Without Fortran Support ----------------------------------------------------------------------------- - - -1) Checkout the regular Cantera distribution, and cd to the top directory. - cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co Cantera - cd Cantera - - -2) Remove the regular win32 directory and everything under it: - /bin/rm -rf win32 - -3) Checkout out the new win32 module, from Cantera's sourceforge distribution: - cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co win32 - - -4) Now, there should be a win32 directory located in the distribution's top - directory that has a different format than the previous one. - -5) Add support for command line execution of the VC++ compiler - a) Add the following lines to your .profile file: - # - VS_HOME='/cygdrive/c/Program Files/Microsoft Visual Studio .NET 2003' - export VS_HOME - # - PATH=$VS_HOME/Vc7/bin:$VS_HOME/Common7/IDE:$PATH - export PATH - # - - b) Make sure your windows user environmental variable, INCLUDE, contains - the default MSVC++7.0 include directories: - - Right-clicking "My Computer", selecting properties:advanced, - and open up Environmental Variables - The variable INCLUDE should contain these entries: - C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\include\ - - - -6) Go to config directory and type autoconf. Return to top directory. - -7) Go to win32/vc7 directory. - Copy configure.vc++ to the top Cantera's directory, edit it, and execute it - (note, it must be a unix text file to execute) - - cd win32/vc7 - cp configure.vc++ ../.. - cd ../.. - vi configure.vc++ - configure.vc++ - -8) Open up a windows explorer window, go to the directory win32/vc7, and double - click on Cantera.sln. - -9) Build the solution cantera from within MS VC++ v7.0. - -10) An error exit is generated by python v. 2.3's distutuils module - whenever a user module is compiled with MS VC++ v7.0. Note, python was - compiled with MS VC++ v6.0. I have found that just disabling the error - exit leads to acceptable behavior with no problems. - - To disable the error exit, edit the file: - /cygdrive/c/python23/Lib/distutils/msvccompiler.py - Comment out lines 211 to 215 by prepending with a "#". - - Note, this module generates compiler command lines for python. During - Cantera's python build process, the distutils module actually takes over - the build process from Cantera's makefile, and carries out the build/install - operations. Therefore, there is no way around this step. - - Note, python 2.4 is in alpha testing as of 9/2004. It's being built with - MSVC++ v7.0. I'm not sure if this means similar problems for Cantera users - who want to use python 2.4 with MSVC++ v6.0 in the future or not. - - (HKM -> I'll try to find out more information about this whole issue in - the near future i.e., is there an upgraded distutils module?) - -11) Go to the top of the Cantera distribution, and type: - - make win - - -12) Go to win32/vc7 and double click on cantera_examples.sln. - Build the cantera_examples from within MS VC++ v7.0. - -13) Go to the top of the Cantera distribution, and type - make win-install - -14) To test the installation, go to the top of the Cantera intallation. - Go into the test_problems directory and run all of the problems: - - cd test_problems - make test - - - diff --git a/win32/README.vc8 b/win32/README.vc8 deleted file mode 100644 index 0166cf5f0..000000000 --- a/win32/README.vc8 +++ /dev/null @@ -1,97 +0,0 @@ - -Instructions for building under Visual C++ v.7 Without Fortran Support ----------------------------------------------------------------------------- - - -1) Checkout the regular Cantera distribution, and cd to the top directory. - cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co Cantera - cd Cantera - - -2) Remove the regular win32 directory and everything under it: - /bin/rm -rf win32 - -3) Checkout out the new win32 module, from Cantera's sourceforge distribution: - cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co win32 - - -4) Now, there should be a win32 directory located in the distribution's top - directory that has a different format than the previous one. - -5) Add support for command line execution of the VC++ compiler - a) Add the following lines to your .profile file: - # - VS_HOME='/cygdrive/c/Program Files/Microsoft Visual Studio .NET 2003' - export VS_HOME - # - PATH=$VS_HOME/Vc7/bin:$VS_HOME/Common7/IDE:$PATH - export PATH - # - - b) Make sure your windows user environmental variable, INCLUDE, contains - the default MSVC++7.0 include directories: - - Right-clicking "My Computer", selecting properties:advanced, - and open up Environmental Variables - The variable INCLUDE should contain these entries: - C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\include\ - - - -6) Go to config directory and type autoconf. Return to top directory. - -7) Go to win32/vc7 directory. - Copy configure.vc++ to the top Cantera's directory, edit it, and execute it - (note, it must be a unix text file to execute) - - cd win32/vc7 - cp configure.vc++ ../.. - cd ../.. - vi configure.vc++ - configure.vc++ - -8) Open up a windows explorer window, go to the directory win32/vc7, and double - click on Cantera.sln. - -9) Build the solution cantera from within MS VC++ v7.0. - -10) An error exit is generated by python v. 2.3's distutuils module - whenever a user module is compiled with MS VC++ v7.0. Note, python was - compiled with MS VC++ v6.0. I have found that just disabling the error - exit leads to acceptable behavior with no problems. - - To disable the error exit, edit the file: - /cygdrive/c/python23/Lib/distutils/msvccompiler.py - Comment out lines 211 to 215 by prepending with a "#". - - Note, this module generates compiler command lines for python. During - Cantera's python build process, the distutils module actually takes over - the build process from Cantera's makefile, and carries out the build/install - operations. Therefore, there is no way around this step. - - Note, python 2.4 is in alpha testing as of 9/2004. It's being built with - MSVC++ v7.0. I'm not sure if this means similar problems for Cantera users - who want to use python 2.4 with MSVC++ v6.0 in the future or not. - - (HKM -> I'll try to find out more information about this whole issue in - the near future i.e., is there an upgraded distutils module?) - -11) Go to the top of the Cantera distribution, and type: - - make win - - -12) Go to win32/vc7 and double click on cantera_examples.sln. - Build the cantera_examples from within MS VC++ v7.0. - -13) Go to the top of the Cantera distribution, and type - make win-install - -14) To test the installation, go to the top of the Cantera intallation. - Go into the test_problems directory and run all of the problems: - - cd test_problems - make test - - - diff --git a/win32/vc6/all/all.dsp b/win32/vc6/all/all.dsp deleted file mode 100644 index 83d50f67a..000000000 --- a/win32/vc6/all/all.dsp +++ /dev/null @@ -1,63 +0,0 @@ -# Microsoft Developer Studio Project File - Name="all" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Generic Project" 0x010a - -CFG=all - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "all.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "all.mak" CFG="all - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "all - Win32 Release" (based on "Win32 (x86) Generic Project") -!MESSAGE "all - Win32 Debug" (based on "Win32 (x86) Generic Project") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -MTL=midl.exe - -!IF "$(CFG)" == "all - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "all - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" - -!ENDIF - -# Begin Target - -# Name "all - Win32 Release" -# Name "all - Win32 Debug" -# End Target -# End Project diff --git a/win32/vc6/blas/blas.dsp b/win32/vc6/blas/blas.dsp deleted file mode 100755 index cc3fbfe4e..000000000 --- a/win32/vc6/blas/blas.dsp +++ /dev/null @@ -1,265 +0,0 @@ -# Microsoft Developer Studio Project File - Name="blas" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=blas - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "blas.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "blas.mak" CFG="blas - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "blas - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "blas - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "blas - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctblas.lib" - -!ELSEIF "$(CFG)" == "blas - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctblas_d.lib" - -!ENDIF - -# Begin Target - -# Name "blas - Win32 Release" -# Name "blas - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\blas\dasum.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\daxpy.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dcabs1.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dcopy.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\ddot.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dgbmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dgemm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dgemv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dger.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dnrm2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\drot.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\drotg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\drotm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\drotmg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsbmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dscal.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsdot.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dspmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dspr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dspr2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dswap.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsymm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsymv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsyr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsyr2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsyr2k.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsyrk.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtbmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtbsv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtpmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtpsv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtrmm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtrmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtrsm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtrsv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dzasum.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dznrm2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\icamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\idamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\isamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\izamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\xerbla.f -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# End Target -# End Project diff --git a/win32/vc6/cantera.dsw b/win32/vc6/cantera.dsw deleted file mode 100755 index 3604eaeab..000000000 --- a/win32/vc6/cantera.dsw +++ /dev/null @@ -1,254 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "all"=.\all\all.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name blas - End Project Dependency - Begin Project Dependency - Project_Dep_Name cantera - End Project Dependency - Begin Project Dependency - Project_Dep_Name clib - End Project Dependency - Begin Project Dependency - Project_Dep_Name ctmath - End Project Dependency - Begin Project Dependency - Project_Dep_Name cvode - End Project Dependency - Begin Project Dependency - Project_Dep_Name cxxutils - End Project Dependency - Begin Project Dependency - Project_Dep_Name lapack - End Project Dependency - Begin Project Dependency - Project_Dep_Name oneD - End Project Dependency - Begin Project Dependency - Project_Dep_Name recipes - End Project Dependency - Begin Project Dependency - Project_Dep_Name transport - End Project Dependency - Begin Project Dependency - Project_Dep_Name zeroD - End Project Dependency - Begin Project Dependency - Project_Dep_Name tpx - End Project Dependency - Begin Project Dependency - Project_Dep_Name ck2cti - End Project Dependency - Begin Project Dependency - Project_Dep_Name converters - End Project Dependency -}}} - -############################################################################### - -Project: "blas"=.\blas\blas.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "cantera"=.\cantera\cantera.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "ck2cti"=.\ck2cti\ck2cti.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name cantera - End Project Dependency - Begin Project Dependency - Project_Dep_Name converters - End Project Dependency - Begin Project Dependency - Project_Dep_Name cxxutils - End Project Dependency - Begin Project Dependency - Project_Dep_Name tpx - End Project Dependency -}}} - -############################################################################### - -Project: "clib"=.\clib\clib.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "converters"=.\converters\converters.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "ctmath"=.\ctmath\ctmath.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "cvode"=.\cvode\cvode.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "cxxutils"=.\cxxutils\cxxutils.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "lapack"=.\lapack\lapack.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name blas - End Project Dependency -}}} - -############################################################################### - -Project: "oneD"=.\oneD\oneD.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "recipes"=.\recipes\recipes.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "tpx"=.\tpx\tpx.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "transport"=.\transport\transport.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "zeroD"=.\zeroD\zeroD.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/win32/vc6/cantera/cantera.dsp b/win32/vc6/cantera/cantera.dsp deleted file mode 100755 index 34f0879ca..000000000 --- a/win32/vc6/cantera/cantera.dsp +++ /dev/null @@ -1,673 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cantera" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=cantera - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "cantera.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cantera.mak" CFG="cantera - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cantera - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "cantera - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "cantera - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /D "USE_MKL" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cantera.lib" - -!ELSEIF "$(CFG)" == "cantera - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cantera_d.lib" - -!ENDIF - -# Begin Target - -# Name "cantera - Win32 Release" -# Name "cantera - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\src\BandMatrix.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ChemEquil.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ConstDensityThermo.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Constituents.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ct2ctml.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctml.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctvector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\CVode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\DenseMatrix.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\EdgeKinetics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Elements.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\FalloffFactory.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\funcs.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GasKinetics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GasKineticsWriter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GRI_30_Kinetics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Group.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\IdealGasPhase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ImplicitSurfChem.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\importCTML.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\InterfaceKinetics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\KineticsFactory.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\misc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Phase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\phasereport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\plots.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\PureFluidPhase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionPath.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionStoichMgr.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\sort.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SpeciesThermoFactory.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\State.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\StoichSubstance.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\stringUtils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SurfPhase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThermoFactory.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThermoPhase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\xml.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\Cantera\src\Array.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\BandMatrix.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ChemEquil.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ck2ctml.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\config.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ConstDensityThermo.h -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Constituent.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Constituents.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ct_defs.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctDebug.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctexceptions.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctlapack.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctml.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctvector.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvdense.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvdiag.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\CVode.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvode.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvspgmr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\DASPK.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\dense.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\DenseMatrix.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\EdgeKinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\EdgePhase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Elements.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Enhanced3BConc.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\exceptions.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Falloff.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\FalloffFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\FalloffMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\FuncEval.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GasKinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GasKineticsWriter.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\global.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GRI_30_Kinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Group.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\IdealGasPhase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ImplicitSurfChem.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\importCK.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\importCTML.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\importXML.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Integrator.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\InterfaceKinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\iterativ.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Jac.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Jac1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Jac2.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Kinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\KineticsFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\lapack.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\llnlmath.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\llnltyps.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\mix_defs.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MixFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MixTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MMCollisionInt.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MultiJac.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MultiResid.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MultiTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\NasaPoly1.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\NasaThermo.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Newton.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Newton1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\nvector.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Phase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\plots.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\polyfit.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\PropertyCalculator.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\PropertyUpdater.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\pureSubstances.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\RateCoeffMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\reaction_defs.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionData.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionMechanism.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionPath.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionStoichMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Reactor.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactorBase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\recipes.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Resid1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\RxnRates.h -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\RxnSpecies.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\sort.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SpeciesThermo.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SpeciesThermoFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SpeciesThermoMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\speciesThermoTypes.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\spgmr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\State.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\StFlow.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\StoichManager.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\stringUtils.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\surfKinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SurfPhase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\TempCacher.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\TempFuncMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThermoFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThermoPhase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThirdBodyMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\TigerPolynomial.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\TransportFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\units.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\utilities.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\vec_functions.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Wall.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\xml.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/cantera_examples/cantera_examples.dsw b/win32/vc6/cantera_examples/cantera_examples.dsw deleted file mode 100755 index 81b048bad..000000000 --- a/win32/vc6/cantera_examples/cantera_examples.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "examples"="..\..\examples\cxx\examples.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/win32/vc6/ck2cti/ck2cti.dsp b/win32/vc6/ck2cti/ck2cti.dsp deleted file mode 100644 index 85bde3794..000000000 --- a/win32/vc6/ck2cti/ck2cti.dsp +++ /dev/null @@ -1,107 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ck2cti" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=ck2cti - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ck2cti.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ck2cti.mak" CFG="ck2cti - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ck2cti - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "ck2cti - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ck2cti - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"../../build/bin/i686-pc-win32/ck2cti.exe" - -!ELSEIF "$(CFG)" == "ck2cti - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /out:"../../build/i686-pc-win32/bin/ck2cti_d.exe" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "ck2cti - Win32 Release" -# Name "ck2cti - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\tools\src\ck2cti.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vc6/ckreader/ckreader.dsp b/win32/vc6/ckreader/ckreader.dsp deleted file mode 100755 index 94a71af59..000000000 --- a/win32/vc6/ckreader/ckreader.dsp +++ /dev/null @@ -1,213 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ckreader" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=ckreader - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ckreader.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ckreader.mak" CFG="ckreader - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ckreader - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "ckreader - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ckreader - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD F90 /assume:underscore /iface:nomixed_str_len_arg /iface:cref /libs:static /math_library:fast /names:lowercase -# SUBTRACT F90 /threads -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /W3 /GX /I "../../include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\lib\ckreader.lib" - -!ELSEIF "$(CFG)" == "ckreader - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD F90 /assume:underscore /dbglibs /iface:nomixed_str_len_arg /iface:cref /names:lowercase -# SUBTRACT F90 /threads -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\lib\ckreader_d.lib" - -!ENDIF - -# Begin Target - -# Name "ckreader - Win32 Release" -# Name "ckreader - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\CKReader\src\atomicWeightDB.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\CKParser.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\ckr_utils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\CKReader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\filter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Reaction.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\thermoFunctions.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\writelog.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\CKReader\src\CKParser.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\CKParser.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\ckr_defs.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\ckr_defs.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\ckr_utils.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\ckr_utils.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\CKReader.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\CKReader.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\config.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\config.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Constituent.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Constituent.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Element.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Element.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Reaction.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Reaction.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Species.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Species.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\thermoFunctions.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\thermoFunctions.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\writelog.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/clib/clib.dsp b/win32/vc6/clib/clib.dsp deleted file mode 100644 index e8e00e5ba..000000000 --- a/win32/vc6/clib/clib.dsp +++ /dev/null @@ -1,161 +0,0 @@ -# Microsoft Developer Studio Project File - Name="clib" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=clib - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "clib.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "clib.mak" CFG="clib - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "clib - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "clib - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "clib - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/clib.lib" - -!ELSEIF "$(CFG)" == "clib - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/clib_d.lib" - -!ENDIF - -# Begin Target - -# Name "clib - Win32 Release" -# Name "clib - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ct.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctbdry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctfunc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctonedim.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctreactor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctrpath.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctsurf.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctxml.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\Storage.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\Cabinet.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctbdry.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\matlab\cantera\src\ctmatutils.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctreactor.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctrpath.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctxml.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\Storage.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/converters/converters.dsp b/win32/vc6/converters/converters.dsp deleted file mode 100644 index 022bbfb24..000000000 --- a/win32/vc6/converters/converters.dsp +++ /dev/null @@ -1,161 +0,0 @@ -# Microsoft Developer Studio Project File - Name="converters" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=converters - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "converters.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "converters.mak" CFG="converters - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "converters - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "converters - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "converters - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/converters.lib" - -!ELSEIF "$(CFG)" == "converters - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/converters_d.lib" - -!ENDIF - -# Begin Target - -# Name "converters - Win32 Release" -# Name "converters - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\atomicWeightDB.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ck2ct.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\CKParser.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ckr_utils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\CKReader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\Reaction.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\thermoFunctions.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\writelog.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ck2ct.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\CKParser.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ckr_defs.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ckr_utils.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\CKReader.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\Reaction.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\thermoFunctions.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\writelog.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/ct/ct.dsp b/win32/vc6/ct/ct.dsp deleted file mode 100755 index 085488451..000000000 --- a/win32/vc6/ct/ct.dsp +++ /dev/null @@ -1,109 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ct" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=ct - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ct.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ct.mak" CFG="ct - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ct - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "ct - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "ct - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /dll /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /dll /libs:static /math_library:fast /names:lowercase /nologo /warn:nofileopt -# SUBTRACT F90 /threads -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /Ob2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib dfor.lib /nologo /dll /machine:I386 /include:"__matherr" /out:"c:\winnt\system32\cantera14.dll" - -!ELSEIF "$(CFG)" == "ct - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /dll /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /dll /libs:static /names:lowercase /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib dfor.lib /nologo /dll /debug /machine:I386 /include:"__matherr" /out:"c:\winnt\system32\cantera14.dll" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "ct - Win32 Release" -# Name "ct - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vc6/ctmath/ctmath.dsp b/win32/vc6/ctmath/ctmath.dsp deleted file mode 100755 index 4279d776f..000000000 --- a/win32/vc6/ctmath/ctmath.dsp +++ /dev/null @@ -1,194 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ctmath" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=ctmath - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ctmath.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ctmath.mak" CFG="ctmath - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ctmath - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "ctmath - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ctmath - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctmath.lib" - -!ELSEIF "$(CFG)" == "ctmath - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:none /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /optimize:0 /threads /traceback /warn:argument_checking /warn:nofileopt -# SUBTRACT F90 /automatic /fast -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctmath_d.lib" - -!ENDIF - -# Begin Target - -# Name "ctmath - Win32 Release" -# Name "ctmath - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\math\daux.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\ddaspk.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dgbefa.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dgbsl.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dgefa.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dgesl.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dp1vlu.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dpcoef.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dpolft.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\fdump.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\idamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\j4save.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\mach.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\pcoef.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\polfit.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\pvalue.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xercnt.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xerhlt.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xermsg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xerprn.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xersve.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xgetua.f -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\ext\math\cblas.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\gmres.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/ctsetup/ctsetup.dsp b/win32/vc6/ctsetup/ctsetup.dsp deleted file mode 100755 index 53f6f3f69..000000000 --- a/win32/vc6/ctsetup/ctsetup.dsp +++ /dev/null @@ -1,106 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ctsetup" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=ctsetup - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ctsetup.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ctsetup.mak" CFG="ctsetup - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ctsetup - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "ctsetup - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ctsetup - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /math_library:fast /nologo /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"../../bin/ctsetup.exe" - -!ELSEIF "$(CFG)" == "ctsetup - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "ctsetup - Win32 Release" -# Name "ctsetup - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\tools\src\ctsetup.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vc6/cvode/cvode.dsp b/win32/vc6/cvode/cvode.dsp deleted file mode 100755 index 164b71d3f..000000000 --- a/win32/vc6/cvode/cvode.dsp +++ /dev/null @@ -1,195 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cvode" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=cvode - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "cvode.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cvode.mak" CFG="cvode - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cvode - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "cvode - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "cvode - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD F90 /assume:underscore /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /threads -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /I "..\..\ext\cvode\include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cvode.lib" - -!ELSEIF "$(CFG)" == "cvode - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD F90 /assume:underscore /dbglibs /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /threads -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "..\..\ext\cvode\include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cvode_d.lib" - -!ENDIF - -# Begin Target - -# Name "cvode - Win32 Release" -# Name "cvode - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\ext\cvode\source\band.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvband.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvbandpre.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvdense.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvdiag.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvode.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvspgmr.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\dense.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\iterativ.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\llnlmath.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\nvector.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\spgmr.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\ext\cvode\include\band.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvband.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvbandpre.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvdense.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvdiag.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvode.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvspgmr.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\dense.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\iterativ.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\llnlmath.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\llnltyps.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\nvector.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\spgmr.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/cxxutils/cxxutils.dsp b/win32/vc6/cxxutils/cxxutils.dsp deleted file mode 100644 index 085a66992..000000000 --- a/win32/vc6/cxxutils/cxxutils.dsp +++ /dev/null @@ -1,105 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cxxutils" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=cxxutils - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "cxxutils.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cxxutils.mak" CFG="cxxutils - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cxxutils - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "cxxutils - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "cxxutils - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cxxutils.lib" - -!ELSEIF "$(CFG)" == "cxxutils - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cxxutils_d.lib" - -!ENDIF - -# Begin Target - -# Name "cxxutils - Win32 Release" -# Name "cxxutils - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\cxx\src\cxxutils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\cxx\src\writelog.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# End Target -# End Project diff --git a/win32/vc6/cxxutils/cxxutils.mak b/win32/vc6/cxxutils/cxxutils.mak deleted file mode 100644 index dd7b7327c..000000000 --- a/win32/vc6/cxxutils/cxxutils.mak +++ /dev/null @@ -1,174 +0,0 @@ -# Microsoft Developer Studio Generated NMAKE File, Based on cxxutils.dsp -!IF "$(CFG)" == "" -CFG=cxxutils - Win32 Debug -!MESSAGE No configuration specified. Defaulting to cxxutils - Win32 Debug. -!ENDIF - -!IF "$(CFG)" != "cxxutils - Win32 Release" && "$(CFG)" != "cxxutils - Win32 Debug" -!MESSAGE Invalid configuration "$(CFG)" specified. -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cxxutils.mak" CFG="cxxutils - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cxxutils - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "cxxutils - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE -!ERROR An invalid configuration is specified. -!ENDIF - -!IF "$(OS)" == "Windows_NT" -NULL= -!ELSE -NULL=nul -!ENDIF - -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "cxxutils - Win32 Release" - -OUTDIR=.\Release -INTDIR=.\Release - -ALL : "..\..\lib\cxxutils.lib" - - -CLEAN : - -@erase "$(INTDIR)\cxxutils.obj" - -@erase "$(INTDIR)\vc60.idb" - -@erase "$(INTDIR)\writelog.obj" - -@erase "..\..\lib\cxxutils.lib" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -F90_PROJ=/compile_only /libs:dll /nologo /threads /warn:nofileopt /module:"Release/" /object:"Release/" -F90_OBJS=.\Release/ -CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\cxxutils.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c -BSC32=bscmake.exe -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cxxutils.bsc" -BSC32_SBRS= \ - -LIB32=link.exe -lib -LIB32_FLAGS=/nologo /out:"..\..\lib\cxxutils.lib" -LIB32_OBJS= \ - "$(INTDIR)\cxxutils.obj" \ - "$(INTDIR)\writelog.obj" - -"..\..\lib\cxxutils.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) - $(LIB32) @<< - $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) -<< - -!ELSEIF "$(CFG)" == "cxxutils - Win32 Debug" - -OUTDIR=.\Debug -INTDIR=.\Debug - -ALL : "..\..\lib\cxxutils_d.lib" - - -CLEAN : - -@erase "$(INTDIR)\cxxutils.obj" - -@erase "$(INTDIR)\vc60.idb" - -@erase "$(INTDIR)\vc60.pdb" - -@erase "$(INTDIR)\writelog.obj" - -@erase "..\..\lib\cxxutils_d.lib" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -F90_PROJ=/check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt /module:"Debug/" /object:"Debug/" /pdbfile:"Debug/DF60.PDB" -F90_OBJS=.\Debug/ -CPP_PROJ=/nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\cxxutils.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c -BSC32=bscmake.exe -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cxxutils.bsc" -BSC32_SBRS= \ - -LIB32=link.exe -lib -LIB32_FLAGS=/nologo /out:"..\..\lib\cxxutils_d.lib" -LIB32_OBJS= \ - "$(INTDIR)\cxxutils.obj" \ - "$(INTDIR)\writelog.obj" - -"..\..\lib\cxxutils_d.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) - $(LIB32) @<< - $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) -<< - -!ENDIF - -.c{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cpp{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cxx{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.c{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cpp{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cxx{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.SUFFIXES: .fpp - -.for{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.f{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.f90{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.fpp{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - - -!IF "$(NO_EXTERNAL_DEPS)" != "1" -!IF EXISTS("cxxutils.dep") -!INCLUDE "cxxutils.dep" -!ELSE -!MESSAGE Warning: cannot find "cxxutils.dep" -!ENDIF -!ENDIF - - -!IF "$(CFG)" == "cxxutils - Win32 Release" || "$(CFG)" == "cxxutils - Win32 Debug" -SOURCE=..\..\Cantera\cxx\cxxutils.cpp - -"$(INTDIR)\cxxutils.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\Cantera\cxx\writelog.cpp - -"$(INTDIR)\writelog.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - - -!ENDIF - diff --git a/win32/vc6/lapack/lapack.dsp b/win32/vc6/lapack/lapack.dsp deleted file mode 100755 index 257a65694..000000000 --- a/win32/vc6/lapack/lapack.dsp +++ /dev/null @@ -1,305 +0,0 @@ -# Microsoft Developer Studio Project File - Name="lapack" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=lapack - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "lapack.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "lapack.mak" CFG="lapack - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "lapack - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "lapack - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "lapack - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctlapack.lib" - -!ELSEIF "$(CFG)" == "lapack - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctlapack_d.lib" - -!ENDIF - -# Begin Target - -# Name "lapack - Win32 Release" -# Name "lapack - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\lapack\dbdsqr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgbsv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgbtf2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgbtrf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgbtrs.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgebd2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgebrd.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgelq2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgelqf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgelss.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgeqr2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgeqrf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgetf2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgetrf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgetri.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgetrs.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlabad.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlabrd.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlacpy.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlamch.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlange.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlapy2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlarf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlarfb.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlarfg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlarft.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlartg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlas2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlascl.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlaset.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasq1.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasq2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasq3.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasq4.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasrt.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlassq.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasv2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlaswp.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorg2r.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorgbr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorgl2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorglq.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorgqr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorm2r.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dormbr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorml2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dormlq.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dormqr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\drscl.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\ilaenv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\lsame.f -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# End Target -# End Project diff --git a/win32/vc6/oneD/oneD.dsp b/win32/vc6/oneD/oneD.dsp deleted file mode 100644 index 541c6675c..000000000 --- a/win32/vc6/oneD/oneD.dsp +++ /dev/null @@ -1,161 +0,0 @@ -# Microsoft Developer Studio Project File - Name="oneD" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=oneD - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "oneD.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "oneD.mak" CFG="oneD - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "oneD - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "oneD - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "oneD - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\oneD.lib" - -!ELSEIF "$(CFG)" == "oneD - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\oneD_d.lib" - -!ENDIF - -# Begin Target - -# Name "oneD - Win32 Release" -# Name "oneD - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\boundaries1D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\MultiJac.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\MultiNewton.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\newton_utils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\OneDim.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\refine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Sim1D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\StFlow.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Inlet1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Jac1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\MultiJac.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\MultiNewton.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Newton1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\OneDim.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Resid1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\StFlow.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/recipes/recipes.dsp b/win32/vc6/recipes/recipes.dsp deleted file mode 100755 index 5d00a6ae5..000000000 --- a/win32/vc6/recipes/recipes.dsp +++ /dev/null @@ -1,129 +0,0 @@ -# Microsoft Developer Studio Project File - Name="recipes" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=recipes - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "recipes.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "recipes.mak" CFG="recipes - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "recipes - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "recipes - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "recipes - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\recipes.lib" - -!ELSEIF "$(CFG)" == "recipes - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\recipes_d.lib" - -!ENDIF - -# Begin Target - -# Name "recipes - Win32 Release" -# Name "recipes - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\recipes\simp1.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\simp2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\simp3.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\simplx.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\splie2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\splin2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\spline.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\splint.f -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# End Target -# End Project diff --git a/win32/vc6/tpx/tpx.dsp b/win32/vc6/tpx/tpx.dsp deleted file mode 100644 index 3b20a86f8..000000000 --- a/win32/vc6/tpx/tpx.dsp +++ /dev/null @@ -1,157 +0,0 @@ -# Microsoft Developer Studio Project File - Name="tpx" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=tpx - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "tpx.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tpx.mak" CFG="tpx - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "tpx - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "tpx - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "tpx - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\tpx.lib" - -!ELSEIF "$(CFG)" == "tpx - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\tpx_d.lib" - -!ENDIF - -# Begin Target - -# Name "tpx - Win32 Release" -# Name "tpx - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\tpx\Hydrogen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Methane.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Nitrogen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Oxygen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Sub.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\utils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Water.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\ext\tpx\Hydrogen.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Methane.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Nitrogen.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Oxygen.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Sub.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\subs.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\utils.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Water.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/tpx/tpx.mak b/win32/vc6/tpx/tpx.mak deleted file mode 100644 index 24981837d..000000000 --- a/win32/vc6/tpx/tpx.mak +++ /dev/null @@ -1,224 +0,0 @@ -# Microsoft Developer Studio Generated NMAKE File, Based on tpx.dsp -!IF "$(CFG)" == "" -CFG=tpx - Win32 Debug -!MESSAGE No configuration specified. Defaulting to tpx - Win32 Debug. -!ENDIF - -!IF "$(CFG)" != "tpx - Win32 Release" && "$(CFG)" != "tpx - Win32 Debug" -!MESSAGE Invalid configuration "$(CFG)" specified. -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tpx.mak" CFG="tpx - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "tpx - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "tpx - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE -!ERROR An invalid configuration is specified. -!ENDIF - -!IF "$(OS)" == "Windows_NT" -NULL= -!ELSE -NULL=nul -!ENDIF - -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "tpx - Win32 Release" - -OUTDIR=.\Release -INTDIR=.\Release - -ALL : "..\..\lib\tpx.lib" - - -CLEAN : - -@erase "$(INTDIR)\Hydrogen.obj" - -@erase "$(INTDIR)\Methane.obj" - -@erase "$(INTDIR)\Nitrogen.obj" - -@erase "$(INTDIR)\Oxygen.obj" - -@erase "$(INTDIR)\Sub.obj" - -@erase "$(INTDIR)\utils.obj" - -@erase "$(INTDIR)\vc60.idb" - -@erase "$(INTDIR)\Water.obj" - -@erase "..\..\lib\tpx.lib" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -F90_PROJ=/assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /warn:nofileopt /module:"Release/" /object:"Release/" -F90_OBJS=.\Release/ -CPP_PROJ=/nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\tpx.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c -BSC32=bscmake.exe -BSC32_FLAGS=/nologo /o"$(OUTDIR)\tpx.bsc" -BSC32_SBRS= \ - -LIB32=link.exe -lib -LIB32_FLAGS=/nologo /out:"..\..\lib\tpx.lib" -LIB32_OBJS= \ - "$(INTDIR)\Methane.obj" \ - "$(INTDIR)\Nitrogen.obj" \ - "$(INTDIR)\Oxygen.obj" \ - "$(INTDIR)\Sub.obj" \ - "$(INTDIR)\utils.obj" \ - "$(INTDIR)\Water.obj" \ - "$(INTDIR)\Hydrogen.obj" - -"..\..\lib\tpx.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) - $(LIB32) @<< - $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) -<< - -!ELSEIF "$(CFG)" == "tpx - Win32 Debug" - -OUTDIR=.\Debug -INTDIR=.\Debug - -ALL : "..\..\lib\tpx_d.lib" - - -CLEAN : - -@erase "$(INTDIR)\Hydrogen.obj" - -@erase "$(INTDIR)\Methane.obj" - -@erase "$(INTDIR)\Nitrogen.obj" - -@erase "$(INTDIR)\Oxygen.obj" - -@erase "$(INTDIR)\Sub.obj" - -@erase "$(INTDIR)\utils.obj" - -@erase "$(INTDIR)\vc60.idb" - -@erase "$(INTDIR)\vc60.pdb" - -@erase "$(INTDIR)\Water.obj" - -@erase "..\..\lib\tpx_d.lib" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -F90_PROJ=/assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /traceback /warn:argument_checking /warn:nofileopt /module:"Debug/" /object:"Debug/" /pdbfile:"Debug/DF60.PDB" -F90_OBJS=.\Debug/ -CPP_PROJ=/nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\tpx.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c -BSC32=bscmake.exe -BSC32_FLAGS=/nologo /o"$(OUTDIR)\tpx.bsc" -BSC32_SBRS= \ - -LIB32=link.exe -lib -LIB32_FLAGS=/nologo /out:"..\..\lib\tpx_d.lib" -LIB32_OBJS= \ - "$(INTDIR)\Methane.obj" \ - "$(INTDIR)\Nitrogen.obj" \ - "$(INTDIR)\Oxygen.obj" \ - "$(INTDIR)\Sub.obj" \ - "$(INTDIR)\utils.obj" \ - "$(INTDIR)\Water.obj" \ - "$(INTDIR)\Hydrogen.obj" - -"..\..\lib\tpx_d.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) - $(LIB32) @<< - $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) -<< - -!ENDIF - -.c{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cpp{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cxx{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.c{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cpp{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cxx{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.SUFFIXES: .fpp - -.for{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.f{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.f90{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.fpp{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - - -!IF "$(NO_EXTERNAL_DEPS)" != "1" -!IF EXISTS("tpx.dep") -!INCLUDE "tpx.dep" -!ELSE -!MESSAGE Warning: cannot find "tpx.dep" -!ENDIF -!ENDIF - - -!IF "$(CFG)" == "tpx - Win32 Release" || "$(CFG)" == "tpx - Win32 Debug" -SOURCE=..\..\ext\tpx\Hydrogen.cpp - -"$(INTDIR)\Hydrogen.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Methane.cpp - -"$(INTDIR)\Methane.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Nitrogen.cpp - -"$(INTDIR)\Nitrogen.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Oxygen.cpp - -"$(INTDIR)\Oxygen.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Sub.cpp - -"$(INTDIR)\Sub.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\utils.cpp - -"$(INTDIR)\utils.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Water.cpp - -"$(INTDIR)\Water.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - - -!ENDIF - diff --git a/win32/vc6/transport/transport.dsp b/win32/vc6/transport/transport.dsp deleted file mode 100644 index 2461bb4cb..000000000 --- a/win32/vc6/transport/transport.dsp +++ /dev/null @@ -1,153 +0,0 @@ -# Microsoft Developer Studio Project File - Name="transport" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=transport - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "transport.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "transport.mak" CFG="transport - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "transport - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "transport - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "transport - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\transport.lib" - -!ELSEIF "$(CFG)" == "transport - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\transport_d.lib" - -!ENDIF - -# Begin Target - -# Name "transport - Win32 Release" -# Name "transport - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\DustyGasTransport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MixTransport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MMCollisionInt.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MultiTransport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\SolidTransport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\TransportFactory.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\DustyGasTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\FtnTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MixTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MMCollisionInt.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MultiTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\TransportBase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\TransportFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\TransportParams.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/zeroD/zeroD.dsp b/win32/vc6/zeroD/zeroD.dsp deleted file mode 100644 index 03f414c63..000000000 --- a/win32/vc6/zeroD/zeroD.dsp +++ /dev/null @@ -1,149 +0,0 @@ -# Microsoft Developer Studio Project File - Name="zeroD" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=zeroD - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "zeroD.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "zeroD.mak" CFG="zeroD - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "zeroD - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "zeroD - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "zeroD - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\zeroD.lib" - -!ELSEIF "$(CFG)" == "zeroD - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\zeroD_d.lib" - -!ENDIF - -# Begin Target - -# Name "zeroD - Win32 Release" -# Name "zeroD - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\FlowDevice.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Reactor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\ReactorBase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\ReactorNet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Wall.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\flowControllers.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\FlowDevice.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\PID_Controller.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Reactor.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\ReactorBase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\ReactorNet.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Reservoir.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Wall.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc7/SetupCantera/SetupCantera.vdproj b/win32/vc7/SetupCantera/SetupCantera.vdproj deleted file mode 100755 index 569e37eb6..000000000 --- a/win32/vc7/SetupCantera/SetupCantera.vdproj +++ /dev/null @@ -1,16924 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:701" -"ProjectType" = "8:{2C2AF0D9-9B47-4FE5-BEF2-169778172667}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCantera" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0286644D808546E59C95FE7B9B7A232F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0288F5F0AEF2495BA53D3C165E79D0AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04510DC7456C459E895E2178EF955D78" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_048942F8191B44939038E07F3C41D94D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_059198FAFB464F61988E32C60E43919C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05BC27CACC7F45BD9EFDB6490C3EC5DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05FE255C00F74DAEB6BFC00A32066DFA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0700963A1F1B41FFABC3911498DB18B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0936663A9C31411CA21989F4FA39A5F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_09812E60422340BF9B92C7BF4CDE6FC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C5AD82FE10848BA967AF0050B6BCD08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0CF3A0C352FA4A0FB705041957C9EE00" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D47388E1B474AF08F6DA0FE72025C42" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1176331BD6324C92BACD1F0805ABFA46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12349022365F4DF1A533277C07DDBA73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_135CC30D556E468298A4E1646E4B0135" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13B59406C1A74D4CA358FDF48F349761" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_159658AD53204EF58715D06753DE0026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1603140AC6F7489CA14D3F41F58E9379" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16126DCF89E8430A8B24ECCEE00D00DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_164F9AE8646F49A28EDD39E09AC0B23E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_165E0EA08F1B4F398EE7496331A1A51B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_172771DB7EE34270A0D796311102BE33" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17EFE54ABDB6418D84E64FF18DB0FE02" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1861CF609E4C4EE2B209A26A6705ACD5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_187CA9DA142B443496BC31D559FF6D97" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_188F8F797CE24E7C9FC6BD62D2B5D37F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A66CE0396934BBDBA728386725B2310" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AA05F39A2464BDD922D26B58FE78BC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AB392F5A076480D97046D01A587A4B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1BCF13AA12F344EAA567AE54F11CB0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DF1B93159BE475CA0438F31722F856B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1EC0682BF67E48639869FD490FC06F86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_218EB718190641D592079146D7F47C17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2278673C1CB94B89B0F33D7D7588F290" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2284F25E41194D2895B06C3FA1BC96DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_262DC17B610648E5A48002B469EC6A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_299CD5580EB645D191532FE4F24EC6CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29CA5AAAF8D342359823BB1B4CC30E95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A92BFBE1A3F4CC6AAF1EED621155E95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A9396D26DA740BB831E923D14573BC0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2FDECE537DED425EBD73BE8C715FFAE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31A618C156154A138E899086B9A8AC54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31B41886AF9A41B8AAA9C3624E7FD48C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3494F58B264F4001B9AEEEBD33A0843F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_35BB68CEE7844BC0BC845BEEE3A800D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3877AF8B51904A3BBC4727D4CAC03D90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_38B1A8CD480B4DBE9ABEA7D51A48769B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39593F8016464F6383246F854982073F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39905D4925564C469DE3CBE980978999" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_399AD2EA4A9E495B953EBC279475E4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AD5931AA5BC4F4981CDE7B72643E7CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BED1ACF1B8543C7AF5040D332A1E599" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CCADD10D5934D599E6AAFF04D6353B2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DCD90FBD1DF4FA588238C70E0BADBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E89277358E2422686E4ADF9C0FCCA25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F2025A866C24187833376E3E60EC4A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FDE004992FC47238D3E9C37E49C2579" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE8476E84424F12B0A26E454203FAD5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43113139A9474DD883EF5305014F1568" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43B63451B43146E08FD01ABAA5B61A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46756B27C91E4C17A9F3C06BCC6D9011" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_471DA45E05AD445EB7B143657DB4688C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4887AB1DD1874B449335FF13EE210FE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F7168452B334356BB62A52AEE0201A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5095A6E6BF554FEDBAEF263F05DDD77B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51DD3AC0619046728F688D9306D31844" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52C2FDDE33D146F7B4A53E45929E39B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52F132AB35554839AB7EB037617DB96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5348624853F34BCE9FCDEB2C053C1540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_550E0C20B3DD45E38E11C9AB4CA6B544" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_562372D5415546AD844E25834E0DECD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_57B5E8440B4D4CB2A04A543D12B02DC5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59C5E6BB66254AE1A6943516F13B4FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_627849EB38DD4A1D9DFE2E6E7DFFE041" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655F0B213A054795ACD83B755944E151" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_65A52D659E1642F8A7567FA7CC9B9189" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6693B16E7E2A4AE3ADC494334E18058F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6725A6F15136415BB26BADDD3CF96F66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6759CBA1D81D4C59A902AE29534B6255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A0835716DBD4D95BFAF15AAB6BBC2B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B3FE5F1CCAF42F99BDF0DBA4A5E7AD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B62C2B086DE4A74ABFDB909919F3B1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6CC5AB88FEE24B269BFAE0EB2130B7E3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6CF85F10BFE140FDA7DFDB6FBDAAEAA7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7170E7A643DA42188C7FC5398E2CC974" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7189BBF81A8B46F596C2D94D52CA15DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73BDDE5CAC1142768E793BC00B124032" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73DF85D78FB147FEBCDD6232AD5C85A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76E915885B634DC6B57F89520C4788A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77C0B7A9B02F4EDFA6786BD64727556E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78809E65EB414C2C85CFBE961F4B6D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78BA658B942543D689698300AB69FEFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CC1BF50A534D2DBB2B6196AC20A461" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_792574400ACB4125BBD9B4A006D4399E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85089C17D248A7A8A12641C4F86125" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85252DC549484891071BF330043EA4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A858331BD01492FB20FD23DB170F745" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A92B5B83A7347D1BFFD0CF1D104ABB2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B504B0354024FE1A61951F08701559B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B8DFC2B32884190B8B0EA34E86527C1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BEA3E9A57AA4F0796638074A3D5ECD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DAE868E207745638026B6656BF95857" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E05717504C340B8B9D2D8F634AAA31C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E5A64372F454B1D9BBD3B22AAAEBFFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F2A82BE842E42219D6520BB60A87F2B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F3AB5A8BAE44BCD84802649D2AEBF83" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_811F3F47C3D94B628C68557B0EB6B36B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81DA296ED6984B1EBE8917275886C78D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_820901EF2B7645DA9A49A95F3E9DE675" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_830D679F865D4CE288583F122140C202" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_83F9E2F2692A4018967CB9E659E6841F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_84CDFA9E0AB74435A0D7B55A48424D36" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85CCBC878A10483FB6D3D2E534E7248B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87199ECD95B94DDD883BEC7ADC66AE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8804860E9572497A8F08D2719B044B55" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A432F8B24A842C0A70A2D8FD906E798" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C095A81A32D48C6B28D0092BDDB6046" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C1EF93477A54EA39CFAE51E80858A96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8EF2E69F033240369A701C148ADBDB51" - "OwnerKey" = "8:_0288F5F0AEF2495BA53D3C165E79D0AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8EF2E69F033240369A701C148ADBDB51" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8EF2E69F033240369A701C148ADBDB51" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9266F7C8C9F04682AA878E3A5B9BD5C7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94C0079A642D4D829C612D5537F2BE96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95AD84099D86441F9B0C251039B1A63F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97529CA3195C44A3A6E57668BFF16B96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_979C4C61FFCC47BF9DD9142A747D70F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E71EC4B7404230AA4186AE74AE88F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_988AFC4E6A904FB582DBBF0DE7C251AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98C25E56E88B4569BB453DA1FCC0A406" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997EF831DA8A4F9C99259C70FFD9E6C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9AC9ABAE8E744589A8EABDBC4C1B063F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B44971E00A5481BBA5AFD0A2166D16F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BC3C81461D04065B1ADF2C07FFF293D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9EEBD642B960482EAD0FB73F1BCB91C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A10BC29DF66D4988A3DADBBF21E5DA4E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1555851966F4CBDB4BE3837641C843A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44EA116D8BD401B9F5CB43FD0A516EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A571DB581B7B4085B6EE29881A27A2D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A88814C184944C9FA3E00A2DE301BB17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9ADC45313704C27B5C74CAEEDB877A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA8F667920ED49919F2E5BD8D992450A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AC3CDAB9FDBF4EB79B35F1BEEA5DC02E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ACD48EEEC90A44B2B29B443AB7732B81" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD48B1B285214A3087453E547D606A85" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD5F1A421BBC46ACA15AEF28551896B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD850F3126CA46F9AEB85D4851B8149F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ADC23A23C6B24601989EAE9B94655BB3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE0F2B65F5C74B9F9E401125ECABDD41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF09E476CC624AE5AEFCFA41EB35F77E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B137545CCE204222B6876022AB4E6EAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B56AA2981640451A85D5AC8EFFE1D420" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7ADCE96BBE64258BC9786A36007F18B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B84D58C4160F48F987154A69BA00AA00" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B85407140BD04A45836DB232DCF3D374" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B903D3A5E3B84DF2A2022876EB2B2A7A" - "OwnerKey" = "8:_0288F5F0AEF2495BA53D3C165E79D0AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B903D3A5E3B84DF2A2022876EB2B2A7A" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B903D3A5E3B84DF2A2022876EB2B2A7A" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9AE5A1FF5C2466684573FE2ED6EC0BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA805C53980C41769659D085C5C8E0B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BB31E6359D3947BBA82A82468DDDA9DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC7DFDE6592D463B95C307DBE7305593" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD51D17637B84DF3BF949073F10AABFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF63955CB2CD4A96BD347F8EDA960614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0D8D2C4874C4694895DE76AF8ED8E8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0DEC2397FFE41CBB0E44D70AA977F41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C16D5B4AE2264855879001D44A80A573" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C21C0E1658844265AABB721C6F59AB24" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C24D1FF0D3AD482B8431D83957472356" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C269F9491DE449A1A5E37AA06459403F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C27D9E8782CE4CF79DF530130AE12A5A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C2ED89B3F43C45139AB75E0455F9B99C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C4E58CE5DB3F4304B465A828D1060AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6896DE4391E40FF980A950DDE8B43D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8198F923CDB401EAF223744653A6806" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9DA0D05D08A45289D0F4BB5BC06C183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB2FCC33698242D0BFDAA47D5C4B0F63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3B6BCC088B4734BEC63727D2F020C0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC933C89F0964841BECCF5EC39B34E8B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC9CBF448698418B83091250EA8BD78C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCDF5C1EFB75477BB295929481C75CC7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF97D7FBA79945A39E7B09721E7A2955" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D247511BB8FF4C1C83D7D1635C6FE9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3284BDBAC7847909EAF138FCCDD512F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D355259E0F5648D282E00FC99F109E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D383DFA2A9ED4C7EB07E1FEBF9B44DA3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D71476F12B73490A8B05B4EADA0EFE14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA6641D60355480A978E4B4464AA5DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA9C782985C041509BE9C4A7CB68A4A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DAC38C10430147CDB4A4DC9E5C3F3D18" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB1A6975F18441ED82BDF90E6D84EA3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC32635C462B40BEBEEC9176E79A9BB8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD3B996C17714923935F9497EC38D611" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE63219243264692A661312B00054503" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1D86563B904400180823C0486CD55B2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1E6F5ED150E4549979E0E3F9E6D2F67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2652D81AA404DA6956411A406CA467C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2D41C457EA34B59A9124357F2777DAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E37ED89108944B31B7B46A2F9EE37D3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3D9492FF8AB48679A4B287D1CE30AD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E427788001C549E18618B82C7E6C867C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E5C9596A592F453AA67CDC4AF6A18477" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E732EE7790B34E41B578A9388594D778" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E885D5C620AE4F7B824607C2AE4001AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB1CB1838E7449B4B3F05EF3BA026DC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB82DBEEDAE14B51840A9D7153E52BBB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB89828AF09E40FFA26D353F1088C41B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECE66A49B6414A0A92B3FB111288D7B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7C6EE3A3154788B22D1EF05798FD2E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF429C97CFE74E0E82042FE4C0B15F13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF86BEE203814AFB81EFC961B7A3E77E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F002FBC310564DAAB051DE2CC004A129" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F21DEB7BE0A943B5B4775AA069401FFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3A73DE374274D23B5B71D3950610F46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F70CE7A5A1844D3A99121A7A41ACAAF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F7465E4F2E894759A7C68D5C9B4C9733" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F91C5DD635704BBC8D09E808908B4859" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE3C8C6147AF406EB2F110453C3464EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF5DBBEF8B6B4C82A8B3FB62CE081988" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "Feature" - { - } - "File" - { - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0286644D808546E59C95FE7B9B7A232F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\speciesThermoTypes.h" - "TargetName" = "8:speciesThermoTypes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_04510DC7456C459E895E2178EF955D78" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_048942F8191B44939038E07F3C41D94D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Element.h" - "TargetName" = "8:Element.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_059198FAFB464F61988E32C60E43919C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\State.h" - "TargetName" = "8:State.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05BC27CACC7F45BD9EFDB6490C3EC5DB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\PureFluidPhase.h" - "TargetName" = "8:PureFluidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05FE255C00F74DAEB6BFC00A32066DFA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0700963A1F1B41FFABC3911498DB18B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0936663A9C31411CA21989F4FA39A5F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_09812E60422340BF9B92C7BF4CDE6FC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C5AD82FE10848BA967AF0050B6BCD08" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MultiTransport.h" - "TargetName" = "8:MultiTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0CF3A0C352FA4A0FB705041957C9EE00" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\L_matrix.h" - "TargetName" = "8:L_matrix.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0D47388E1B474AF08F6DA0FE72025C42" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine.py" - "TargetName" = "8:rankine.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1176331BD6324C92BACD1F0805ABFA46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MMCollisionInt.h" - "TargetName" = "8:MMCollisionInt.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_12349022365F4DF1A533277C07DDBA73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ConstDensityThermo.h" - "TargetName" = "8:ConstDensityThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_135CC30D556E468298A4E1646E4B0135" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_13B59406C1A74D4CA358FDF48F349761" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Constituents.h" - "TargetName" = "8:Constituents.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_159658AD53204EF58715D06753DE0026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Constituent.h" - "TargetName" = "8:Constituent.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1603140AC6F7489CA14D3F41F58E9379" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\buildwin.m" - "TargetName" = "8:buildwin.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16126DCF89E8430A8B24ECCEE00D00DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ThermoFactory.h" - "TargetName" = "8:ThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_164F9AE8646F49A28EDD39E09AC0B23E" - { - "SourcePath" = "8:..\\demos\\ReadMe.txt" - "TargetName" = "8:ReadMe.txt" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_165E0EA08F1B4F398EE7496331A1A51B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_utils.h" - "TargetName" = "8:ckr_utils.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_172771DB7EE34270A0D796311102BE33" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_17EFE54ABDB6418D84E64FF18DB0FE02" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor.cpp" - "TargetName" = "8:combustor.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_187CA9DA142B443496BC31D559FF6D97" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Elements.h" - "TargetName" = "8:Elements.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_188F8F797CE24E7C9FC6BD62D2B5D37F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A66CE0396934BBDBA728386725B2310" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1AA05F39A2464BDD922D26B58FE78BC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1AB392F5A076480D97046D01A587A4B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\FtnTransport.h" - "TargetName" = "8:FtnTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1BCF13AA12F344EAA567AE54F11CB0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKReader.h" - "TargetName" = "8:CKReader.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1DF1B93159BE475CA0438F31722F856B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1EC0682BF67E48639869FD490FC06F86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine.cpp" - "TargetName" = "8:rankine.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2278673C1CB94B89B0F33D7D7588F290" - { - "SourcePath" = "8:..\\demos\\flamespeed.vcproj" - "TargetName" = "8:flamespeed.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2284F25E41194D2895B06C3FA1BC96DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKParser.h" - "TargetName" = "8:CKParser.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_299CD5580EB645D191532FE4F24EC6CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_29CA5AAAF8D342359823BB1B4CC30E95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A92BFBE1A3F4CC6AAF1EED621155E95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\example_utils.h" - "TargetName" = "8:example_utils.h" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A9396D26DA740BB831E923D14573BC0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2FDECE537DED425EBD73BE8C715FFAE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31A618C156154A138E899086B9A8AC54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ctml.h" - "TargetName" = "8:ck2ctml.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31B41886AF9A41B8AAA9C3624E7FD48C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Domain1D.h" - "TargetName" = "8:Domain1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3494F58B264F4001B9AEEEBD33A0843F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\IdealGasPhase.h" - "TargetName" = "8:IdealGasPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_35BB68CEE7844BC0BC845BEEE3A800D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3877AF8B51904A3BBC4727D4CAC03D90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\LatticeSolidPhase.h" - "TargetName" = "8:LatticeSolidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_38B1A8CD480B4DBE9ABEA7D51A48769B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_39593F8016464F6383246F854982073F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\refine.h" - "TargetName" = "8:refine.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_39905D4925564C469DE3CBE980978999" - { - "SourcePath" = "8:..\\demos\\demo.vcproj" - "TargetName" = "8:demo.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_399AD2EA4A9E495B953EBC279475E4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3AD5931AA5BC4F4981CDE7B72643E7CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\RxnSpecies.h" - "TargetName" = "8:RxnSpecies.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3BED1ACF1B8543C7AF5040D332A1E599" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Solid1D.h" - "TargetName" = "8:Solid1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3DCD90FBD1DF4FA588238C70E0BADBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\function1.py" - "TargetName" = "8:function1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3E89277358E2422686E4ADF9C0FCCA25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SpeciesThermoInterpType.h" - "TargetName" = "8:SpeciesThermoInterpType.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3F2025A866C24187833376E3E60EC4A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\StoichSubstance.h" - "TargetName" = "8:StoichSubstance.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FDE004992FC47238D3E9C37E49C2579" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FE8476E84424F12B0A26E454203FAD5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\IncompressibleThermo.h" - "TargetName" = "8:IncompressibleThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_43113139A9474DD883EF5305014F1568" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Sim1D.h" - "TargetName" = "8:Sim1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_43B63451B43146E08FD01ABAA5B61A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Mu0Poly.h" - "TargetName" = "8:Mu0Poly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_46756B27C91E4C17A9F3C06BCC6D9011" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeeds.py" - "TargetName" = "8:soundSpeeds.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_471DA45E05AD445EB7B143657DB4688C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4887AB1DD1874B449335FF13EE210FE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4F7168452B334356BB62A52AEE0201A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SimpleThermo.h" - "TargetName" = "8:SimpleThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5095A6E6BF554FEDBAEF263F05DDD77B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_51DD3AC0619046728F688D9306D31844" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\CVode.h" - "TargetName" = "8:CVode.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_52C2FDDE33D146F7B4A53E45929E39B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_defs.h" - "TargetName" = "8:ckr_defs.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_52F132AB35554839AB7EB037617DB96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportBase.h" - "TargetName" = "8:TransportBase.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5348624853F34BCE9FCDEB2C053C1540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MixTransport.h" - "TargetName" = "8:MixTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_550E0C20B3DD45E38E11C9AB4CA6B544" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\OneDim.h" - "TargetName" = "8:OneDim.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_562372D5415546AD844E25834E0DECD4" - { - "SourcePath" = "8:..\\demos\\combustor.vcproj" - "TargetName" = "8:combustor.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_57B5E8440B4D4CB2A04A543D12B02DC5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\importCTML.h" - "TargetName" = "8:importCTML.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59C5E6BB66254AE1A6943516F13B4FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_627849EB38DD4A1D9DFE2E6E7DFFE041" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_655F0B213A054795ACD83B755944E151" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_65A52D659E1642F8A7567FA7CC9B9189" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowDevice.h" - "TargetName" = "8:FlowDevice.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6693B16E7E2A4AE3ADC494334E18058F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6725A6F15136415BB26BADDD3CF96F66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6759CBA1D81D4C59A902AE29534B6255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ShomateThermo.h" - "TargetName" = "8:ShomateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A0835716DBD4D95BFAF15AAB6BBC2B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6B3FE5F1CCAF42F99BDF0DBA4A5E7AD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\SolidTransport.h" - "TargetName" = "8:SolidTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6B62C2B086DE4A74ABFDB909919F3B1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6CC5AB88FEE24B269BFAE0EB2130B7E3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\NasaThermo.h" - "TargetName" = "8:NasaThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6CF85F10BFE140FDA7DFDB6FBDAAEAA7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7170E7A643DA42188C7FC5398E2CC974" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\diagnostics.h" - "TargetName" = "8:diagnostics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7189BBF81A8B46F596C2D94D52CA15DC" - { - "SourcePath" = "8:..\\demos\\NASA_coeffs.vcproj" - "TargetName" = "8:NASA_coeffs.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_73BDDE5CAC1142768E793BC00B124032" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_73DF85D78FB147FEBCDD6232AD5C85A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\writelog.h" - "TargetName" = "8:writelog.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_76E915885B634DC6B57F89520C4788A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77C0B7A9B02F4EDFA6786BD64727556E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiNewton.h" - "TargetName" = "8:MultiNewton.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78809E65EB414C2C85CFBE961F4B6D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78BA658B942543D689698300AB69FEFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ThermoPhase.h" - "TargetName" = "8:ThermoPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78CC1BF50A534D2DBB2B6196AC20A461" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_792574400ACB4125BBD9B4A006D4399E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A85089C17D248A7A8A12641C4F86125" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A85252DC549484891071BF330043EA4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Resid1D.h" - "TargetName" = "8:Resid1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A858331BD01492FB20FD23DB170F745" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\GeneralSpeciesThermo.h" - "TargetName" = "8:GeneralSpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A92B5B83A7347D1BFFD0CF1D104ABB2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ShomatePoly.h" - "TargetName" = "8:ShomatePoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7B504B0354024FE1A61951F08701559B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\mix_defs.h" - "TargetName" = "8:mix_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7B8DFC2B32884190B8B0EA34E86527C1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowReactor.h" - "TargetName" = "8:FlowReactor.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7BEA3E9A57AA4F0796638074A3D5ECD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7DAE868E207745638026B6656BF95857" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\MetalPhase.h" - "TargetName" = "8:MetalPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7E05717504C340B8B9D2D8F634AAA31C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7E5A64372F454B1D9BBD3B22AAAEBFFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1.cpp" - "TargetName" = "8:kinetics1.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7F2A82BE842E42219D6520BB60A87F2B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7F3AB5A8BAE44BCD84802649D2AEBF83" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\DustyGasTransport.h" - "TargetName" = "8:DustyGasTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_811F3F47C3D94B628C68557B0EB6B36B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_81DA296ED6984B1EBE8917275886C78D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_820901EF2B7645DA9A49A95F3E9DE675" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_830D679F865D4CE288583F122140C202" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed.cpp" - "TargetName" = "8:flamespeed.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_83F9E2F2692A4018967CB9E659E6841F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_84CDFA9E0AB74435A0D7B55A48424D36" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_85CCBC878A10483FB6D3D2E534E7248B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\LatticePhase.h" - "TargetName" = "8:LatticePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87199ECD95B94DDD883BEC7ADC66AE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8804860E9572497A8F08D2719B044B55" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Surf1D.h" - "TargetName" = "8:Surf1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8A432F8B24A842C0A70A2D8FD906E798" - { - "SourcePath" = "8:..\\demos\\kinetics1.vcproj" - "TargetName" = "8:kinetics1.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C095A81A32D48C6B28D0092BDDB6046" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C1EF93477A54EA39CFAE51E80858A96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_94C0079A642D4D829C612D5537F2BE96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SpeciesThermo.h" - "TargetName" = "8:SpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_95AD84099D86441F9B0C251039B1A63F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97529CA3195C44A3A6E57668BFF16B96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_979C4C61FFCC47BF9DD9142A747D70F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.7.0.win32-py2.5.exe" - "TargetName" = "8:Cantera-1.7.0.win32-py2.5.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97E71EC4B7404230AA4186AE74AE88F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_988AFC4E6A904FB582DBBF0DE7C251AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_98C25E56E88B4569BB453DA1FCC0A406" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reactor.h" - "TargetName" = "8:Reactor.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_997EF831DA8A4F9C99259C70FFD9E6C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\fixed_T_flame.py" - "TargetName" = "8:fixed_T_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9B44971E00A5481BBA5AFD0A2166D16F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9BC3C81461D04065B1ADF2C07FFF293D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SurfPhase.h" - "TargetName" = "8:SurfPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9EEBD642B960482EAD0FB73F1BCB91C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A10BC29DF66D4988A3DADBBF21E5DA4E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorFactory.h" - "TargetName" = "8:ReactorFactory.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A1555851966F4CBDB4BE3837641C843A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A44EA116D8BD401B9F5CB43FD0A516EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1.py" - "TargetName" = "8:npflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A571DB581B7B4085B6EE29881A27A2D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air.py" - "TargetName" = "8:free_h2_air.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A88814C184944C9FA3E00A2DE301BB17" - { - "SourcePath" = "8:..\\demos\\Rankine.vcproj" - "TargetName" = "8:Rankine.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A9ADC45313704C27B5C74CAEEDB877A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AA8F667920ED49919F2E5BD8D992450A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ctvector.h" - "TargetName" = "8:ctvector.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AC3CDAB9FDBF4EB79B35F1BEEA5DC02E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ACD48EEEC90A44B2B29B443AB7732B81" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AD48B1B285214A3087453E547D606A85" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\flowControllers.h" - "TargetName" = "8:flowControllers.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AD5F1A421BBC46ACA15AEF28551896B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Phase.h" - "TargetName" = "8:Phase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AD850F3126CA46F9AEB85D4851B8149F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ADC23A23C6B24601989EAE9B94655BB3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE0F2B65F5C74B9F9E401125ECABDD41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AF09E476CC624AE5AEFCFA41EB35F77E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B56AA2981640451A85D5AC8EFFE1D420" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\StFlow.h" - "TargetName" = "8:StFlow.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B7ADCE96BBE64258BC9786A36007F18B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B84D58C4160F48F987154A69BA00AA00" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\PID_Controller.h" - "TargetName" = "8:PID_Controller.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B85407140BD04A45836DB232DCF3D374" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\GasKineticsWriter.h" - "TargetName" = "8:GasKineticsWriter.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B9AE5A1FF5C2466684573FE2ED6EC0BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA805C53980C41769659D085C5C8E0B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BB31E6359D3947BBA82A82468DDDA9DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Crystal.h" - "TargetName" = "8:Crystal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BC7DFDE6592D463B95C307DBE7305593" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD51D17637B84DF3BF949073F10AABFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Wall.h" - "TargetName" = "8:Wall.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BF63955CB2CD4A96BD347F8EDA960614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C0D8D2C4874C4694895DE76AF8ED8E8D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C0DEC2397FFE41CBB0E44D70AA977F41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C1510D42AA964597A8CB449C6B94E86B" - { - "SourcePath" = "8:..\\demos\\CanteraDemos.sln" - "TargetName" = "8:CanteraDemos.sln" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C16D5B4AE2264855879001D44A80A573" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\thermoFunctions.h" - "TargetName" = "8:thermoFunctions.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C21C0E1658844265AABB721C6F59AB24" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C24D1FF0D3AD482B8431D83957472356" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C269F9491DE449A1A5E37AA06459403F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C27D9E8782CE4CF79DF530130AE12A5A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\EdgePhase.h" - "TargetName" = "8:EdgePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C2ED89B3F43C45139AB75E0455F9B99C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C4E58CE5DB3F4304B465A828D1060AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiJac.h" - "TargetName" = "8:MultiJac.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6896DE4391E40FF980A950DDE8B43D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C8198F923CDB401EAF223744653A6806" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C9DA0D05D08A45289D0F4BB5BC06C183" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SpeciesThermoFactory.h" - "TargetName" = "8:SpeciesThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB2FCC33698242D0BFDAA47D5C4B0F63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC3B6BCC088B4734BEC63727D2F020C0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ConstPressureReactor.h" - "TargetName" = "8:ConstPressureReactor.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC933C89F0964841BECCF5EC39B34E8B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportParams.h" - "TargetName" = "8:TransportParams.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCDF5C1EFB75477BB295929481C75CC7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF97D7FBA79945A39E7B09721E7A2955" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D247511BB8FF4C1C83D7D1635C6FE9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D3284BDBAC7847909EAF138FCCDD512F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D355259E0F5648D282E00FC99F109E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ct.h" - "TargetName" = "8:ck2ct.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D383DFA2A9ED4C7EB07E1FEBF9B44DA3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportFactory.h" - "TargetName" = "8:TransportFactory.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D71476F12B73490A8B05B4EADA0EFE14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorNet.h" - "TargetName" = "8:ReactorNet.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DA9C782985C041509BE9C4A7CB68A4A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DAC38C10430147CDB4A4DC9E5C3F3D18" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Species.h" - "TargetName" = "8:Species.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB1A6975F18441ED82BDF90E6D84EA3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DC32635C462B40BEBEEC9176E79A9BB8" - { - "SourcePath" = "8:..\\..\\..\\winconfig.h" - "TargetName" = "8:winconfig.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE63219243264692A661312B00054503" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ConstCpPoly.h" - "TargetName" = "8:ConstCpPoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1D86563B904400180823C0486CD55B2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1E6F5ED150E4549979E0E3F9E6D2F67" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2652D81AA404DA6956411A406CA467C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\NasaPoly1.h" - "TargetName" = "8:NasaPoly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2D41C457EA34B59A9124357F2777DAD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E37ED89108944B31B7B46A2F9EE37D3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3D9492FF8AB48679A4B287D1CE30AD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E427788001C549E18618B82C7E6C867C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorBase.h" - "TargetName" = "8:ReactorBase.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E5C9596A592F453AA67CDC4AF6A18477" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E732EE7790B34E41B578A9388594D778" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Reaction.h" - "TargetName" = "8:Reaction.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E885D5C620AE4F7B824607C2AE4001AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB1CB1838E7449B4B3F05EF3BA026DC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB82DBEEDAE14B51840A9D7153E52BBB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB89828AF09E40FFA26D353F1088C41B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ECE66A49B6414A0A92B3FB111288D7B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EF429C97CFE74E0E82042FE4C0B15F13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SpeciesThermoMgr.h" - "TargetName" = "8:SpeciesThermoMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F21DEB7BE0A943B5B4775AA069401FFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reservoir.h" - "TargetName" = "8:Reservoir.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F3A73DE374274D23B5B71D3950610F46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F70CE7A5A1844D3A99121A7A41ACAAF7" - { - "SourcePath" = "8:..\\..\\..\\tools\\templates\\cxx\\demo.cpp" - "TargetName" = "8:demo.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F7465E4F2E894759A7C68D5C9B4C9733" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F91C5DD635704BBC8D09E808908B4859" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Inlet1D.h" - "TargetName" = "8:Inlet1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FE3C8C6147AF406EB2F110453C3464EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FF5DBBEF8B6B4C82A8B3FB62CE081988" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_1DE66EEE44224B05A700D4E2E93A0FB7" - { - "Name" = "8:#1914" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:SystemFolder" - "Folders" - { - } - } - "{58C0ADA3-3CEA-43BD-A3B3-2EA121BC8217}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DB5A91AA0717429F8150BEDF3E9C5883" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_459DD0AF25C34F349354CA380B58D1B1" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_864A875C734E4F7993EF599A792089AF" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0A794889F1894108860FAF5B5C19F2FA" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B07B49F047FC40469C9073136E5D2AFF" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_E012FB4758FF455E92C3DDA25362EAA7" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_352275D48884496D8522F3217A13F3E6" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_09CB18C451814CA6BF0E730F04F71CE2" - { - "Name" = "8:oneD" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2B42505B039A49519786CA0D70490685" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - { - "Name" = "8:converters" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5E3DF16CA5C34645A89A802D45B18C80" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_8931165F9BF34082951685EBEB030820" - { - "Name" = "8:zeroD" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A11087DEA01D457E81EE4FABD41953BB" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_ED0B99EFCC2A42169D36F95C4BAEDF32" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A8EB504EB25E468D880A44F2A8718989" - "Folders" - { - } - } - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B5AFB668A86B4992A1E2A55DAE0CAA16" - { - "Name" = "8:templates" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_62F15E8A639B40A680E06DA189388AC0" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_91BFCC5A92684F63A014CEC3B9265F1A" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4550D17AF47F43D38272308352CF8718" - "Folders" - { - } - } - } - } - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_D46FB0DFF1A641E9BFF64D43063070E6" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_DF884E96ECD3496ABA2742BCED88AAF5" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D0580EB36EB74E3A86790E702522DD35" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_C549C449993E4410B91BDC9AF59B84C5" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{6318C429-3F69-486A-9987-4D1EE1CA9328}" - "PackageCode" = "8:{0468CAED-E609-40B8-90FF-0A935A842648}" - "UpgradeCode" = "8:{86C96BD0-4EFB-4B99-AB55-8EFAF9B39170}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "ProductVersion" = "8:1.5.4" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_99B1AD3DF5084F17BBA2DA9A8E4A758E" - { - "Name" = "8:C++ Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:_DF884E96ECD3496ABA2742BCED88AAF5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_8EF2E69F033240369A701C148ADBDB51" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_B903D3A5E3B84DF2A2022876EB2B2A7A" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_0288F5F0AEF2495BA53D3C165E79D0AF" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1DE66EEE44224B05A700D4E2E93A0FB7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_1861CF609E4C4EE2B209A26A6705ACD5" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctcxx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_218EB718190641D592079146D7F47C17" - { - "SourcePath" = "8:..\\Sundials\\Sundials_shared\\Release\\SUNDIALS_SHARED.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_262DC17B610648E5A48002B469EC6A57" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_3CCADD10D5934D599E6AAFF04D6353B2" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_9266F7C8C9F04682AA878E3A5B9BD5C7" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\cantera.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E719804C-1351-4C44-BD5E-611AF464CD20}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_9AC9ABAE8E744589A8EABDBC4C1B063F" - { - "SourcePath" = "8:..\\Sundials\\Cvodes\\Release\\CVODES.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_B137545CCE204222B6876022AB4E6EAD" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_CC9CBF448698418B83091250EA8BD78C" - { - "SourcePath" = "8:..\\Sundials\\Nvec_ser\\Release\\NVEC_SER.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_DA6641D60355480A978E4B4464AA5DF4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_DD3B996C17714923935F9497EC38D611" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_EE7C6EE3A3154788B22D1EF05798FD2E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_EF86BEE203814AFB81EFC961B7A3E77E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_F002FBC310564DAAB051DE2CC004A129" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc7/SetupCantera/SetupCanteraLite.vdproj b/win32/vc7/SetupCantera/SetupCanteraLite.vdproj deleted file mode 100755 index 7f2fb6886..000000000 --- a/win32/vc7/SetupCantera/SetupCanteraLite.vdproj +++ /dev/null @@ -1,11918 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:701" -"ProjectType" = "8:{2C2AF0D9-9B47-4FE5-BEF2-169778172667}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCanteraLite" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0700963A1F1B41FFABC3911498DB18B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0936663A9C31411CA21989F4FA39A5F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_09812E60422340BF9B92C7BF4CDE6FC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D47388E1B474AF08F6DA0FE72025C42" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1603140AC6F7489CA14D3F41F58E9379" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_188F8F797CE24E7C9FC6BD62D2B5D37F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A66CE0396934BBDBA728386725B2310" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AA05F39A2464BDD922D26B58FE78BC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DF1B93159BE475CA0438F31722F856B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DCD90FBD1DF4FA588238C70E0BADBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46756B27C91E4C17A9F3C06BCC6D9011" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76E915885B634DC6B57F89520C4788A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85089C17D248A7A8A12641C4F86125" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_811F3F47C3D94B628C68557B0EB6B36B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_820901EF2B7645DA9A49A95F3E9DE675" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_979C4C61FFCC47BF9DD9142A747D70F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E71EC4B7404230AA4186AE74AE88F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997EF831DA8A4F9C99259C70FFD9E6C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B44971E00A5481BBA5AFD0A2166D16F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1555851966F4CBDB4BE3837641C843A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44EA116D8BD401B9F5CB43FD0A516EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A571DB581B7B4085B6EE29881A27A2D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD850F3126CA46F9AEB85D4851B8149F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7ADCE96BBE64258BC9786A36007F18B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA98368496BD4C0995AED1119FD4CCFB" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA98368496BD4C0995AED1119FD4CCFB" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C21C0E1658844265AABB721C6F59AB24" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB2FCC33698242D0BFDAA47D5C4B0F63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3284BDBAC7847909EAF138FCCDD512F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA9C782985C041509BE9C4A7CB68A4A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3D9492FF8AB48679A4B287D1CE30AD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E885D5C620AE4F7B824607C2AE4001AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB1CB1838E7449B4B3F05EF3BA026DC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB89828AF09E40FFA26D353F1088C41B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0E87324D4DE4284B13211E9F8A0D954" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0E87324D4DE4284B13211E9F8A0D954" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCanteraLite.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "Feature" - { - } - "File" - { - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0700963A1F1B41FFABC3911498DB18B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0936663A9C31411CA21989F4FA39A5F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_09812E60422340BF9B92C7BF4CDE6FC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0D47388E1B474AF08F6DA0FE72025C42" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine.py" - "TargetName" = "8:rankine.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1603140AC6F7489CA14D3F41F58E9379" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\buildwin.m" - "TargetName" = "8:buildwin.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_188F8F797CE24E7C9FC6BD62D2B5D37F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A66CE0396934BBDBA728386725B2310" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1AA05F39A2464BDD922D26B58FE78BC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1DF1B93159BE475CA0438F31722F856B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3DCD90FBD1DF4FA588238C70E0BADBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\function1.py" - "TargetName" = "8:function1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_46756B27C91E4C17A9F3C06BCC6D9011" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeeds.py" - "TargetName" = "8:soundSpeeds.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_76E915885B634DC6B57F89520C4788A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A85089C17D248A7A8A12641C4F86125" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_811F3F47C3D94B628C68557B0EB6B36B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_820901EF2B7645DA9A49A95F3E9DE675" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_979C4C61FFCC47BF9DD9142A747D70F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.7.0.win32-py2.5.exe" - "TargetName" = "8:Cantera-1.7.0.win32-py2.5.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97E71EC4B7404230AA4186AE74AE88F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_997EF831DA8A4F9C99259C70FFD9E6C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\fixed_T_flame.py" - "TargetName" = "8:fixed_T_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9B44971E00A5481BBA5AFD0A2166D16F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A1555851966F4CBDB4BE3837641C843A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A44EA116D8BD401B9F5CB43FD0A516EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1.py" - "TargetName" = "8:npflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A571DB581B7B4085B6EE29881A27A2D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air.py" - "TargetName" = "8:free_h2_air.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AD850F3126CA46F9AEB85D4851B8149F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B7ADCE96BBE64258BC9786A36007F18B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C21C0E1658844265AABB721C6F59AB24" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB2FCC33698242D0BFDAA47D5C4B0F63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D3284BDBAC7847909EAF138FCCDD512F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DA9C782985C041509BE9C4A7CB68A4A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3D9492FF8AB48679A4B287D1CE30AD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E885D5C620AE4F7B824607C2AE4001AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB1CB1838E7449B4B3F05EF3BA026DC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB89828AF09E40FFA26D353F1088C41B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_1DE66EEE44224B05A700D4E2E93A0FB7" - { - "Name" = "8:#1914" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:SystemFolder" - "Folders" - { - } - } - "{58C0ADA3-3CEA-43BD-A3B3-2EA121BC8217}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - } - } - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_D46FB0DFF1A641E9BFF64D43063070E6" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_DF884E96ECD3496ABA2742BCED88AAF5" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D0580EB36EB74E3A86790E702522DD35" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_C549C449993E4410B91BDC9AF59B84C5" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{6318C429-3F69-486A-9987-4D1EE1CA9328}" - "PackageCode" = "8:{0468CAED-E609-40B8-90FF-0A935A842648}" - "UpgradeCode" = "8:{86C96BD0-4EFB-4B99-AB55-8EFAF9B39170}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "ProductVersion" = "8:1.5.4" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:_DF884E96ECD3496ABA2742BCED88AAF5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_BA98368496BD4C0995AED1119FD4CCFB" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_F0E87324D4DE4284B13211E9F8A0D954" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1DE66EEE44224B05A700D4E2E93A0FB7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc7/Sundials/CVODES/CVODES.vcproj b/win32/vc7/Sundials/CVODES/CVODES.vcproj deleted file mode 100644 index b38f23dd4..000000000 --- a/win32/vc7/Sundials/CVODES/CVODES.vcproj +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj b/win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj deleted file mode 100644 index 8d062044f..000000000 --- a/win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/IDA/IDA.vcproj b/win32/vc7/Sundials/IDA/IDA.vcproj deleted file mode 100644 index 14159829f..000000000 --- a/win32/vc7/Sundials/IDA/IDA.vcproj +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/KINSOL/KINSOL.vcproj b/win32/vc7/Sundials/KINSOL/KINSOL.vcproj deleted file mode 100644 index c8fe2ef95..000000000 --- a/win32/vc7/Sundials/KINSOL/KINSOL.vcproj +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj b/win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj deleted file mode 100644 index 5a9cf47d0..000000000 --- a/win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj b/win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj deleted file mode 100644 index d903e9a9f..000000000 --- a/win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/sundials/sundials_config.h b/win32/vc7/Sundials/sundials/sundials_config.h deleted file mode 100644 index 4dd4c912a..000000000 --- a/win32/vc7/Sundials/sundials/sundials_config.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * ----------------------------------------------------------------- - * $Revision: 1.1 $ - * $Date: 2006/11/13 19:46:18 $ - * ----------------------------------------------------------------- - * Programmer(s): Aaron Collier @ LLNL - * ----------------------------------------------------------------- - * Copyright (c) 2005, The Regents of the University of California. - * Produced at the Lawrence Livermore National Laboratory. - * All rights reserved. - * For details, see sundials/shared/LICENSE. - *------------------------------------------------------------------ - * SUNDIALS configuration header file - *------------------------------------------------------------------ - */ - -/* Define SUNDIALS version number */ -#define SUNDIALS_PACKAGE_VERSION "2.2.0" - -/* FCMIX: Define Fortran name-mangling macro */ -#define F77_FUNC(name,NAME) name ## _ -#define F77_FUNC_(name,NAME) name ## _ - -/* FCMIX: Define case of function names */ - - -/* FCMIX: Define number of underscores to append to function names */ - - -/* Define precision of SUNDIALS data type 'realtype' */ -#define SUNDIALS_DOUBLE_PRECISION 1 - -/* Use generic math functions */ -#define SUNDIALS_USE_GENERIC_MATH 1 - -/* FNVECTOR: Allow user to specify different MPI communicator */ -#define SUNDIALS_MPI_COMM_F2C 0 diff --git a/win32/vc7/base/base.vcproj b/win32/vc7/base/base.vcproj deleted file mode 100755 index 8333c6437..000000000 --- a/win32/vc7/base/base.vcproj +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cantera.sln b/win32/vc7/cantera.sln deleted file mode 100755 index 06220e67b..000000000 --- a/win32/vc7/cantera.sln +++ /dev/null @@ -1,207 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NVEC_SER", "Sundials\NVEC_SER\NVEC_SER.vcproj", "{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SUNDIALS_SHARED", "Sundials\SUNDIALS_SHARED\SUNDIALS_SHARED.vcproj", "{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CVODES", "Sundials\CVODES\CVODES.vcproj", "{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base\base.vcproj", "{4D98F045-AD21-4286-9BCD-5A071E732BFA}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug.ActiveCfg = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug.Build.0 = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release.ActiveCfg = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release.Build.0 = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug.ActiveCfg = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug.Build.0 = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release.ActiveCfg = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release.Build.0 = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug.ActiveCfg = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug.Build.0 = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release.ActiveCfg = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release.Build.0 = Release|Win32 - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug.ActiveCfg = Debug - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug.Build.0 = Debug - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Release.ActiveCfg = Release - {4D98F045-AD21-4286-9BCD-5A071E732BFA}.Debug.ActiveCfg = Debug|Win32 - {4D98F045-AD21-4286-9BCD-5A071E732BFA}.Debug.Build.0 = Debug|Win32 - {4D98F045-AD21-4286-9BCD-5A071E732BFA}.Release.ActiveCfg = Release|Win32 - {4D98F045-AD21-4286-9BCD-5A071E732BFA}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc7/cantera/cantera.vcproj b/win32/vc7/cantera/cantera.vcproj deleted file mode 100755 index ee3f2e975..000000000 --- a/win32/vc7/cantera/cantera.vcproj +++ /dev/null @@ -1,530 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cantera_examples.sln b/win32/vc7/cantera_examples.sln deleted file mode 100755 index ee7d1dc3f..000000000 --- a/win32/vc7/cantera_examples.sln +++ /dev/null @@ -1,69 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "diamondSurf", "diamondSurf\diamondSurf.vcproj", "{D600ECB2-D432-4E4D-9D70-BF94AEF31485}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "silane_equil", "silane_equil\silane_equil.vcproj", "{290DC5E5-0016-4CCF-84D5-6B997DD3664A}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin\surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cxx_examples", "cxx_examples\cxx_examples.vcproj", "{0E635864-A310-4468-9D97-9CE67B078C97}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug.ActiveCfg = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug.Build.0 = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release.ActiveCfg = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release.Build.0 = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug.ActiveCfg = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug.Build.0 = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release.ActiveCfg = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release.Build.0 = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug.ActiveCfg = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug.Build.0 = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release.ActiveCfg = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release.Build.0 = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug.ActiveCfg = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug.Build.0 = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release.ActiveCfg = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release.Build.0 = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug.ActiveCfg = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug.Build.0 = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release.ActiveCfg = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release.Build.0 = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug.ActiveCfg = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug.Build.0 = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release.ActiveCfg = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc7/cantera_no_sundials.sln b/win32/vc7/cantera_no_sundials.sln deleted file mode 100755 index 650a0169a..000000000 --- a/win32/vc7/cantera_no_sundials.sln +++ /dev/null @@ -1,180 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cvode", "cvode\cvode.vcproj", "{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} = {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{F7607AF2-705A-4046-B7EC-067DEE3BB79F}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.ActiveCfg = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.Build.0 = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.ActiveCfg = Release|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.Build.0 = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32 - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Debug.ActiveCfg = Debug - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Release.ActiveCfg = Release - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc7/ck2cti/ck2cti.vcproj b/win32/vc7/ck2cti/ck2cti.vcproj deleted file mode 100755 index c9907c056..000000000 --- a/win32/vc7/ck2cti/ck2cti.vcproj +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/clib/clib.vcproj b/win32/vc7/clib/clib.vcproj deleted file mode 100755 index b127f2765..000000000 --- a/win32/vc7/clib/clib.vcproj +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/config_h/config_h.vcproj b/win32/vc7/config_h/config_h.vcproj deleted file mode 100755 index 09921d2e7..000000000 --- a/win32/vc7/config_h/config_h.vcproj +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/config_h/docopy.cmd b/win32/vc7/config_h/docopy.cmd deleted file mode 100644 index a6ee5f7c2..000000000 --- a/win32/vc7/config_h/docopy.cmd +++ /dev/null @@ -1,6 +0,0 @@ -cd ..\..\.. -copy winconfig.h config.h -cd ext\f2c_libs -copy arith.hwin32 arith.h -cd ..\..\win32\vc7\config_h -echo 'ok' > status diff --git a/win32/vc7/configure.vc++ b/win32/vc7/configure.vc++ deleted file mode 100755 index 5f445b0f9..000000000 --- a/win32/vc7/configure.vc++ +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh -# -# -# Sample bourne shell wrapper around Cantera's configure -# shell command, used for building and installing Cantera -# using MS VC++, without fortran support. -# Copy this file to the top directory of the Cantera distribution. -# Edit a few directory locations indicated below. Then execute it -# after autoconf is run. -# -# Tell Cantera you will be using a VC++ compiler to compile and link -# all of the programs -# -USE_VISUAL_STUDIO="y" -export USEVISUALSTUDIO -# -# Specify the root directory: Will need adjusting -# -CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop" -export CANTERA_ROOT -# -# Specify the install directory: Will need adjusting -# -CANTERA_INSTALL_DIR="C:/vc_env/Cantera" -export CANTERA_INSTALL_DIR -# -# -# PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -PYTHON_CMD="c:/python24/python.exe" -export PYTHON_CMD -# -# WIN_PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -WIN_PYTHON_CMD='C:/Python24/python' -export WIN_PYTHON_CMD -# -# These 2 next lines tells Cantera and Python where to install -# the Cantera python modules. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR -# -PYTHON_SITE_PACKAGE_TOPDIR="C:\Python24" -export PYTHON_SITE_PACKAGE_TOPDIR -# -# No matlab toolbox in this script. However, if you have matlab -# on your machine, you can change the "n" to a "y". -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX -# -# Indicate that you will be using the clib.dll -# -USE_DLL="y" -export USE_DLL -# -# -CXXFLAGS="-g" -export CXXFLAGS -# -# -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - - -# -# Call the configure command at the top of the Cantera distribution -# in a cygwin shell -# -./preconfig -# diff --git a/win32/vc7/converters/converters.vcproj b/win32/vc7/converters/converters.vcproj deleted file mode 100755 index 5a4364a44..000000000 --- a/win32/vc7/converters/converters.vcproj +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/csvdiff/csvdiff.vcproj b/win32/vc7/csvdiff/csvdiff.vcproj deleted file mode 100755 index 3af50507e..000000000 --- a/win32/vc7/csvdiff/csvdiff.vcproj +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cti2ctml/cti2ctml.vcproj b/win32/vc7/cti2ctml/cti2ctml.vcproj deleted file mode 100755 index 0cdc981f1..000000000 --- a/win32/vc7/cti2ctml/cti2ctml.vcproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/ctmatlab/ctmatlab.vcproj b/win32/vc7/ctmatlab/ctmatlab.vcproj deleted file mode 100755 index a60108911..000000000 --- a/win32/vc7/ctmatlab/ctmatlab.vcproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/ctmatlab/runmlab.cmd b/win32/vc7/ctmatlab/runmlab.cmd deleted file mode 100755 index 0355181b1..000000000 --- a/win32/vc7/ctmatlab/runmlab.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cd ..\..\..\Cantera\matlab\cantera -echo 'delete me!' > ctmethods.mexw32 -echo 'delete me!' > ctmethods.dll -%MATLAB_CMD% -nodisplay -nosplash -nojvm -r buildwin -echo 'ok' > status diff --git a/win32/vc7/ctpython/ctpython.vcproj b/win32/vc7/ctpython/ctpython.vcproj deleted file mode 100755 index 63927b32e..000000000 --- a/win32/vc7/ctpython/ctpython.vcproj +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/ctpython/runpython.cmd b/win32/vc7/ctpython/runpython.cmd deleted file mode 100755 index edb0b07b1..000000000 --- a/win32/vc7/ctpython/runpython.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cd ..\..\..\Cantera\python -%PYTHON_CMD% winsetup.py build -%PYTHON_CMD% winsetup.py bdist_wininst -%PYTHON_CMD% winsetup.py install -echo 'ok' > status diff --git a/win32/vc7/cvode/cvode.vcproj b/win32/vc7/cvode/cvode.vcproj deleted file mode 100755 index 543629dcc..000000000 --- a/win32/vc7/cvode/cvode.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cxx_examples/cxx_examples.vcproj b/win32/vc7/cxx_examples/cxx_examples.vcproj deleted file mode 100755 index 31e872dde..000000000 --- a/win32/vc7/cxx_examples/cxx_examples.vcproj +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cxxutils/cxxutils.vcproj b/win32/vc7/cxxutils/cxxutils.vcproj deleted file mode 100755 index 73dc431d0..000000000 --- a/win32/vc7/cxxutils/cxxutils.vcproj +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/CanteraDemos.sln b/win32/vc7/demos/CanteraDemos.sln deleted file mode 100755 index fc9c792d7..000000000 --- a/win32/vc7/demos/CanteraDemos.sln +++ /dev/null @@ -1,61 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "demo", "demo.vcproj", "{F0FBA57E-6E65-46E6-9DDD-2625E7082189}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "combustor", "combustor.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flamespeed", "flamespeed.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics1", "kinetics1.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NASA_coeffs", "NASA_coeffs.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rankine", "Rankine.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.ActiveCfg = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.Build.0 = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.ActiveCfg = Release|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc7/demos/NASA_coeffs.vcproj b/win32/vc7/demos/NASA_coeffs.vcproj deleted file mode 100644 index d2f08d3cd..000000000 --- a/win32/vc7/demos/NASA_coeffs.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/Rankine.vcproj b/win32/vc7/demos/Rankine.vcproj deleted file mode 100755 index 72d74ffc6..000000000 --- a/win32/vc7/demos/Rankine.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/ReadMe.txt b/win32/vc7/demos/ReadMe.txt deleted file mode 100755 index 91c0ae7cf..000000000 --- a/win32/vc7/demos/ReadMe.txt +++ /dev/null @@ -1,12 +0,0 @@ -The project setttings assume Cantera is installed in C:\CANTERA. -If this is not the case, edit the project properties before building. - -The project settings that differ from the defaults are: - -1) use of multithreaded DLL system libraries -2) specification of the Cantera libraries as additional - input for the linker -3) specification of the Cantera include and lib directories. - -These changes to the default project settings need to be made whenever -you create a new project that you want to link to Cantera. \ No newline at end of file diff --git a/win32/vc7/demos/combustor.vcproj b/win32/vc7/demos/combustor.vcproj deleted file mode 100644 index 19dbf9fa2..000000000 --- a/win32/vc7/demos/combustor.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/demo.vcproj b/win32/vc7/demos/demo.vcproj deleted file mode 100755 index 1a94d3b8e..000000000 --- a/win32/vc7/demos/demo.vcproj +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/flamespeed.vcproj b/win32/vc7/demos/flamespeed.vcproj deleted file mode 100644 index e6a7b1e7c..000000000 --- a/win32/vc7/demos/flamespeed.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/kinetics1.vcproj b/win32/vc7/demos/kinetics1.vcproj deleted file mode 100644 index f55ac2420..000000000 --- a/win32/vc7/demos/kinetics1.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/diamondSurf/diamondSurf.vcproj b/win32/vc7/diamondSurf/diamondSurf.vcproj deleted file mode 100755 index 523ad49c1..000000000 --- a/win32/vc7/diamondSurf/diamondSurf.vcproj +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_arithchk/f2c_arithchk.vcproj b/win32/vc7/f2c_arithchk/f2c_arithchk.vcproj deleted file mode 100755 index bac420c77..000000000 --- a/win32/vc7/f2c_arithchk/f2c_arithchk.vcproj +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_blas/f2c_blas.vcproj b/win32/vc7/f2c_blas/f2c_blas.vcproj deleted file mode 100755 index f1c4206ef..000000000 --- a/win32/vc7/f2c_blas/f2c_blas.vcproj +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_lapack/f2c_lapack.vcproj b/win32/vc7/f2c_lapack/f2c_lapack.vcproj deleted file mode 100755 index a64d8a712..000000000 --- a/win32/vc7/f2c_lapack/f2c_lapack.vcproj +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_libs/f2c_libs.vcproj b/win32/vc7/f2c_libs/f2c_libs.vcproj deleted file mode 100755 index 906b1d0db..000000000 --- a/win32/vc7/f2c_libs/f2c_libs.vcproj +++ /dev/null @@ -1,618 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_math/f2c_math.vcproj b/win32/vc7/f2c_math/f2c_math.vcproj deleted file mode 100755 index 912f80e60..000000000 --- a/win32/vc7/f2c_math/f2c_math.vcproj +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_recipes/f2c_recipes.vcproj b/win32/vc7/f2c_recipes/f2c_recipes.vcproj deleted file mode 100755 index 7d06008a0..000000000 --- a/win32/vc7/f2c_recipes/f2c_recipes.vcproj +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/oneD/oneD.vcproj b/win32/vc7/oneD/oneD.vcproj deleted file mode 100755 index 96e52d493..000000000 --- a/win32/vc7/oneD/oneD.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/prepreconfig.vc++ b/win32/vc7/prepreconfig.vc++ deleted file mode 100755 index 8cdc8f15e..000000000 --- a/win32/vc7/prepreconfig.vc++ +++ /dev/null @@ -1,92 +0,0 @@ -#!/bin/sh -# -# -# Sample bourne shell wrapper around Cantera's configure -# shell command, used for building and installing Cantera -# using MS VC++, without fortran support. -# Copy this file to the top directory of the Cantera distribution. -# Edit a few directory locations indicated below. Then execute it -# after autoconf is run. -# -# Tell Cantera you will be using a VC++ compiler to compile and link -# all of the programs -# -USE_VISUAL_STUDIO="y" -export USE_VISUAL_STUDIO -# -# Specify the root directory: Will need adjusting -# -CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop" -export CANTERA_ROOT -# -# Specify the install directory: Will need adjusting -# -CANTERA_INSTALL_DIR="C:/vc_env/Cantera" -export CANTERA_INSTALL_DIR -# -# -# PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -PYTHON_CMD="c:/python24/python.exe" -export PYTHON_CMD -# -# WIN_PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -WIN_PYTHON_CMD='C:/Python24/python' -export WIN_PYTHON_CMD -# -# These 2 next lines tells Cantera and Python where to install -# the Cantera python modules. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR -# -PYTHON_SITE_PACKAGE_TOPDIR="C:\Python24" -export PYTHON_SITE_PACKAGE_TOPDIR -# -# No matlab toolbox in this script. However, if you have matlab -# on your machine, you can change the "n" to a "y". -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX -# -# Indicate that you will be using the clib.dll -# -USE_DLL="y" -export USE_DLL -# -# HKM -> note config chokes on cl.exe . It can't interpret the -# needed command line arguments. -#CXX="cl.exe" -#export CXX -#CC="cl.exe" -#export CC -# -CXXFLAGS="-g" -export CXXFLAGS -# -# -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - - -# -# Call the configure command at the top of the Cantera distribution -# in a cygwin shell -# -./preconfig -# diff --git a/win32/vc7/pycantera/pycantera.vcproj b/win32/vc7/pycantera/pycantera.vcproj deleted file mode 100755 index da7753671..000000000 --- a/win32/vc7/pycantera/pycantera.vcproj +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/silane_equil/silane_equil.vcproj b/win32/vc7/silane_equil/silane_equil.vcproj deleted file mode 100755 index 3dd13631e..000000000 --- a/win32/vc7/silane_equil/silane_equil.vcproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/surfkin/surfkin.vcproj b/win32/vc7/surfkin/surfkin.vcproj deleted file mode 100755 index ed24c55c2..000000000 --- a/win32/vc7/surfkin/surfkin.vcproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/tpx/tpx.vcproj b/win32/vc7/tpx/tpx.vcproj deleted file mode 100755 index be24a2f2f..000000000 --- a/win32/vc7/tpx/tpx.vcproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/transport/transport.vcproj b/win32/vc7/transport/transport.vcproj deleted file mode 100755 index 225a99dc0..000000000 --- a/win32/vc7/transport/transport.vcproj +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/zeroD/zeroD.vcproj b/win32/vc7/zeroD/zeroD.vcproj deleted file mode 100755 index 2f7f998b6..000000000 --- a/win32/vc7/zeroD/zeroD.vcproj +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/SetupAlt/SetupAlt.vdproj b/win32/vc8/SetupAlt/SetupAlt.vdproj deleted file mode 100755 index 83c2f5de0..000000000 --- a/win32/vc8/SetupAlt/SetupAlt.vdproj +++ /dev/null @@ -1,4075 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupAlt" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_016BF741228240B090BCD4D7E43E0617" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0267994AD98C45358411C6CFC9E15DB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0394BA5AEDF94DE4BB1F707051A0BF40" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_040F8411747946F9A7AB19EA47F9ADB5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A5B62C8EC224229B5E66084FF4CF60D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D2749B358EA48FA907E73CCC5E76685" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11DDA274C3B6474B95D7EDFE7300F95A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12403720D98540F2812E4E7439B6751F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_140781B9B3484CA68405E6D3BA915BD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1787727F92AB49FB98426AC1A89212FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1924D5D1E15E4E2AB4CBA083E92D06DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_194D7781A1504802950A57617F3803D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B1C547CA8A541F4929C67E9F5E5045C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1BAA7E404EAE447EAEFBCF8518EA2786" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C90DF5CA01C4496A9D4B6102CE332DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F4612D0C9664A2BBDF46FDE0E47197A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_251556D9F2A347BEAD4511F19E415E60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_28FCD7BF1D31414D90897D02FBD77FCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BF387E7EFBD4956831F6221A82D225C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3237A2C7A1E34294A6036D4038565E7B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_337207A3891F4F9C85930F92585617A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34195374892A4F0F9F0D9FCA8850806D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_35CF7BBB7404402AB9B3FB182CE0DED2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36127E024A664A5CB103245E82802CF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BC45D1B3ACE4C9A80DDEE61EE23A78C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C91E0477BC14872ACD37CD343D3D4CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CD6FF055B5B4AB690661A939C85883B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DEA4FE3159344CF8369AA1F21EE9964" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FB9909E94B644B5B82DD9038328CEB4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_421582413A6242EF991CE5B829FE38EE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42578737079441D1A5F907D95B107FC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4539B98F10D740A38BE7DEE1BCE77591" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46DBD1FBB3524C31B381BFB4AA533323" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_473E1D967D32402882A992A6D0FBF1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B8B9F3A5884477CB80CD8D14D4DDC08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DD98C4B7BB8429F93A59FA18D9649B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5055125EFD7E429AA9D4DBB1BC7406EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53AD0637C9B740479861456773F7B9A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_541D0767D9F1499BB09273009849F0BE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58A932EB4E1E449680B4DD3A6A8CFC83" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_598FA02302B04EE38F62677041423E94" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A300E7D02704491A0A32DAE2BB9D534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_62F18C5430DC48738D7BE1E1A0D3ECC5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_637E39E029B14732B842FCA2AB74D296" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_656908993C744FE1A978650E4C953A14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_69CA98595D8B48D983452C774C376100" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B5FBE05852D4011A456EF23AFF27E17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E60AA15A9A042A585E81C0836E653BD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E8F0F781C1B46E4911062BBCD802DCE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72F1BA82A24541C790221A73AC104B8F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_730A4008B8B74BA39E907A7FB65EC116" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76F02165C4E9437E86A2A9253187092A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77B41774ABD849DBA3C771A2CD7A8DFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7989815E2DE749508AB5BF0F05E7D6A0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7C243BF834B7407997BD25D7071D6469" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D468710990042AB91B96EEFD4AC35B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_829AF8F376754502896F9336B571338D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_83E76E90C6D94DD081FE6157A7DDA3B9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_84F622105F2C4FE29031016239A839E3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85D87FAD439648EFB0811C40A87151E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8697BE6257C9401685E4E0220AB23AA7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_892B6E46A9484E109A9681CEFE133F04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8AC7EF4B012D433F87F23EB58F51A175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CD98F7218C14B5FBFE98C94975F0A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8ED1D5F624D54FCD85135E204A4FB022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8FE240FF73304491A921BD7476D52240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8FF5AF961F594D02A20A21768CEBBD19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94F6A284E5DC47A8A2759FEEB905AA10" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99981AFE42C54B08A60126BEE0B4CEDD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F3307068F6B4E989FFBCFEB1865ACC7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F8316476F1347FB89A80840B73023B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9FB7136577424D92A91097DB19EDC141" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4563B38F1DB4E8AB153D7309733EBC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A82C1EAC0A7D469EBB4A8FB7C9D1CB2A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A84087F9AEE24B71AA7C713BB3680F98" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9F85CD88E684D8DA467D131D514B6FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA61CA354DFD4B1CA176A96F0DEAFA78" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB57FE9F67374DC9B8085E21DFC4F6A0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AC7BE2665DD344C280A0C73101AE104F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF6865D3523F47E5B357929751063D07" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0E3E21A78834BEDAFFA77B307466CCB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B1B835A98AD54E84A33081A1E3BC5629" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B31831F006164D769BE97C7DEEAB13A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B576D9C732F74817BE3E8BE63D0D1826" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B646D778CCC84815B42BCD49474D204F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6B96C4C9A984EB79D57FC86740D93BD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7EBF05DCDFA49009396C5D2DC7D6EB5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8BC4E0F3EFF4666B73864B0C6785229" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B92640FD361B4715B1A20BE2E6BD4CEB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9FAF2F52483495C85D75C9A156A5149" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA01BB3FF79044AE802F6D32D28F76A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD83EDABC8954180931F6FA2B3FE5DE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDF2CCD7BC7447599BC8441395A01883" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C32709EAD92448CB832ED2B6E93C8E96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7F7589E71D4447FBCCEE9F915EEC196" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C85EFC4356FC4AD18B631A5DAF62FD91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C87BA17FF7AE423A8C9A694A7847BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEA66E470BAB4769A256643DF951B3AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32309A01A4F4FE4A567902BB84ECC25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D405A42D256D4E4BA48B749EC9A24281" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D638545EDD7F4A4BA10B0960EA9D1B98" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6D4A31528DA4A83A2463BC320F475CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA0EDC01F30D493180CC25074A5B0CE0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF2C58804FF54B6195C64483DDF16189" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0BE4100AAA5408E9B9466D67FC12149" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E5DC35C0A47C48A68752CD419EE8D3F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E7B921419638499F80914800219B6A1A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA152480181B4B378B932DECA910D099" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0626DDDCDC94B1C8DDB243DA9166FC0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1BC96EAAB77422ABDA4BB104FB3FA79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40F91F0489B41D1993B2429913EBBE2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4579D016FAC464A8766E9100B2DF5A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F50717FAE1ED466FBFC63ADE58B63676" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6FBF6C4032B490591A451CA055FA8A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F7EFADDC2F3E4905B017A9C69C101599" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8D54123B22A42E6A47F98B3C4A64F93" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FB37BF47C46D47BFAFD235BBBC247B30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FCAEF00809704BADA732CDDF912311A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE990C14225D491B89A084FF69F02F1A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupAlt.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.2.0" - { - "Name" = "8:Microsoft .NET Framework 2.0" - "ProductCode" = "8:Microsoft.Net.Framework.2.0" - } - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\SetupAlt.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_016BF741228240B090BCD4D7E43E0617" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0267994AD98C45358411C6CFC9E15DB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\mdp_allo.h" - "TargetName" = "8:mdp_allo.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0394BA5AEDF94DE4BB1F707051A0BF40" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_SpeciesProperties.h" - "TargetName" = "8:vcs_SpeciesProperties.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_040F8411747946F9A7AB19EA47F9ADB5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\radiation.h" - "TargetName" = "8:radiation.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A5B62C8EC224229B5E66084FF4CF60D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D2749B358EA48FA907E73CCC5E76685" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_species_thermo.h" - "TargetName" = "8:vcs_species_thermo.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11DDA274C3B6474B95D7EDFE7300F95A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12403720D98540F2812E4E7439B6751F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_140781B9B3484CA68405E6D3BA915BD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1787727F92AB49FB98426AC1A89212FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\importKinetics.h" - "TargetName" = "8:importKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1924D5D1E15E4E2AB4CBA083E92D06DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B1C547CA8A541F4929C67E9F5E5045C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1BAA7E404EAE447EAEFBCF8518EA2786" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\clockWC.h" - "TargetName" = "8:clockWC.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C90DF5CA01C4496A9D4B6102CE332DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\spectra.h" - "TargetName" = "8:spectra.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_251556D9F2A347BEAD4511F19E415E60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_28FCD7BF1D31414D90897D02FBD77FCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BF387E7EFBD4956831F6221A82D225C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34195374892A4F0F9F0D9FCA8850806D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36127E024A664A5CB103245E82802CF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\LogPrintCtrl.h" - "TargetName" = "8:LogPrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3BC45D1B3ACE4C9A80DDEE61EE23A78C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_prob.h" - "TargetName" = "8:vcs_prob.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C91E0477BC14872ACD37CD343D3D4CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CD6FF055B5B4AB690661A939C85883B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidEval.h" - "TargetName" = "8:ResidEval.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3DEA4FE3159344CF8369AA1F21EE9964" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FB9909E94B644B5B82DD9038328CEB4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_421582413A6242EF991CE5B829FE38EE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\SquareMatrix.h" - "TargetName" = "8:SquareMatrix.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42578737079441D1A5F907D95B107FC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4539B98F10D740A38BE7DEE1BCE77591" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46DBD1FBB3524C31B381BFB4AA533323" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_473E1D967D32402882A992A6D0FBF1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B8B9F3A5884477CB80CD8D14D4DDC08" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVode.h" - "TargetName" = "8:CVode.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DD98C4B7BB8429F93A59FA18D9649B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5055125EFD7E429AA9D4DBB1BC7406EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53AD0637C9B740479861456773F7B9A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_541D0767D9F1499BB09273009849F0BE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58A932EB4E1E449680B4DD3A6A8CFC83" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\electrolyteThermo.h" - "TargetName" = "8:electrolyteThermo.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_598FA02302B04EE38F62677041423E94" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A300E7D02704491A0A32DAE2BB9D534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_62F18C5430DC48738D7BE1E1A0D3ECC5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_656908993C744FE1A978650E4C953A14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_69CA98595D8B48D983452C774C376100" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B5FBE05852D4011A456EF23AFF27E17" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E60AA15A9A042A585E81C0836E653BD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E8F0F781C1B46E4911062BBCD802DCE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72F1BA82A24541C790221A73AC104B8F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_730A4008B8B74BA39E907A7FB65EC116" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76F02165C4E9437E86A2A9253187092A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77B41774ABD849DBA3C771A2CD7A8DFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7989815E2DE749508AB5BF0F05E7D6A0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7C243BF834B7407997BD25D7071D6469" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\solveSP.h" - "TargetName" = "8:solveSP.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D468710990042AB91B96EEFD4AC35B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\FactoryBase.h" - "TargetName" = "8:FactoryBase.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_829AF8F376754502896F9336B571338D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\PrintCtrl.h" - "TargetName" = "8:PrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_84F622105F2C4FE29031016239A839E3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitChem.h" - "TargetName" = "8:ImplicitChem.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85D87FAD439648EFB0811C40A87151E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8697BE6257C9401685E4E0220AB23AA7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\AqueousKinetics.h" - "TargetName" = "8:AqueousKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_892B6E46A9484E109A9681CEFE133F04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8AC7EF4B012D433F87F23EB58F51A175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CD98F7218C14B5FBFE98C94975F0A57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8ED1D5F624D54FCD85135E204A4FB022" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8FE240FF73304491A921BD7476D52240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_MultiPhaseEquil.h" - "TargetName" = "8:vcs_MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8FF5AF961F594D02A20A21768CEBBD19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_94F6A284E5DC47A8A2759FEEB905AA10" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99981AFE42C54B08A60126BEE0B4CEDD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_Exception.h" - "TargetName" = "8:vcs_Exception.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F3307068F6B4E989FFBCFEB1865ACC7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F8316476F1347FB89A80840B73023B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4563B38F1DB4E8AB153D7309733EBC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_IntStarStar.h" - "TargetName" = "8:vcs_IntStarStar.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A84087F9AEE24B71AA7C713BB3680F98" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA61CA354DFD4B1CA176A96F0DEAFA78" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB57FE9F67374DC9B8085E21DFC4F6A0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AC7BE2665DD344C280A0C73101AE104F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF6865D3523F47E5B357929751063D07" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0E3E21A78834BEDAFFA77B307466CCB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B1B835A98AD54E84A33081A1E3BC5629" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B31831F006164D769BE97C7DEEAB13A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B576D9C732F74817BE3E8BE63D0D1826" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6B96C4C9A984EB79D57FC86740D93BD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8BC4E0F3EFF4666B73864B0C6785229" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9FAF2F52483495C85D75C9A156A5149" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA01BB3FF79044AE802F6D32D28F76A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD83EDABC8954180931F6FA2B3FE5DE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_internal.h" - "TargetName" = "8:vcs_internal.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C32709EAD92448CB832ED2B6E93C8E96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7F7589E71D4447FBCCEE9F915EEC196" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_defs.h" - "TargetName" = "8:vcs_defs.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C85EFC4356FC4AD18B631A5DAF62FD91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_VolPhase.h" - "TargetName" = "8:vcs_VolPhase.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C87BA17FF7AE423A8C9A694A7847BCF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidJacEval.h" - "TargetName" = "8:ResidJacEval.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEA66E470BAB4769A256643DF951B3AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D32309A01A4F4FE4A567902BB84ECC25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D405A42D256D4E4BA48B749EC9A24281" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D638545EDD7F4A4BA10B0960EA9D1B98" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_DoubleStarStar.h" - "TargetName" = "8:vcs_DoubleStarStar.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6D4A31528DA4A83A2463BC320F475CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA0EDC01F30D493180CC25074A5B0CE0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\NonlinearSolver.h" - "TargetName" = "8:NonlinearSolver.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E5DC35C0A47C48A68752CD419EE8D3F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E7B921419638499F80914800219B6A1A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA152480181B4B378B932DECA910D099" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F0626DDDCDC94B1C8DDB243DA9166FC0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_solve.h" - "TargetName" = "8:vcs_solve.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1BC96EAAB77422ABDA4BB104FB3FA79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKineticsWriter.h" - "TargetName" = "8:GasKineticsWriter.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40F91F0489B41D1993B2429913EBBE2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4579D016FAC464A8766E9100B2DF5A4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6FBF6C4032B490591A451CA055FA8A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F7EFADDC2F3E4905B017A9C69C101599" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8D54123B22A42E6A47F98B3C4A64F93" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FB37BF47C46D47BFAFD235BBBC247B30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FCAEF00809704BADA732CDDF912311A4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{1525181F-901A-416C-8A58-119130FE478E}:_C19A58F49A224E35B2D9A09DC4EC08F6" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C97A129DE50A4C509EDC1157AB4C91C9" - { - "Name" = "8:#1912" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramFilesFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CA8CDDA678F94A9FBFAEEF98178789A1" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_9CE57C28681A4039B64B3AAB01534192" - { - "Name" = "8:SetupAlt" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4AA6A6076F044E14B5DDE926AAD4FE38" - "Folders" - { - } - } - } - } - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_FBE54AACF2D849E5B7A4223AB235F3B1" - { - "DefaultLocation" = "8:[PersonalFolder]\\[ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0CBE9DB69C4A40428706448E0EDC17FA" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_60BFE26BC65547E59C757C5E570FF715" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_17001380788D4C2AA551CEBB81CB24B7" - { - "Name" = "8:data" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0B26A921231D46068250544643EEC713" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B0F6DABB24645F38E25F510FF4FCE5D" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_96A47FEC922B4A5AB0A43DB7928D70CF" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D48C8CBE2D14493694B427FD1A27F4B7" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F3CDE77429D3438F9E0110A1976A58A0" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0111CFC9569E410CB5C813D6B6944128" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_670FDCCDF9324DEB8B7E79ED868B2E02" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_47991053FF17492C8F9B9E976D5FF05A" - { - "Name" = "8:Matlab" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_84BC578D7CCE4EDA997A6657139F9D75" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BF7F22D1B4AB4BDDA39688E09BDC44C9" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BB072C9CD8E44C93B2670DF43CAD0E27" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E9EA29DF1C7D45A580E585122E5611B7" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E4C4FFEC58424A9FA24A2294BCA40D09" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_825BCAE17B6C4859A73B7198EBFFE4B2" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DCD02927904C464E88CDA8ACCAFE06EB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A6D1799594894F03B18AF44217F5789D" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B4ECF58A844049C1B9E35308DF603BF7" - "Folders" - { - } - } - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:SetupAlt" - "ProductCode" = "8:{E579A2C5-A686-4734-94BB-EEE9FCF991C6}" - "PackageCode" = "8:{6BB5E8D0-C22C-43B8-B811-ADFE98648D0B}" - "UpgradeCode" = "8:{9C28FC04-8308-4E8F-B316-98095BC8A185}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.0.0" - "Manufacturer" = "8:Sandia National Laboratories" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:" - "Title" = "8:SetupAlt" - "Subject" = "8:" - "ARPCONTACT" = "8:Sandia National Laboratories" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_7AE32C464359410EA564477F7C24DC04" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5050B7B8462C4FA49C1909AEF71DB388" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_0C08D1B047B24232BEA5E3605B4FED7B" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_89846A51F6D6460AA212F19FABAC7C7F" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_366A56D1993049B882C67EA44B80EB9A" - { - "Name" = "8:lib" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Folder" = "8:_9CE57C28681A4039B64B3AAB01534192" - "WorkingFolder" = "8:_CA8CDDA678F94A9FBFAEEF98178789A1" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C86F8362D91748168EEE1A2D417889E8" - { - "Name" = "8:SetupAlt" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_FBE54AACF2D849E5B7A4223AB235F3B1" - "Folder" = "8:_C19A58F49A224E35B2D9A09DC4EC08F6" - "WorkingFolder" = "8:_FBE54AACF2D849E5B7A4223AB235F3B1" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0C576B51D495429595A8E521CD0CC215" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_16711D8474C345879BF3453779759BFC" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E4C765BFAB774C8C824DB9B4FAFB3CEF" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_1A7B0400C39348D69195612CA5C97EB2" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6C2FF72A12C34EB1B129856C885ECF0C" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_25B7D3D9561D4B80ACAB75330224BC06" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7ABBCFA4E6614A6E93025885BA7D8119" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:0" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F16FB3A63524141951911138DEA3D44" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C17559B63C7F4D879F53549F572EACBF" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_353BD35FB68A4E7C842F50BB7742AD74" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_9651CDBECD3D456CA18DDE9694330883" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A421C691D6A14B359501BAA865391B7A" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CACDCC34D0CE45478D6707B5025A40CE" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_69311FF78A7841CA8BC0A9D6E069DE4F" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_87F1A1F16B484FFAA7D06A8C311D10E6" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_A9BC824A28AA436DB0ACE505A8C82E2C" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_D8DD9034F8E34F76AA22CFBAFC461849" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C9F5D8C1B2EF4B4A82BFA29BCA86C87E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_194D7781A1504802950A57617F3803D3" - { - "SourcePath" = "8:..\\debug\\transport.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_1F4612D0C9664A2BBDF46FDE0E47197A" - { - "SourcePath" = "8:..\\debug\\oneD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3237A2C7A1E34294A6036D4038565E7B" - { - "SourcePath" = "8:..\\debug\\zeroD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_337207A3891F4F9C85930F92585617A2" - { - "SourcePath" = "8:..\\debug\\tpx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_35CF7BBB7404402AB9B3FB182CE0DED2" - { - "SourcePath" = "8:..\\debug\\numerics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_637E39E029B14732B842FCA2AB74D296" - { - "SourcePath" = "8:..\\debug\\CVODES.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_83E76E90C6D94DD081FE6157A7DDA3B9" - { - "SourcePath" = "8:..\\debug\\kinetics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9FB7136577424D92A91097DB19EDC141" - { - "SourcePath" = "8:..\\debug\\ctf2c.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A82C1EAC0A7D469EBB4A8FB7C9D1CB2A" - { - "SourcePath" = "8:..\\debug\\csvdiff.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_FBE54AACF2D849E5B7A4223AB235F3B1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A9F85CD88E684D8DA467D131D514B6FA" - { - "SourcePath" = "8:..\\debug\\SUNDIALS_SHARED.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B646D778CCC84815B42BCD49474D204F" - { - "SourcePath" = "8:..\\debug\\NVEC_SER.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B7EBF05DCDFA49009396C5D2DC7D6EB5" - { - "SourcePath" = "8:..\\debug\\ctblas.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B92640FD361B4715B1A20BE2E6BD4CEB" - { - "SourcePath" = "8:..\\debug\\ctlapack.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_BDF2CCD7BC7447599BC8441395A01883" - { - "SourcePath" = "8:..\\debug\\ctcxx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DF2C58804FF54B6195C64483DDF16189" - { - "SourcePath" = "8:..\\debug\\base.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_E0BE4100AAA5408E9B9466D67FC12149" - { - "SourcePath" = "8:..\\debug\\thermo.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F50717FAE1ED466FBFC63ADE58B63676" - { - "SourcePath" = "8:..\\debug\\ctmath.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FE990C14225D491B89A084FF69F02F1A" - { - "SourcePath" = "8:..\\debug\\equil.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc8/SetupCantera/SetupCantera.vdproj b/win32/vc8/SetupCantera/SetupCantera.vdproj deleted file mode 100755 index b2244217f..000000000 --- a/win32/vc8/SetupCantera/SetupCantera.vdproj +++ /dev/null @@ -1,23121 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCantera" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_000E0B5AC6264DA3BEC0448B32F52663" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_020F278C42CA4A2B96388903D1752C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0259622D90D54F99BA22C55A83DE0DD3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0366A82A86EA4F1CB1AD5F4D462B3787" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_03705D00A88B4B32A2CEA6A025ABAD87" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_040D88A3581F47CEA206D1688FD6EA61" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05BEF1452C824F2AA870077D31CF1BF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05FE255C00F74DAEB6BFC00A32066DFA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0699BFFC081341CEAF618FBFBBA1241E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_06B3045D93A84917A8E324374A8211F6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0865E5D3BB9F4A62B678DA631E21745F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08B40A34D407447EA66C614C4E897E1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08C0F7C9789B4E3F8D09411C89DD0509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0CC005AA0F0842E4A33867605A8E4A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DD6AFC117E344BD826ECC698152F9AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E88CDE60FDB466A8E64AB3804CBE971" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E91AE53B0354697B206E79EDEC8951D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_100F4A4A1A234A60AFAA34C912D418AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1089BF66E6BD47E597259E9AF2B35F20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_111A0970D7DE4C99AFE08278C8345DD9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_112604D4B1AF450DB167E0992C99521C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12F1E24910DD409E860D4F79A338EDAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_134B726C2CA94BF5A67C3ED7F799D502" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_138E90C26F6041339FF2678ABF07E5DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13A678CB790646B69DF1451D34265FA3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13B73567FBB1470E9244F3636ED90E55" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14738B23CCC74201B3F3619639554DD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14AD021265F04D30B380659740DE2D56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14AE958921E548DBBD8DC6FA834FC532" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14D64F0F7ED94D29A7A8DAD77FCCED13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1549C4E9E5E0434983C533B9D0CB8B49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1556C8B42E0649DDAE01655F4D1C970E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15722A4BDFA44650ADE1764C5B1EBCC5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1605E31F88584B5BAA367FBA56A3EC57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_163414A541654AEB93A16D60F2652F7B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_164F9AE8646F49A28EDD39E09AC0B23E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16F99D9C3DF142889E721E6519E72352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1861CF609E4C4EE2B209A26A6705ACD5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18DF044BD81E46C98CCC861C36FC01AB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_192952F5A5D249D78FC7B767AB938A1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A68BCF036214AA58BDB24F63A44099F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A927F880A454469B90682B004B9D129" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A951008962D4A65A9A9653673049010" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B9B881AE09F4714B246FED31A2C52C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CB5CF459BDE4DCEA0D61D95E6707D99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CF9D451D1C24D9FBCD9719CC24D8956" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DB52E3C2B4B4D63A2825ED896417F4D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DC1E7E2F3D94D77BA47749A06D1AD12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E0D34F6C6104102A9D06C141F3F763E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1FBA13F4B8CB4E1A81BB5FDA1194E6BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_200166547B6143DBB66C317D3C9548B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_20D3DE8A9BA14C91A9C2FFE7EB36603E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2170A16C95844A6291342D840D1BB498" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_218EB718190641D592079146D7F47C17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21CB1D1F8F854048B7E62613B0F85A75" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_220DD96C05614BCB9B3E2C477C950EB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22220FA289544793A08B9B1E933623D4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2278673C1CB94B89B0F33D7D7588F290" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2279B9FC61AB4F3AB7F0A0F58F3BD071" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22CEF13E79D94C419D5EF6986741612D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_238BB4062E2B488FB10D3107F74869C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23F24F51C12448E8B99577D4D359CA48" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2423A94DD42C4B89A532018CA915F0CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_248688162FD145F4AA11063A3A5ECFD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_24B6F64B4FD046B3A9F26BCFB9621B1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_25585A312B8146C9AC759F332C678FA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_256AD3D2AEC6410FBF4F5E3B945925A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_25A650A6EF324949A3604908CE2112E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_262DC17B610648E5A48002B469EC6A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_28BF9CA142EB4988A4B1366304D93917" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_299CD5580EB645D191532FE4F24EC6CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_299D770E87DA40E2B37F751CD036CF5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29CA5AAAF8D342359823BB1B4CC30E95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A0106C002434337907A10A979B6D97B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BB4BE1E38E641C2B265A596D043AF25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BB57D6845464ADFA0F107F511FFEEF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BE3348DF5ED45EC944DDD5BFE78A865" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BF22A40402F4580B200414A32936177" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2C2891784E02439F8A77C62FB10A7758" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2CADD379818D4D128CB3E53D3E566601" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2CC0F0BF60B24FF39FF09E9CFDF038BB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D5D40F1EF034AD3A2757714B66F1A11" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E1D802885914276A918F17E040A09D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E96E842BF704E05B248FE9E9474674B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2FAD4B54152F4F698FC2A1BAF8831599" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_303F2BB4ADCE4E0F9B2B45747E66C057" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3083E770891548348F700E253FA8A634" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3083E770891548348F700E253FA8A634" - "OwnerKey" = "8:_5138C167F7FC48EBA02A031F6F05DD67" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3083E770891548348F700E253FA8A634" - "OwnerKey" = "8:_14738B23CCC74201B3F3619639554DD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30B3C39CD6444421B6418F00C5013828" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33C1BA231B1F42CDAD49F0298167D9BB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3450E67DE4E1425B8B41AE70CA5BEEE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_349A87700DEA427C88D340397A9BF256" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_349F239FA90543188EEC8B24410296BE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_35C660FB7AD5450692D9BD8417AE21AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36101E75F83548D9864D35DB07B7612F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3680F9CE2F25442489E0ACE568906072" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_379A958666C0409F82ED9D1C390CF2DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37F5B433E7DE450A995FDB31F909269A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385781B4728F417C82E6B75637E10AE2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_38608699D4184347BAF2FFBD76936E1E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39905D4925564C469DE3CBE980978999" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AA804A010174CE4A2EC5E33D1C8CC8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BE1A06F6E6840F996050C94AA740686" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C4A157925824371A0036E03B719B89F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CCADD10D5934D599E6AAFF04D6353B2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CDB43EBBFF14ED58EA458CC84B18F9B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D5BF771EBBC4AF0AA84C1E114FABEE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3EF615A4DD26446799672090D51EBDE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_403EF1958EF24BAC9D6D715D0A993803" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4144EDA2CE1A466F80088CF6F5482CC0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41915DD244F142089CE3793E90B3DF12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4207771E67BA4E4794A2397BE181FFEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4254D2D0022C4F1EB474B3635BDB1266" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42CE73EDA2964A82BFAF73C2CB6E4B7D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42F68AC09DC0410C8B66213635F5C982" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4396FC89207E4A7B985CAAC11722BD68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_442F1B94835E4D329C9233176A3165FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44312EB878254560A66978A2E8304A92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_450EF4722F9B40F5A7A85BCA48C2CC20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_453760704FC54E5B9D98DD1CCD79BDDC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46482802B89A4F9594C4C39CF0441C65" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_471DA45E05AD445EB7B143657DB4688C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4761AD8D69E841E298EB859CE92727BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4783AD3526B547709409884B6091E0B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A22C4B2BF8947AA8789A8558BE2F728" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A34080C008B4F63A073D329C0B47ECA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A76C0FA9CF84058918F0E1F8126D049" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A9D96662A6C48C980D6FCCABF7CFE20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B60DDE68DB84E76B59AC82DD6A48B63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BF0C48B45924AF1ADC6B12A5E6701D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BF9981AB5684655AC520EF2C245AF5C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C9C4D481569458FB7B6C4535E474399" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4CE041E0453E4088900BEF68B80427D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D48D12F66B44E83BB214AAFD8B311C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E5E333FAEC14ABFBD58531E8DD3C26C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E67F8AB73144D67944EE83F06E06040" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EA368FFB8E84A9C88A4BEF0FAFC5A3A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EDBAF4F0C8C401695EE60D9184C34EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5072AB7D92454CC39627CAE67CAD2E6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5095A6E6BF554FEDBAEF263F05DDD77B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_509B9A1248FA4683A81BBBA1303BBE71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50BE0A8057A64D38862D65984EB9CD88" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50C880EA8AD04F98ACC7B17C25481323" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5138C167F7FC48EBA02A031F6F05DD67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E0B210177949DABBDC9E382016C5B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_521AB345758F4DE2BCCE824F6E10A19A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52F34CA3B6284884A5FF333B2261DD88" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5359EA42B033411BA9ACEA14D4292527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53DA7F1154AD4808A379EDAE1B4202B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54138DA393504CA593F2B307AD887B57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54161044EDBC4F718F7FEE349189D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54FC3FA61AA64EA983695B64461739FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5571BE3AECFC4E599F4A538E40620D21" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_562372D5415546AD844E25834E0DECD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5662A7CD4D8C4E5F947A6F355C20C1A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_567A83C285154238BE6C478046C5BAFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_573061F4D2BC47AB86EF163F05DA0D62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5790A0F9267C4FA88EE7DF95DB07A8A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_57E6A3FDFDE34C75840B0908431790A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_592F2DC945B24BDB801B54E965A109D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5939C6DA148E4B918D12A3F0CE7DC863" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_595064E84283443CAC06EEF5106C0641" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59A2A6B397EF4B649D07CA5B10A1D1C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A3FBC380FAF43D0AD7BDFA47871DC92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AD1E279C6CD48B09715186E69A55483" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B27B82837184966986697D84EAB8146" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B8BDA463997482B8E4B38A6883B9F20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5BC3883CE3F340CB8FFF56C6195A1121" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5DFA2ECEDEB446DDA04762D262A2F376" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E55DD812945431BAFCF8E3595428F15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E6021DD18EE41D8BA4C00CA071A2124" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5EBBDFD79C6D4331873E595874008962" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F4850CA9CBC426485E4F0FCBC16C882" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F7CAAD1BF2A476288C013604222BBC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F999283D3304F89AEC9879F07D2ACB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60571A0C1CC14E77AB558ADB65B78D30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61C9DB5B055E4231B975615A8859A10A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6263283A4DC1424893235D92CA5C7F32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_637A29A294854BEB94243A2E2BE72725" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63F7E804AA36436E9766AD90A1559698" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_641E5DD328FC499FA9E9E2BA97E138D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_64BFD140F3C9407497F177F7920CF70C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6693B16E7E2A4AE3ADC494334E18058F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6725A6F15136415BB26BADDD3CF96F66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6728976522BA4F4BBC490ED099A22916" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67EEC6CEAEB7420BBA0A70992A33175D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698CE4C4A1BF440CBD28B8785A3D9F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698E1FE2069C44AD8727EDCB59AFF2F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9D618F4BAD480B82EE6F7A7EBFC5F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AC7C33351854C93B3A9E0ADCECF0100" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B62C2B086DE4A74ABFDB909919F3B1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BF0F3B78ACB42BEB1F321B053DE8255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D0E6800917A4CEABC5B55639C33C7FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6DE44E9F30F44007B2E7B044619759A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6EAB3FC0E0224271BA4985CA3779D862" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F68661FA8524882AF0A5D77FA5A6124" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70297F7EB1434F9FAA59A5A015747606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70F7102F07A84B8DB4E3D5FD338F5540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_71188FBDBE8C4C52A89AFDD622B108B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_715760DB29D349BC81FFA61C5AE33F17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7189BBF81A8B46F596C2D94D52CA15DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_71FEE454B6604E2592820EDDBF4B9B3B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C19E279C1048D59F0DDED03719FF90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72F9F17B043C4818960ED80D5809861A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7371B6545BE04A179D3611DBA99BC2CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73F2A9908B3D4174BFE10B56DECDF6AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_748B480FBFE048E8908EF0D5DC978E87" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_749CE2B462D64C4D80F72A3266FF5844" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_751FCF7F6799471992B6C1D080421B25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_75BE33EC2FDD4D92831EC94E3583F2E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7631AE376A6E4745A31A258B2EFEBEF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77579BAF22FE4F6BBA6F6E55C2227394" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_788EDA9BF8E84FAA87DB7C2751076A9B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78A88A902EE84766911446EF648B4A20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78EAF772B5414C25BD4EB77E1CE069A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_793996EB3E1F479CA275A7CEB5851658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A44C47D4CAD464A97B0209D14C65139" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CDF724656054425BFB271F06BD2367C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D867A3EE9034A2ABB13B35762290436" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DE48AD20C384ABD9117F64B463DAD1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E40B44934374E2C986A8908F00523D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E6FC70ED43A4A3293D06D67EBA76D30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7EA80C1EF9194C0B8790BBFE6CFF7C10" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F2FA130741D4EC0BE2D86966108FCDD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_812FFA9EA6DC43FA8D244219CD7096F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_818FC04B27FA48F991F1F27AF1A02D2B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8316AAAC7D124D08AC76B1E9B1B71597" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8392F052F9604AD6A99C28412715DA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_848A110B76D949EDB0ADED7CE6454C31" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85C910D16AEF4A4C9569503ED54C2E97" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85D870ADC88A4F87A4AD54AC91BE3F54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85DB813C30EC48A8A5B8C91E10645CEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8621C91C5A2D4D9EA50AED521E7FB7CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8644F7E4286B44BF849798AA1F3EF62A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_86801790ACD14519AA60F61CEE1E1518" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8729B2D3CFC043EAB78F286D76787B78" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87399508B62F47D0BC5E993FD3590D0C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8768926E874F4BFA9F36BBCC563882F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_878CBA68A74A4569983B332DCCEEE813" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87D616A7501545E899208A74F7D28235" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883ED26352B04EDEAD89A3CF9C86A55D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_88C7677DFAD94E838F62E0F1663FA36A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_896518E51E604EB388922C7AB451EA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A0AEE06B352402FA6E6C5A73E042713" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A432F8B24A842C0A70A2D8FD906E798" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A44A594199C4334B78F3AA5D6532ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A9B2D52CB344031AF51FA1589C12A9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8AB8441158004A009E974813884A8FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C16EDF915404D23BB491F51467D0612" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CDB9C24D5594BB2BEC1EE74C8FED863" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8F6B0F5E781842E89113C86D1380E727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_904FCD6D55B842029CEF52AEFDEA4256" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_910E00C9C1E6469BB7A10318D60163F9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9124D54F67494EA18B08E5CCB0DA12B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_917A158208544EE3B58F022E82B35395" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_91D267E7F9ED49DDAAF7222744E6628A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_928A4CF19A3E4474AA4EF038E37FE2B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9315EDEB72EF4E0799CBBD629C797E65" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_931815CAC9E94D25949A7DBDC05A5E09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_934D9F093D1E4D64A3E1AE1B319163A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_936D7ED327F842769055274860C7B7CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94F7E346CF344C0291219A51568B2A11" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95518B1185B344D8A9E17D449E22A07A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_955D5137DD3645A68F22AC7081F4BBD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95AD84099D86441F9B0C251039B1A63F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9742F8FA66744C10BDA33C445BB1B5A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97C3AF757D4E47FAA20861128A24C4C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97F452B2E24D4B78B4AB754AAB4D9247" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97F7FCC94E42453B981D376F37B97503" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_987750730309466A9EC1C2E3A5B1D20F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98A1AAE4D6A54C8697F75F0890873F23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98AF00ED289F450889C13394489C3D4B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_992BC758B7374D8D9CA69B550F538255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997965EBD0414DD3B8F2CD9270032C7B" - "OwnerKey" = "8:_3083E770891548348F700E253FA8A634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_999E3B46B59C4234A7124019401DB7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9A1598ED1AED4AF7BE7E8B3C1839F085" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9AC9ABAE8E744589A8EABDBC4C1B063F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9AD65BFB57C24804AF9B53D18E3051AD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B587B77A381433887EC3C60A2DEEC56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C83B54D3B124108AED04884A3931252" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D9C52DB234A43C88C442298E232C316" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E2FD424808A4D3A9297C8DE4EBF6A52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A08E2857F1B1474E9AAF6D683CC3A7D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0C6574C5F6E41E18AB6AF904617B8D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0F47D115D1140D78EA15ED301A96FDF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A241F7A927984443A3BB7B186910ADED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5136AB1792B4B98937DAC7FD6AE4E90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A52F55B639B6498B993D0C8831EC29A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A56B4B64A8E2482883F4F76F278103DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5898A75EFDA4A008CE657485600DB0F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5965821A5034D3CB9417024DA48CF5C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A691E3B32AF54F4AB5F4B48577183263" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6CD4A6404154996835A7D9B2301BCFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8313B076DCE4F47BC5AB1C18D54D1E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A84BEECAB2D34EFCA56FAE2792F51D7D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A88814C184944C9FA3E00A2DE301BB17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8BE7E9B8E89418B9C209C26C2481E52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A932A0AF2C944F8F9067A24C25B978CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A95FA829E1D342E0BD407CA2FF074E9A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9E3A786A2954BC687EB209593DFAA31" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA0F97AADCE24AC29EF73E7D6C696C54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA23BF6053F542538AF0B7FB48C0B4F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA6BB20D43F142F693E09AB9671A7F46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB701B636CC24D9F9CAA71C6B897E7AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ABE7E862C38241F19744114841629864" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE6136D7D3F341089B23CF2FE032F852" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEC8DE39CE7B4849B1AC9407148408B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF2F612EC55F42C181F990BB5BF85D09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF505C309B83425BB0ACBC40586DC467" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B103E721182F4DD6AD7F65CF565F83C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B137545CCE204222B6876022AB4E6EAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B16017E037F7472DA99F97FA0994567E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B26DE6FA1DBA4CD7A54798EFD42761C7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2E109695C4F4E329F991DAB91EC054E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3B4F39E240F4463BB09201FC8B32CD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B42AB8E6DFE545408B9760D0D10919CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FE641E9EE14B3A98EB023B9B281012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5F13C260D704D10A1AA9E9C428FD17C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5F44ACDAC4142C9B086E996419F26D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6B7A55B6F78408B87B10B799DE5A19A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6BB322EEC614D6381014E64306652A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B74214D38A5B4B88B5E169B9E638C59B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7E71DDEC9694BB3913A5A951D071C79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7FE7CDB0F4C4BDAB730BB096498F836" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7FE86B0D0F1439F8BD9FDA7DC0BC6E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8DC8835383B4D81865DE6728E152C6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B92716F1835748778D2EA2A170A3463C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B931BA0672394A6D8134E66E8381B7D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9D00A7B741A4394B6D20DFBAD7B67B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9F7ACBBB03641A189D48B3F96B177AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA434DDB92844939B4727EA0D07F28F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA805C53980C41769659D085C5C8E0B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC48260E6FE744BCB551169FC8E965F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC7DFDE6592D463B95C307DBE7305593" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC7FECC38DA64F6DBD2CEB31BECB4861" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD9ECC0B46EC450CAF842508F8F7BE33" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BECC05E6C8EB47B68F6344A00F04C46D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0D8D2C4874C4694895DE76AF8ED8E8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0E4D3E9F985430CB96D8E96014865FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C27608223A4A46CFB21A58073E99629E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C357D956140243B5A87AA9011DAF1207" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C4F6F46B0B0344169A6195BE5062914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C51F790219A544D29B9BCBC4B83E1C3E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C620775E0B56481695BDA176D6BBF60A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6896DE4391E40FF980A950DDE8B43D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7FFE7D762304EA08B7376CADFF4D8C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8198F923CDB401EAF223744653A6806" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C844497867604180ABCB21CF50308A75" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA734CBAEC8440EC8CB32AF7EF8D71AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC9CBF448698418B83091250EA8BD78C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCBD553838A74D2AA8E5C4392EB0B6F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCDF5C1EFB75477BB295929481C75CC7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF5084794E3343669C4337B95A9F7BF1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFAF2622550E48AA9B0F502BD4022FB5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0A9D802F4924B3B8C0429DFF0D37C9E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0D86929159D4E008C467978E92A6B0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0E38FA5FFFD42BC9507FFC804B3B271" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D1CD893E014F4FBE842B4B0E2CDDE652" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D238C397E41B4DC684CF79761C4B85D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D29E08866CBB44D0A548B5F8A7D90584" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2BB3D54E2B2459596E3FCC0C5648A63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D418D6CC07974B16B70C9B93970427FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D428726607B744478982A6F3AEBB5937" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D53FFA2FD41F4B55B55A5F34D59755C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D5E167B7033D49188854ABA54CB6A543" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D669B0F109D24B248427555BFC1EFFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75AC18CFD714D179B403F394FEE5C6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D7EDA76276BA47C5B427D5289E602655" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D8DE5B3E74534CEFBF787CCC4124FF6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D9342B2A479345D79B17511A69B5E867" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D9EFEFA2064D49EDA49FBE09DEBC3C72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA59B07FBF1F42CDB8AEF8B24809BF08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA6641D60355480A978E4B4464AA5DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA8A6A14EA7A4B87A06CA40B37404208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB58150AE7CE4F5390C9322D5F5E7235" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6D039C3ED14EE58F469C211EE0336C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC239E2B54624CCF8D26F85C98393DC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC32635C462B40BEBEEC9176E79A9BB8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DCE0313BBE4C4DFEA23ACDBB6863B390" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD3B996C17714923935F9497EC38D611" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD6D9600C356455D95BD2C44C50214DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE4BC3661787450DADE7B47CFFFDAFB3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE6ED970A6634704843FC2D976DDB51F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF09D62385DE48A0A9A5E36414AAEADF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF631F75976846E58594E4C6FD1630C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF78E69F06884ED8B21785EFA82570F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E00C0F5054204111B95C89CE4CF7CFA7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1E6F5ED150E4549979E0E3F9E6D2F67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2DB44B0AA4245D8BFE17D1B069BAE0F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2DDE31CAC874AE0B9F7F9145248BE6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E40175C04F974A7BA19133984051989B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4171B5DBA664372BB43F3B40B2E1236" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A483565C5E40B79805552DC4B5292C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E78FD6989E1D4799AAAD31ACD43B0C1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E90BD26B31DB42D59ABCCF0A14CCCB52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E91E1B960A5D482C848F0DD9A292A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0930AEA1074763823B836B96A138A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB7840FED8294FFDB3111C6B3DD32833" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB82DBEEDAE14B51840A9D7153E52BBB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EBB20B541FE543F7A695E466975C6495" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC5F3263FCAA48CEB25E23414F082818" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC6786EBE72E46B694D473463C72A2BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECA3396FBFD54A94B2DFB33B080F0D4E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECAF852C95DD46A39B119046E569A5F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECED5D161C3348B98B263CFECA0A7DCF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED40FDD34E984498ADC37D88B43AEAA4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED67782207C047F4A5935DCE2E79F151" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7C6EE3A3154788B22D1EF05798FD2E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF86BEE203814AFB81EFC961B7A3E77E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFA30E0040CD47D995300679F7C2846B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F002FBC310564DAAB051DE2CC004A129" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F01B5FE1A51E45AFBA508244A268A056" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0281BD9BD9F406A803EEBD30E07211E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F18978587EE441EA8B9B276B9FE566FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F227BC16EE9F47A7BCF4A15B34565073" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2A92891BD6D4A87BB614760C33A483D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2E355F7534548FA97DD0E22363A0107" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F33D31C689BD40F2AF95AD8905B4CA5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3A73DE374274D23B5B71D3950610F46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F47B7B39692A4CFFA8EADC42095D740D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F495A54DE04C4B39B5F52C4AA64E7060" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4F48A978F924204A75079994744E641" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4FB2F3079254D76B2DF7DF3B7391098" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F52E35C2A75341B5B07D033F7072C765" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F56FE241FFE6446197BDA67DD816F1E4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F5B0599D33DE4EA882B0C846B85FD66E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F602133B4312461CA85ABCBC52B27AF0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F622D25373114C90976CCE00B20B11FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6E4EBD5FFCA494C8355AF6764844103" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F70CE7A5A1844D3A99121A7A41ACAAF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81A7E5426654A1891028EF1BDDF87CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F862E9C9A48D4C569698C90E1EC6850B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F88CE78D01A1484A9A363ECD019F9ABB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8E58FC7A5A74126B5F8D78607815377" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8FB0389B5924D9585AA8CB15F4A2BE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9D283B3D2094812A29561F09605DE12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBC9FE116DDD46DEB48CF787395219C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBFB14FD38C7494B8A4C46E34805BC91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC806BD642A04A1EB4946516ADF8D34E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC86845237DD456CBCC89B92C093E444" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD0456378D394DF48B3AB5BD0502EBB1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FDB8A6CE75A943ECA1F4D7DFB8F69902" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFFDE78FD53C4E159AF3540A42F61677" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_000E0B5AC6264DA3BEC0448B32F52663" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\LiquidTransport.h" - "TargetName" = "8:LiquidTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_020F278C42CA4A2B96388903D1752C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorNet.h" - "TargetName" = "8:ReactorNet.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0259622D90D54F99BA22C55A83DE0DD3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\kin1_blessed_0.csv" - "TargetName" = "8:kin1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0366A82A86EA4F1CB1AD5F4D462B3787" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\GeneralSpeciesThermo.h" - "TargetName" = "8:GeneralSpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_03705D00A88B4B32A2CEA6A025ABAD87" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_040D88A3581F47CEA206D1688FD6EA61" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_internal.h" - "TargetName" = "8:vcs_internal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05BEF1452C824F2AA870077D31CF1BF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05FE255C00F74DAEB6BFC00A32066DFA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0699BFFC081341CEAF618FBFBBA1241E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reactor.h" - "TargetName" = "8:Reactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_06B3045D93A84917A8E324374A8211F6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MineralEQ3.h" - "TargetName" = "8:MineralEQ3.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0865E5D3BB9F4A62B678DA631E21745F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08B40A34D407447EA66C614C4E897E1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08C0F7C9789B4E3F8D09411C89DD0509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0CC005AA0F0842E4A33867605A8E4A57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DD6AFC117E344BD826ECC698152F9AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0E88CDE60FDB466A8E64AB3804CBE971" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0E91AE53B0354697B206E79EDEC8951D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_100F4A4A1A234A60AFAA34C912D418AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1089BF66E6BD47E597259E9AF2B35F20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\LineBroadener.h" - "TargetName" = "8:LineBroadener.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_111A0970D7DE4C99AFE08278C8345DD9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SimpleThermo.h" - "TargetName" = "8:SimpleThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_112604D4B1AF450DB167E0992C99521C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\Makefile.install" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12F1E24910DD409E860D4F79A338EDAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\DebyeHuckel.h" - "TargetName" = "8:DebyeHuckel.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_134B726C2CA94BF5A67C3ED7F799D502" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_138E90C26F6041339FF2678ABF07E5DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\example_utils.h" - "TargetName" = "8:example_utils.h" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13A678CB790646B69DF1451D34265FA3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13B73567FBB1470E9244F3636ED90E55" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14AD021265F04D30B380659740DE2D56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14AE958921E548DBBD8DC6FA834FC532" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_VolPhase.h" - "TargetName" = "8:vcs_VolPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14D64F0F7ED94D29A7A8DAD77FCCED13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1549C4E9E5E0434983C533B9D0CB8B49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SingleSpeciesTP.h" - "TargetName" = "8:SingleSpeciesTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1556C8B42E0649DDAE01655F4D1C970E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15722A4BDFA44650ADE1764C5B1EBCC5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1605E31F88584B5BAA367FBA56A3EC57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\catcomb_blessed_0.csv" - "TargetName" = "8:catcomb_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_163414A541654AEB93A16D60F2652F7B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_164F9AE8646F49A28EDD39E09AC0B23E" - { - "SourcePath" = "8:..\\demos\\ReadMe.txt" - "TargetName" = "8:ReadMe.txt" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16F99D9C3DF142889E721E6519E72352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18DF044BD81E46C98CCC861C36FC01AB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_192952F5A5D249D78FC7B767AB938A1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Sim1D.h" - "TargetName" = "8:Sim1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A68BCF036214AA58BDB24F63A44099F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A927F880A454469B90682B004B9D129" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ShomatePoly.h" - "TargetName" = "8:ShomatePoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A951008962D4A65A9A9653673049010" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B9B881AE09F4714B246FED31A2C52C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Crystal.h" - "TargetName" = "8:Crystal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CB5CF459BDE4DCEA0D61D95E6707D99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CF9D451D1C24D9FBCD9719CC24D8956" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowDevice.h" - "TargetName" = "8:FlowDevice.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DB52E3C2B4B4D63A2825ED896417F4D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DC1E7E2F3D94D77BA47749A06D1AD12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ShomateThermo.h" - "TargetName" = "8:ShomateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1E0D34F6C6104102A9D06C141F3F763E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoMgr.h" - "TargetName" = "8:SpeciesThermoMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1FBA13F4B8CB4E1A81BB5FDA1194E6BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\mix_defs.h" - "TargetName" = "8:mix_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_200166547B6143DBB66C317D3C9548B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_20D3DE8A9BA14C91A9C2FFE7EB36603E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ConstCpPoly.h" - "TargetName" = "8:ConstCpPoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2170A16C95844A6291342D840D1BB498" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21CB1D1F8F854048B7E62613B0F85A75" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_220DD96C05614BCB9B3E2C477C950EB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22220FA289544793A08B9B1E933623D4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2278673C1CB94B89B0F33D7D7588F290" - { - "SourcePath" = "8:..\\demos\\flamespeed.vcproj" - "TargetName" = "8:flamespeed.vcproj" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2279B9FC61AB4F3AB7F0A0F58F3BD071" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\speciesThermoTypes.h" - "TargetName" = "8:speciesThermoTypes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22CEF13E79D94C419D5EF6986741612D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_238BB4062E2B488FB10D3107F74869C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\writelog.h" - "TargetName" = "8:writelog.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23F24F51C12448E8B99577D4D359CA48" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiNewton.h" - "TargetName" = "8:MultiNewton.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2423A94DD42C4B89A532018CA915F0CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_248688162FD145F4AA11063A3A5ECFD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24B6F64B4FD046B3A9F26BCFB9621B1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealGasPhase.h" - "TargetName" = "8:IdealGasPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_25585A312B8146C9AC759F332C678FA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_256AD3D2AEC6410FBF4F5E3B945925A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_25A650A6EF324949A3604908CE2112E7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MultiTransport.h" - "TargetName" = "8:MultiTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_28BF9CA142EB4988A4B1366304D93917" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_299CD5580EB645D191532FE4F24EC6CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_299D770E87DA40E2B37F751CD036CF5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\refine.h" - "TargetName" = "8:refine.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29CA5AAAF8D342359823BB1B4CC30E95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A0106C002434337907A10A979B6D97B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MargulesVPSSTP.h" - "TargetName" = "8:MargulesVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BB4BE1E38E641C2B265A596D043AF25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BB57D6845464ADFA0F107F511FFEEF5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorFactory.h" - "TargetName" = "8:ReactorFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BE3348DF5ED45EC944DDD5BFE78A865" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\importKinetics.h" - "TargetName" = "8:importKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BF22A40402F4580B200414A32936177" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2C2891784E02439F8A77C62FB10A7758" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2CADD379818D4D128CB3E53D3E566601" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\thermoFunctions.h" - "TargetName" = "8:thermoFunctions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D5D40F1EF034AD3A2757714B66F1A11" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealSolidSolnPhase.h" - "TargetName" = "8:IdealSolidSolnPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E1D802885914276A918F17E040A09D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E96E842BF704E05B248FE9E9474674B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed.cpp" - "TargetName" = "8:flamespeed.cpp" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2FAD4B54152F4F698FC2A1BAF8831599" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_MultiPhaseEquil.h" - "TargetName" = "8:vcs_MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_303F2BB4ADCE4E0F9B2B45747E66C057" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Solid1D.h" - "TargetName" = "8:Solid1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30B3C39CD6444421B6418F00C5013828" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\FactoryBase.h" - "TargetName" = "8:FactoryBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33C1BA231B1F42CDAD49F0298167D9BB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3450E67DE4E1425B8B41AE70CA5BEEE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_349A87700DEA427C88D340397A9BF256" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_349F239FA90543188EEC8B24410296BE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ctml.h" - "TargetName" = "8:ck2ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_35C660FB7AD5450692D9BD8417AE21AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\LatticeSolidPhase.h" - "TargetName" = "8:LatticeSolidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36101E75F83548D9864D35DB07B7612F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_IdealGas.h" - "TargetName" = "8:PDSS_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3680F9CE2F25442489E0ACE568906072" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2_blessed_0.csv" - "TargetName" = "8:flame2_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_379A958666C0409F82ED9D1C390CF2DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37F5B433E7DE450A995FDB31F909269A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterPropsIAPWSphi.h" - "TargetName" = "8:WaterPropsIAPWSphi.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385781B4728F417C82E6B75637E10AE2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_38608699D4184347BAF2FFBD76936E1E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39905D4925564C469DE3CBE980978999" - { - "SourcePath" = "8:..\\demos\\demo.vcproj" - "TargetName" = "8:demo.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AA804A010174CE4A2EC5E33D1C8CC8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\Makefile.install" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3BE1A06F6E6840F996050C94AA740686" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C4A157925824371A0036E03B719B89F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CDB43EBBFF14ED58EA458CC84B18F9B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_IntStarStar.h" - "TargetName" = "8:vcs_IntStarStar.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D5BF771EBBC4AF0AA84C1E114FABEE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportBase.h" - "TargetName" = "8:TransportBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3EF615A4DD26446799672090D51EBDE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_403EF1958EF24BAC9D6D715D0A993803" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4144EDA2CE1A466F80088CF6F5482CC0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41915DD244F142089CE3793E90B3DF12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4207771E67BA4E4794A2397BE181FFEE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Mu0Poly.h" - "TargetName" = "8:Mu0Poly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4254D2D0022C4F1EB474B3635BDB1266" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42CE73EDA2964A82BFAF73C2CB6E4B7D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42F68AC09DC0410C8B66213635F5C982" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Species.h" - "TargetName" = "8:Species.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_442F1B94835E4D329C9233176A3165FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44312EB878254560A66978A2E8304A92" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_450EF4722F9B40F5A7A85BCA48C2CC20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_453760704FC54E5B9D98DD1CCD79BDDC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46482802B89A4F9594C4C39CF0441C65" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_471DA45E05AD445EB7B143657DB4688C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4761AD8D69E841E298EB859CE92727BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS.h" - "TargetName" = "8:PDSS.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4783AD3526B547709409884B6091E0B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A22C4B2BF8947AA8789A8558BE2F728" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SemiconductorPhase.h" - "TargetName" = "8:SemiconductorPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A34080C008B4F63A073D329C0B47ECA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\flame_fixed_T_blessed_0.csv" - "TargetName" = "8:flame_fixed_T_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A76C0FA9CF84058918F0E1F8126D049" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A9D96662A6C48C980D6FCCABF7CFE20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Nasa9PolyMultiTempRegion.h" - "TargetName" = "8:Nasa9PolyMultiTempRegion.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B60DDE68DB84E76B59AC82DD6A48B63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BF0C48B45924AF1ADC6B12A5E6701D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BF9981AB5684655AC520EF2C245AF5C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\AqueousTransport.h" - "TargetName" = "8:AqueousTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C9C4D481569458FB7B6C4535E474399" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4CE041E0453E4088900BEF68B80427D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D48D12F66B44E83BB214AAFD8B311C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E5E333FAEC14ABFBD58531E8DD3C26C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MMCollisionInt.h" - "TargetName" = "8:MMCollisionInt.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E67F8AB73144D67944EE83F06E06040" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed_blessed_0.csv" - "TargetName" = "8:flamespeed_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EA368FFB8E84A9C88A4BEF0FAFC5A3A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EDBAF4F0C8C401695EE60D9184C34EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\flame1_blessed_0.csv" - "TargetName" = "8:flame1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5072AB7D92454CC39627CAE67CAD2E6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5095A6E6BF554FEDBAEF263F05DDD77B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_509B9A1248FA4683A81BBBA1303BBE71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\PrintCtrl.h" - "TargetName" = "8:PrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50BE0A8057A64D38862D65984EB9CD88" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50C880EA8AD04F98ACC7B17C25481323" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E0B210177949DABBDC9E382016C5B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidJacEval.h" - "TargetName" = "8:ResidJacEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_521AB345758F4DE2BCCE824F6E10A19A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_IdealGas.h" - "TargetName" = "8:VPSSMgr_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52F34CA3B6284884A5FF333B2261DD88" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5359EA42B033411BA9ACEA14D4292527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53DA7F1154AD4808A379EDAE1B4202B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54138DA393504CA593F2B307AD887B57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54161044EDBC4F718F7FEE349189D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54FC3FA61AA64EA983695B64461739FC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5571BE3AECFC4E599F4A538E40620D21" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Surf1D.h" - "TargetName" = "8:Surf1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_562372D5415546AD844E25834E0DECD4" - { - "SourcePath" = "8:..\\demos\\combustor.vcproj" - "TargetName" = "8:combustor.vcproj" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5662A7CD4D8C4E5F947A6F355C20C1A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaThermo.h" - "TargetName" = "8:NasaThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_567A83C285154238BE6C478046C5BAFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_573061F4D2BC47AB86EF163F05DA0D62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5790A0F9267C4FA88EE7DF95DB07A8A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_utils.h" - "TargetName" = "8:ckr_utils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_57E6A3FDFDE34C75840B0908431790A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowReactor.h" - "TargetName" = "8:FlowReactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_592F2DC945B24BDB801B54E965A109D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5939C6DA148E4B918D12A3F0CE7DC863" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\adiabatic_flame_blessed_0.csv" - "TargetName" = "8:adiabatic_flame_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_595064E84283443CAC06EEF5106C0641" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59A2A6B397EF4B649D07CA5B10A1D1C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A3FBC380FAF43D0AD7BDFA47871DC92" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\RxnSpecies.h" - "TargetName" = "8:RxnSpecies.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AD1E279C6CD48B09715186E69A55483" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B27B82837184966986697D84EAB8146" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B8BDA463997482B8E4B38A6883B9F20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5BC3883CE3F340CB8FFF56C6195A1121" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\npflame1.csv" - "TargetName" = "8:npflame1.csv" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5DFA2ECEDEB446DDA04762D262A2F376" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterProps.h" - "TargetName" = "8:WaterProps.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E55DD812945431BAFCF8E3595428F15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgrFactory.h" - "TargetName" = "8:VPSSMgrFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E6021DD18EE41D8BA4C00CA071A2124" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\GibbsExcessVPSSTP.h" - "TargetName" = "8:GibbsExcessVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5EBBDFD79C6D4331873E595874008962" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F4850CA9CBC426485E4F0FCBC16C882" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.8.0.win32-py2.6.exe" - "TargetName" = "8:Cantera-1.8.0.win32-py2.6.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F7CAAD1BF2A476288C013604222BBC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F999283D3304F89AEC9879F07D2ACB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60571A0C1CC14E77AB558ADB65B78D30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\Nuclei.h" - "TargetName" = "8:Nuclei.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61C9DB5B055E4231B975615A8859A10A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\run_examples.py" - "TargetName" = "8:run_examples.py" - "Tag" = "8:" - "Folder" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6263283A4DC1424893235D92CA5C7F32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Elements.h" - "TargetName" = "8:Elements.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_637A29A294854BEB94243A2E2BE72725" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_63F7E804AA36436E9766AD90A1559698" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_641E5DD328FC499FA9E9E2BA97E138D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_64BFD140F3C9407497F177F7920CF70C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6693B16E7E2A4AE3ADC494334E18058F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6725A6F15136415BB26BADDD3CF96F66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6728976522BA4F4BBC490ED099A22916" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterPropsIAPWS.h" - "TargetName" = "8:WaterPropsIAPWS.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67EEC6CEAEB7420BBA0A70992A33175D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698CE4C4A1BF440CBD28B8785A3D9F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698E1FE2069C44AD8727EDCB59AFF2F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9D618F4BAD480B82EE6F7A7EBFC5F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_defs.h" - "TargetName" = "8:ckr_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AC7C33351854C93B3A9E0ADCECF0100" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\rotor.h" - "TargetName" = "8:rotor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B62C2B086DE4A74ABFDB909919F3B1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BF0F3B78ACB42BEB1F321B053DE8255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D0E6800917A4CEABC5B55639C33C7FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6DE44E9F30F44007B2E7B044619759A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\spectralUtilities.h" - "TargetName" = "8:spectralUtilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6EAB3FC0E0224271BA4985CA3779D862" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\LiquidTransportParams.h" - "TargetName" = "8:LiquidTransportParams.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F68661FA8524882AF0A5D77FA5A6124" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70297F7EB1434F9FAA59A5A015747606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70F7102F07A84B8DB4E3D5FD338F5540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_71188FBDBE8C4C52A89AFDD622B108B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PureFluidPhase.h" - "TargetName" = "8:PureFluidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_715760DB29D349BC81FFA61C5AE33F17" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7189BBF81A8B46F596C2D94D52CA15DC" - { - "SourcePath" = "8:..\\demos\\NASA_coeffs.vcproj" - "TargetName" = "8:NASA_coeffs.vcproj" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_71FEE454B6604E2592820EDDBF4B9B3B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C19E279C1048D59F0DDED03719FF90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72F9F17B043C4818960ED80D5809861A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7371B6545BE04A179D3611DBA99BC2CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Phase.h" - "TargetName" = "8:Phase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73F2A9908B3D4174BFE10B56DECDF6AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKReader.h" - "TargetName" = "8:CKReader.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_748B480FBFE048E8908EF0D5DC978E87" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_defs.h" - "TargetName" = "8:vcs_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_749CE2B462D64C4D80F72A3266FF5844" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\Makefile.install" - "TargetName" = "8:Makefile.install" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_751FCF7F6799471992B6C1D080421B25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_75BE33EC2FDD4D92831EC94E3583F2E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7631AE376A6E4745A31A258B2EFEBEF7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77579BAF22FE4F6BBA6F6E55C2227394" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_788EDA9BF8E84FAA87DB7C2751076A9B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78A88A902EE84766911446EF648B4A20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorBase.h" - "TargetName" = "8:ReactorBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78EAF772B5414C25BD4EB77E1CE069A4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_species_thermo.h" - "TargetName" = "8:vcs_species_thermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_793996EB3E1F479CA275A7CEB5851658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A44C47D4CAD464A97B0209D14C65139" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CDF724656054425BFB271F06BD2367C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_ConstVol.h" - "TargetName" = "8:VPSSMgr_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D867A3EE9034A2ABB13B35762290436" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Wall.h" - "TargetName" = "8:Wall.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DE48AD20C384ABD9117F64B463DAD1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E40B44934374E2C986A8908F00523D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitChem.h" - "TargetName" = "8:ImplicitChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E6FC70ED43A4A3293D06D67EBA76D30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7EA80C1EF9194C0B8790BBFE6CFF7C10" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F2FA130741D4EC0BE2D86966108FCDD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_812FFA9EA6DC43FA8D244219CD7096F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_818FC04B27FA48F991F1F27AF1A02D2B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaPoly1.h" - "TargetName" = "8:NasaPoly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8316AAAC7D124D08AC76B1E9B1B71597" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\AdsorbateThermo.h" - "TargetName" = "8:AdsorbateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8392F052F9604AD6A99C28412715DA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\SquareMatrix.h" - "TargetName" = "8:SquareMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_848A110B76D949EDB0ADED7CE6454C31" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85C910D16AEF4A4C9569503ED54C2E97" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85D870ADC88A4F87A4AD54AC91BE3F54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85DB813C30EC48A8A5B8C91E10645CEE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\SolidTransport.h" - "TargetName" = "8:SolidTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8621C91C5A2D4D9EA50AED521E7FB7CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8644F7E4286B44BF849798AA1F3EF62A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_86801790ACD14519AA60F61CEE1E1518" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8729B2D3CFC043EAB78F286D76787B78" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87399508B62F47D0BC5E993FD3590D0C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8768926E874F4BFA9F36BBCC563882F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_878CBA68A74A4569983B332DCCEEE813" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\LatticePhase.h" - "TargetName" = "8:LatticePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87D616A7501545E899208A74F7D28235" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\solveSP.h" - "TargetName" = "8:solveSP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883ED26352B04EDEAD89A3CF9C86A55D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_88C7677DFAD94E838F62E0F1663FA36A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_896518E51E604EB388922C7AB451EA56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPStandardStateTP.h" - "TargetName" = "8:VPStandardStateTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A0AEE06B352402FA6E6C5A73E042713" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ConstPressureReactor.h" - "TargetName" = "8:ConstPressureReactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A432F8B24A842C0A70A2D8FD906E798" - { - "SourcePath" = "8:..\\demos\\kinetics1.vcproj" - "TargetName" = "8:kinetics1.vcproj" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A44A594199C4334B78F3AA5D6532ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A9B2D52CB344031AF51FA1589C12A9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Element.h" - "TargetName" = "8:Element.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8AB8441158004A009E974813884A8FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C16EDF915404D23BB491F51467D0612" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterSSTP.h" - "TargetName" = "8:WaterSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CDB9C24D5594BB2BEC1EE74C8FED863" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Reaction.h" - "TargetName" = "8:Reaction.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_904FCD6D55B842029CEF52AEFDEA4256" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_910E00C9C1E6469BB7A10318D60163F9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_Water.h" - "TargetName" = "8:PDSS_Water.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9124D54F67494EA18B08E5CCB0DA12B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\npflame1_blessed_0.csv" - "TargetName" = "8:npflame1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_917A158208544EE3B58F022E82B35395" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_91D267E7F9ED49DDAAF7222744E6628A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\Makefile.install" - "TargetName" = "8:Makefile.install" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_928A4CF19A3E4474AA4EF038E37FE2B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9315EDEB72EF4E0799CBBD629C797E65" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_931815CAC9E94D25949A7DBDC05A5E09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_934D9F093D1E4D64A3E1AE1B319163A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_General.h" - "TargetName" = "8:VPSSMgr_General.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_936D7ED327F842769055274860C7B7CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr.h" - "TargetName" = "8:VPSSMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_94F7E346CF344C0291219A51568B2A11" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ConstDensityThermo.h" - "TargetName" = "8:ConstDensityThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95518B1185B344D8A9E17D449E22A07A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_955D5137DD3645A68F22AC7081F4BBD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\flame_fixed_T.py" - "TargetName" = "8:flame_fixed_T.py" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95AD84099D86441F9B0C251039B1A63F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9742F8FA66744C10BDA33C445BB1B5A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97C3AF757D4E47FAA20861128A24C4C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97F452B2E24D4B78B4AB754AAB4D9247" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97F7FCC94E42453B981D376F37B97503" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_987750730309466A9EC1C2E3A5B1D20F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98A1AAE4D6A54C8697F75F0890873F23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SurfPhase.h" - "TargetName" = "8:SurfPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98AF00ED289F450889C13394489C3D4B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\StFlow.h" - "TargetName" = "8:StFlow.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_992BC758B7374D8D9CA69B550F538255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportFactory.h" - "TargetName" = "8:TransportFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_999E3B46B59C4234A7124019401DB7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\stflame1_1_blessed_0.csv" - "TargetName" = "8:stflame1_1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9A1598ED1AED4AF7BE7E8B3C1839F085" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\mdp_allo.h" - "TargetName" = "8:mdp_allo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9AD65BFB57C24804AF9B53D18E3051AD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9B587B77A381433887EC3C60A2DEEC56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C83B54D3B124108AED04884A3931252" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiJac.h" - "TargetName" = "8:MultiJac.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D9C52DB234A43C88C442298E232C316" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E2FD424808A4D3A9297C8DE4EBF6A52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A08E2857F1B1474E9AAF6D683CC3A7D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0C6574C5F6E41E18AB6AF904617B8D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKParser.h" - "TargetName" = "8:CKParser.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0F47D115D1140D78EA15ED301A96FDF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A241F7A927984443A3BB7B186910ADED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5136AB1792B4B98937DAC7FD6AE4E90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A52F55B639B6498B993D0C8831EC29A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A56B4B64A8E2482883F4F76F278103DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5898A75EFDA4A008CE657485600DB0F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5965821A5034D3CB9417024DA48CF5C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A691E3B32AF54F4AB5F4B48577183263" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6CD4A6404154996835A7D9B2301BCFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8313B076DCE4F47BC5AB1C18D54D1E8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A84BEECAB2D34EFCA56FAE2792F51D7D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A88814C184944C9FA3E00A2DE301BB17" - { - "SourcePath" = "8:..\\demos\\Rankine.vcproj" - "TargetName" = "8:Rankine.vcproj" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8BE7E9B8E89418B9C209C26C2481E52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A932A0AF2C944F8F9067A24C25B978CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A95FA829E1D342E0BD407CA2FF074E9A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MolalityVPSSTP.h" - "TargetName" = "8:MolalityVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A9E3A786A2954BC687EB209593DFAA31" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\kinetics1.cpp" - "TargetName" = "8:kinetics1.cpp" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA0F97AADCE24AC29EF73E7D6C696C54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA23BF6053F542538AF0B7FB48C0B4F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\adiabatic_blessed_0.csv" - "TargetName" = "8:adiabatic_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA6BB20D43F142F693E09AB9671A7F46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB701B636CC24D9F9CAA71C6B897E7AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_DoubleStarStar.h" - "TargetName" = "8:vcs_DoubleStarStar.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ABE7E862C38241F19744114841629864" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE6136D7D3F341089B23CF2FE032F852" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2_blessed_0.csv" - "TargetName" = "8:flame2_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEC8DE39CE7B4849B1AC9407148408B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF2F612EC55F42C181F990BB5BF85D09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\soundSpeed.py" - "TargetName" = "8:soundSpeed.py" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF505C309B83425BB0ACBC40586DC467" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_types.h" - "TargetName" = "8:VPSSMgr_types.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B103E721182F4DD6AD7F65CF565F83C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B16017E037F7472DA99F97FA0994567E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B26DE6FA1DBA4CD7A54798EFD42761C7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reservoir.h" - "TargetName" = "8:Reservoir.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2E109695C4F4E329F991DAB91EC054E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\piston_blessed_0.csv" - "TargetName" = "8:piston_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3B4F39E240F4463BB09201FC8B32CD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B42AB8E6DFE545408B9760D0D10919CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc_blessed_0.csv" - "TargetName" = "8:sofc_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FE641E9EE14B3A98EB023B9B281012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5F13C260D704D10A1AA9E9C428FD17C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5F44ACDAC4142C9B086E996419F26D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6B7A55B6F78408B87B10B799DE5A19A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\surf_pfr.py" - "TargetName" = "8:surf_pfr.py" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6BB322EEC614D6381014E64306652A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\LogPrintCtrl.h" - "TargetName" = "8:LogPrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B74214D38A5B4B88B5E169B9E638C59B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\functors.py" - "TargetName" = "8:functors.py" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7E71DDEC9694BB3913A5A951D071C79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_Exception.h" - "TargetName" = "8:vcs_Exception.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7FE7CDB0F4C4BDAB730BB096498F836" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_ConstVol.h" - "TargetName" = "8:PDSS_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7FE86B0D0F1439F8BD9FDA7DC0BC6E8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\rankine.cpp" - "TargetName" = "8:rankine.cpp" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8DC8835383B4D81865DE6728E152C6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B92716F1835748778D2EA2A170A3463C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B931BA0672394A6D8134E66E8381B7D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\equil_koh_blessed_0.csv" - "TargetName" = "8:equil_koh_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9D00A7B741A4394B6D20DFBAD7B67B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Constituent.h" - "TargetName" = "8:Constituent.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9F7ACBBB03641A189D48B3F96B177AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA434DDB92844939B4727EA0D07F28F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA805C53980C41769659D085C5C8E0B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC48260E6FE744BCB551169FC8E965F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealMolalSoln.h" - "TargetName" = "8:IdealMolalSoln.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC7DFDE6592D463B95C307DBE7305593" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC7FECC38DA64F6DBD2CEB31BECB4861" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Resid1D.h" - "TargetName" = "8:Resid1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD9ECC0B46EC450CAF842508F8F7BE33" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_HKFT.h" - "TargetName" = "8:PDSS_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BECC05E6C8EB47B68F6344A00F04C46D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0D8D2C4874C4694895DE76AF8ED8E8D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0E4D3E9F985430CB96D8E96014865FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C1510D42AA964597A8CB449C6B94E86B" - { - "SourcePath" = "8:..\\demos\\CanteraDemos.sln" - "TargetName" = "8:CanteraDemos.sln" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C27608223A4A46CFB21A58073E99629E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\diamond_blessed_0.csv" - "TargetName" = "8:diamond_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C357D956140243B5A87AA9011DAF1207" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C4F6F46B0B0344169A6195BE5062914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C51F790219A544D29B9BCBC4B83E1C3E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidEval.h" - "TargetName" = "8:ResidEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C620775E0B56481695BDA176D6BBF60A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6896DE4391E40FF980A950DDE8B43D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7FFE7D762304EA08B7376CADFF4D8C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_Water_ConstVol.h" - "TargetName" = "8:VPSSMgr_Water_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C8198F923CDB401EAF223744653A6806" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C844497867604180ABCB21CF50308A75" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\L_matrix.h" - "TargetName" = "8:L_matrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CA734CBAEC8440EC8CB32AF7EF8D71AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCBD553838A74D2AA8E5C4392EB0B6F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCDF5C1EFB75477BB295929481C75CC7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF5084794E3343669C4337B95A9F7BF1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_SpeciesProperties.h" - "TargetName" = "8:vcs_SpeciesProperties.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFAF2622550E48AA9B0F502BD4022FB5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0A9D802F4924B3B8C0429DFF0D37C9E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\EdgePhase.h" - "TargetName" = "8:EdgePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0D86929159D4E008C467978E92A6B0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\OneDim.h" - "TargetName" = "8:OneDim.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0E38FA5FFFD42BC9507FFC804B3B271" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D1CD893E014F4FBE842B4B0E2CDDE652" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D238C397E41B4DC684CF79761C4B85D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKineticsWriter.h" - "TargetName" = "8:GasKineticsWriter.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D29E08866CBB44D0A548B5F8A7D90584" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\flowControllers.h" - "TargetName" = "8:flowControllers.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2BB3D54E2B2459596E3FCC0C5648A63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermo.h" - "TargetName" = "8:SpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D418D6CC07974B16B70C9B93970427FC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\clockWC.h" - "TargetName" = "8:clockWC.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D428726607B744478982A6F3AEBB5937" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\DiatomicMolecule.h" - "TargetName" = "8:DiatomicMolecule.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D53FFA2FD41F4B55B55A5F34D59755C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D5E167B7033D49188854ABA54CB6A543" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor.cpp" - "TargetName" = "8:combustor.cpp" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D669B0F109D24B248427555BFC1EFFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\State.h" - "TargetName" = "8:State.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75AC18CFD714D179B403F394FEE5C6B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MixTransport.h" - "TargetName" = "8:MixTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D7EDA76276BA47C5B427D5289E602655" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Constituents.h" - "TargetName" = "8:Constituents.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D8DE5B3E74534CEFBF787CCC4124FF6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PseudoBinaryVPSSTP.h" - "TargetName" = "8:PseudoBinaryVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D9342B2A479345D79B17511A69B5E867" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D9EFEFA2064D49EDA49FBE09DEBC3C72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA59B07FBF1F42CDB8AEF8B24809BF08" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA8A6A14EA7A4B87A06CA40B37404208" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB58150AE7CE4F5390C9322D5F5E7235" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\PID_Controller.h" - "TargetName" = "8:PID_Controller.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6D039C3ED14EE58F469C211EE0336C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC239E2B54624CCF8D26F85C98393DC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_Water_HKFT.h" - "TargetName" = "8:VPSSMgr_Water_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC32635C462B40BEBEEC9176E79A9BB8" - { - "SourcePath" = "8:..\\..\\..\\winconfig.h" - "TargetName" = "8:winconfig.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DCE0313BBE4C4DFEA23ACDBB6863B390" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DD6D9600C356455D95BD2C44C50214DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE4BC3661787450DADE7B47CFFFDAFB3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE6ED970A6634704843FC2D976DDB51F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\HMWSoln.h" - "TargetName" = "8:HMWSoln.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF09D62385DE48A0A9A5E36414AAEADF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF631F75976846E58594E4C6FD1630C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF78E69F06884ED8B21785EFA82570F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E00C0F5054204111B95C89CE4CF7CFA7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportParams.h" - "TargetName" = "8:TransportParams.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1E6F5ED150E4549979E0E3F9E6D2F67" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2DB44B0AA4245D8BFE17D1B069BAE0F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Inlet1D.h" - "TargetName" = "8:Inlet1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2DDE31CAC874AE0B9F7F9145248BE6B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rp_blessed_0.txt" - "TargetName" = "8:rp_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E40175C04F974A7BA19133984051989B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4171B5DBA664372BB43F3B40B2E1236" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ThermoFactory.h" - "TargetName" = "8:ThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A483565C5E40B79805552DC4B5292C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E78FD6989E1D4799AAAD31ACD43B0C1D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\FtnTransport.h" - "TargetName" = "8:FtnTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E90BD26B31DB42D59ABCCF0A14CCCB52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\NonlinearSolver.h" - "TargetName" = "8:NonlinearSolver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E91E1B960A5D482C848F0DD9A292A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\Makefile.install" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0930AEA1074763823B836B96A138A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB7840FED8294FFDB3111C6B3DD32833" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Domain1D.h" - "TargetName" = "8:Domain1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB82DBEEDAE14B51840A9D7153E52BBB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EBB20B541FE543F7A695E466975C6495" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoFactory.h" - "TargetName" = "8:SpeciesThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC5F3263FCAA48CEB25E23414F082818" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC6786EBE72E46B694D473463C72A2BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoInterpType.h" - "TargetName" = "8:SpeciesThermoInterpType.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECA3396FBFD54A94B2DFB33B080F0D4E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECAF852C95DD46A39B119046E569A5F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Nasa9Poly1.h" - "TargetName" = "8:Nasa9Poly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECED5D161C3348B98B263CFECA0A7DCF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED40FDD34E984498ADC37D88B43AEAA4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaPoly2.h" - "TargetName" = "8:NasaPoly2.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED67782207C047F4A5935DCE2E79F151" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFA30E0040CD47D995300679F7C2846B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\StoichSubstanceSSTP.h" - "TargetName" = "8:StoichSubstanceSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F01B5FE1A51E45AFBA508244A268A056" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F0281BD9BD9F406A803EEBD30E07211E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F18978587EE441EA8B9B276B9FE566FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F227BC16EE9F47A7BCF4A15B34565073" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F2A92891BD6D4A87BB614760C33A483D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ct.h" - "TargetName" = "8:ck2ct.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F2E355F7534548FA97DD0E22363A0107" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F33D31C689BD40F2AF95AD8905B4CA5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3A73DE374274D23B5B71D3950610F46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F47B7B39692A4CFFA8EADC42095D740D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F495A54DE04C4B39B5F52C4AA64E7060" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_solve.h" - "TargetName" = "8:vcs_solve.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4F48A978F924204A75079994744E641" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MetalPhase.h" - "TargetName" = "8:MetalPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4FB2F3079254D76B2DF7DF3B7391098" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\electrolytes.h" - "TargetName" = "8:electrolytes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F52E35C2A75341B5B07D033F7072C765" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F5B0599D33DE4EA882B0C846B85FD66E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F622D25373114C90976CCE00B20B11FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\StoichSubstance.h" - "TargetName" = "8:StoichSubstance.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6E4EBD5FFCA494C8355AF6764844103" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F70CE7A5A1844D3A99121A7A41ACAAF7" - { - "SourcePath" = "8:..\\..\\..\\tools\\templates\\cxx\\demo.cpp" - "TargetName" = "8:demo.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81A7E5426654A1891028EF1BDDF87CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F862E9C9A48D4C569698C90E1EC6850B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F88CE78D01A1484A9A363ECD019F9ABB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_prob.h" - "TargetName" = "8:vcs_prob.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8E58FC7A5A74126B5F8D78607815377" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8FB0389B5924D9585AA8CB15F4A2BE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ThermoPhase.h" - "TargetName" = "8:ThermoPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9D283B3D2094812A29561F09605DE12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\DustyGasTransport.h" - "TargetName" = "8:DustyGasTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBC9FE116DDD46DEB48CF787395219C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBFB14FD38C7494B8A4C46E34805BC91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\surf_pfr_blessed_0.csv" - "TargetName" = "8:surf_pfr_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FC806BD642A04A1EB4946516ADF8D34E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVode.h" - "TargetName" = "8:CVode.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FC86845237DD456CBCC89B92C093E444" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FD0456378D394DF48B3AB5BD0502EBB1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FDB8A6CE75A943ECA1F4D7DFB8F69902" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFFDE78FD53C4E159AF3540A42F61677" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DB5A91AA0717429F8150BEDF3E9C5883" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_459DD0AF25C34F349354CA380B58D1B1" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_864A875C734E4F7993EF599A792089AF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0A794889F1894108860FAF5B5C19F2FA" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B07B49F047FC40469C9073136E5D2AFF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_E012FB4758FF455E92C3DDA25362EAA7" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_352275D48884496D8522F3217A13F3E6" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_46C8AF45EE22482E8A160E14A2420774" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B5AFB668A86B4992A1E2A55DAE0CAA16" - { - "Name" = "8:templates" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_62F15E8A639B40A680E06DA189388AC0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_30C49B8557964DAAA5648B72B486BC0B" - { - "Name" = "8:diamond_cvd" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD5998C3AA514C3F9D8E350B7AF5182F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A189A372257B4D2C98AC054F152082AD" - { - "Name" = "8:catcomb_stagflow" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_399B14FE027144C088EA5D752CD26E05" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - { - "Name" = "8:critProperties" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_448EDC4CC83B4FEDADF2588F31B25388" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6EE0A973C3154AF889BC747660A3DDA6" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0FD260E59E584BFA9D24F853D4A45C4E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_41BE50E702034B8C9B8D2A4DE46C52C1" - { - "Name" = "8:reactor2_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6412A81825374E6E826D1B646E96CE24" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_862D1191D2FA47FDBFB0D20643AE2810" - { - "Name" = "8:piston_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_99B345421BB245F58B4DA9FB52ACE08E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - { - "Name" = "8:mix2_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4E58B33F5F65432689D27BF980D3557A" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B7CA7580B6FE4EBCAC388C5D16971D37" - { - "Name" = "8:surf_pfr_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9F36D7A44DE545179026B4E34D467D59" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_CEAF34861F46422B868255409BD206EB" - { - "Name" = "8:functors_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B2447D4E250A49168D4862CB0FD92145" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_EC6DCD68540E416F9C134117A56B0A60" - { - "Name" = "8:combustor_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEDF13CB9C8D4564BBC43FB231DE09C4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F38CA433DA0045498BDE87595F79F7ED" - { - "Name" = "8:sensitivity_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_75AE7C55505B4136A868BE9DB0C833E4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F5B8CA7CC3804769839EBE6C8689F404" - { - "Name" = "8:mix1_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DDFF0DEC413C4781B8ADD5B64F0BFA8B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_FFAAB2E584E943F89B7A8A54812FF5E0" - { - "Name" = "8:reactor1_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8C062A19E942435296F9D104811208DE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_168B35477AF641A0B1FC3CA609528ED8" - { - "Name" = "8:soundSpeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFDA88FFC7DF473A98F62C584558AAA7" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - { - "Name" = "8:isentropic" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_012C7C24E9854546A6D9100EAD67751F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0976E47E00BC4F85A2393D8678A18D6D" - { - "Name" = "8:multiphase_plasma" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_67362A358639403EA42173D586FD992C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BB35C35F43D41B3B6DB55DE61916248" - { - "Name" = "8:stoich_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4DB8FE1DA6464EE087D1C85D09CCB548" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_8E4436C4886441AE8BB0E460DFA8BE7F" - { - "Name" = "8:adiabatic_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7989BD54B4E641BDB10AE593994219B3" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B86834CB836F4AB2B3D29D6BDF9C35A6" - { - "Name" = "8:simple_test" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_22B3BAF5C13B4AF8AF215DF801DD3046" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_22760F0D8ABC4AB8A5B0948B2CCEF635" - { - "Name" = "8:free_h2_air" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BF73867B624E475B8B0DE5A9375C8632" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3823235E9E3E445CBD912A80B866DA0B" - { - "Name" = "8:stfame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_3582CFF8397947419FC216A757E77A4E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_496FD029390C4E4095219F8C5BD1246F" - { - "Name" = "8:adiabatic_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D61C1C54DF2D4449A5D4396B00A84C64" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5A9326FD6A214497A76F171E934D8729" - { - "Name" = "8:flame2" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F1A9ADFAE8044E1DA1199836DA6DC838" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_AC712E75B97F4766953A8ACF332D3F1C" - { - "Name" = "8:flame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8CFD385224704C63B6A1C100C26C5395" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_C466AACC518A400CA4AA80226796F0D1" - { - "Name" = "8:npflame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_345BD77AACE24A81BDD5700796F2E20F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D7ADDA3C318D49EBABB7636C3B80ECD7" - { - "Name" = "8:flame_fixed_T" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DA35FF699B954BDC9FFAEFD518E4071E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_91BFCC5A92684F63A014CEC3B9265F1A" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4550D17AF47F43D38272308352CF8718" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_335A9AE259D245E8840177A55C54701B" - { - "Name" = "8:NASA_coeffs" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6ECD8DEC64D04108B9357B5FFB3CBD8E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_42895A51CFC946CC8F5C162E27B7CEA5" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E8977A1C8EEE4380A587A77D385169F4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_977472896DA345AC9C1D2C3999F9A4A2" - { - "Name" = "8:flamespeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7B3B00D492B044BEBA59911B7C814970" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_996658E24E89485D8D6ED952560576DF" - { - "Name" = "8:kinetics1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F05750F1C83E4A10A40290572D9130DA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E345C75CD39149EC856898DE24D48746" - { - "Name" = "8:combustor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9512C0F75C404EE1A8CDAFE1C98937B4" - "Folders" - { - } - } - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{52E4E337-4FCE-42FC-9AC9-6EEECE8C231E}" - "PackageCode" = "8:{EA5FC533-4107-4BFF-A046-F5EDD74A7220}" - "UpgradeCode" = "8:{1E20CBE3-A0E1-4DF5-AC48-85FF68A24B77}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:FALSE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.8.0" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_99B1AD3DF5084F17BBA2DA9A8E4A758E" - { - "Name" = "8:C++ Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_3083E770891548348F700E253FA8A634" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:Microsoft_VC80_DebugCRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_997965EBD0414DD3B8F2CD9270032C7B" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_8_0_microsoft_vc80_debugcrt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\debug\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_14738B23CCC74201B3F3619639554DD1" - { - "SourcePath" = "8:..\\debug\\cti2ctml.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{4F5B4442-98E5-4B11-9239-CDF5148C1902}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_1861CF609E4C4EE2B209A26A6705ACD5" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctcxx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_218EB718190641D592079146D7F47C17" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\SUNDIALS_SHARED.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_262DC17B610648E5A48002B469EC6A57" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2CC0F0BF60B24FF39FF09E9CFDF038BB" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\base.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3CCADD10D5934D599E6AAFF04D6353B2" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_4396FC89207E4A7B985CAAC11722BD68" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\kinetics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5138C167F7FC48EBA02A031F6F05DD67" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8F6B0F5E781842E89113C86D1380E727" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\equil.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9AC9ABAE8E744589A8EABDBC4C1B063F" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\CVODES.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B137545CCE204222B6876022AB4E6EAD" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_CC9CBF448698418B83091250EA8BD78C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\NVEC_SER.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DA6641D60355480A978E4B4464AA5DF4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DD3B996C17714923935F9497EC38D611" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_EE7C6EE3A3154788B22D1EF05798FD2E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_EF86BEE203814AFB81EFC961B7A3E77E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F002FBC310564DAAB051DE2CC004A129" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F56FE241FFE6446197BDA67DD816F1E4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\numerics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F602133B4312461CA85ABCBC52B27AF0" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\thermo.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc8/SetupCantera/SetupCanteraLite.vdproj b/win32/vc8/SetupCantera/SetupCanteraLite.vdproj deleted file mode 100755 index 84df670cc..000000000 --- a/win32/vc8/SetupCantera/SetupCanteraLite.vdproj +++ /dev/null @@ -1,11949 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCanteraLite" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02F0ACFAB9234F7F822B893C7DC32F1F" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02F0ACFAB9234F7F822B893C7DC32F1F" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0700963A1F1B41FFABC3911498DB18B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0936663A9C31411CA21989F4FA39A5F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_09812E60422340BF9B92C7BF4CDE6FC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D47388E1B474AF08F6DA0FE72025C42" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1603140AC6F7489CA14D3F41F58E9379" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_188F8F797CE24E7C9FC6BD62D2B5D37F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A66CE0396934BBDBA728386725B2310" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AA05F39A2464BDD922D26B58FE78BC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DF1B93159BE475CA0438F31722F856B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DCD90FBD1DF4FA588238C70E0BADBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46756B27C91E4C17A9F3C06BCC6D9011" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76E915885B634DC6B57F89520C4788A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85089C17D248A7A8A12641C4F86125" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_811F3F47C3D94B628C68557B0EB6B36B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_820901EF2B7645DA9A49A95F3E9DE675" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_979C4C61FFCC47BF9DD9142A747D70F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E71EC4B7404230AA4186AE74AE88F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997EF831DA8A4F9C99259C70FFD9E6C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B44971E00A5481BBA5AFD0A2166D16F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1555851966F4CBDB4BE3837641C843A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44EA116D8BD401B9F5CB43FD0A516EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A571DB581B7B4085B6EE29881A27A2D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD850F3126CA46F9AEB85D4851B8149F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7ADCE96BBE64258BC9786A36007F18B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C21C0E1658844265AABB721C6F59AB24" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB2FCC33698242D0BFDAA47D5C4B0F63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3284BDBAC7847909EAF138FCCDD512F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA9C782985C041509BE9C4A7CB68A4A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3D9492FF8AB48679A4B287D1CE30AD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E885D5C620AE4F7B824607C2AE4001AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB1CB1838E7449B4B3F05EF3BA026DC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB89828AF09E40FFA26D353F1088C41B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8ED7A133CD24494B63DBFF35207D7A4" - "OwnerKey" = "8:_02F0ACFAB9234F7F822B893C7DC32F1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCanteraLite.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0700963A1F1B41FFABC3911498DB18B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0936663A9C31411CA21989F4FA39A5F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_09812E60422340BF9B92C7BF4CDE6FC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D47388E1B474AF08F6DA0FE72025C42" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine.py" - "TargetName" = "8:rankine.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1603140AC6F7489CA14D3F41F58E9379" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\buildwin.m" - "TargetName" = "8:buildwin.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_188F8F797CE24E7C9FC6BD62D2B5D37F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A66CE0396934BBDBA728386725B2310" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1AA05F39A2464BDD922D26B58FE78BC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DF1B93159BE475CA0438F31722F856B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3DCD90FBD1DF4FA588238C70E0BADBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\function1.py" - "TargetName" = "8:function1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46756B27C91E4C17A9F3C06BCC6D9011" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeeds.py" - "TargetName" = "8:soundSpeeds.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76E915885B634DC6B57F89520C4788A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A85089C17D248A7A8A12641C4F86125" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_811F3F47C3D94B628C68557B0EB6B36B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_820901EF2B7645DA9A49A95F3E9DE675" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_979C4C61FFCC47BF9DD9142A747D70F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.7.0.win32-py2.5.exe" - "TargetName" = "8:Cantera-1.7.0.win32-py2.5.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E71EC4B7404230AA4186AE74AE88F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_997EF831DA8A4F9C99259C70FFD9E6C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\fixed_T_flame.py" - "TargetName" = "8:fixed_T_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9B44971E00A5481BBA5AFD0A2166D16F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1555851966F4CBDB4BE3837641C843A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A44EA116D8BD401B9F5CB43FD0A516EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1.py" - "TargetName" = "8:npflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A571DB581B7B4085B6EE29881A27A2D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air.py" - "TargetName" = "8:free_h2_air.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AD850F3126CA46F9AEB85D4851B8149F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7ADCE96BBE64258BC9786A36007F18B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C21C0E1658844265AABB721C6F59AB24" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB2FCC33698242D0BFDAA47D5C4B0F63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3284BDBAC7847909EAF138FCCDD512F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA9C782985C041509BE9C4A7CB68A4A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3D9492FF8AB48679A4B287D1CE30AD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E885D5C620AE4F7B824607C2AE4001AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB1CB1838E7449B4B3F05EF3BA026DC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB89828AF09E40FFA26D353F1088C41B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{1525181F-901A-416C-8A58-119130FE478E}:_1DE66EEE44224B05A700D4E2E93A0FB7" - { - "Name" = "8:#1914" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:SystemFolder" - "Folders" - { - } - } - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_D46FB0DFF1A641E9BFF64D43063070E6" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_DF884E96ECD3496ABA2742BCED88AAF5" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D0580EB36EB74E3A86790E702522DD35" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_C549C449993E4410B91BDC9AF59B84C5" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{6318C429-3F69-486A-9987-4D1EE1CA9328}" - "PackageCode" = "8:{0468CAED-E609-40B8-90FF-0A935A842648}" - "UpgradeCode" = "8:{86C96BD0-4EFB-4B99-AB55-8EFAF9B39170}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.5.4" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:_DF884E96ECD3496ABA2742BCED88AAF5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_02F0ACFAB9234F7F822B893C7DC32F1F" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:Microsoft_VC80_CRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_F8ED7A133CD24494B63DBFF35207D7A4" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_8_0_microsoft_vc80_crt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1DE66EEE44224B05A700D4E2E93A0FB7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc8/Sundials/CVODES/CVODES.vcproj b/win32/vc8/Sundials/CVODES/CVODES.vcproj deleted file mode 100755 index a681bcb21..000000000 --- a/win32/vc8/Sundials/CVODES/CVODES.vcproj +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/Sundials/NVEC_SER/NVEC_SER.vcproj b/win32/vc8/Sundials/NVEC_SER/NVEC_SER.vcproj deleted file mode 100755 index 13d8fb91f..000000000 --- a/win32/vc8/Sundials/NVEC_SER/NVEC_SER.vcproj +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj b/win32/vc8/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj deleted file mode 100755 index 88f12c8a7..000000000 --- a/win32/vc8/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/base/base.vcproj b/win32/vc8/base/base.vcproj deleted file mode 100755 index a7188c9c0..000000000 --- a/win32/vc8/base/base.vcproj +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/base_h/base_h.vcproj b/win32/vc8/base_h/base_h.vcproj deleted file mode 100755 index 2c4dbd5b7..000000000 --- a/win32/vc8/base_h/base_h.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/base_h/docopy.cmd b/win32/vc8/base_h/docopy.cmd deleted file mode 100755 index b4e83bd20..000000000 --- a/win32/vc8/base_h/docopy.cmd +++ /dev/null @@ -1,22 +0,0 @@ -cd ..\..\..\Cantera\src\base - -copy Array.h ..\..\..\build\include\cantera\kernel -copy FactoryBase.h ..\..\..\build\include\cantera\kernel -copy XML_Writer.h ..\..\..\build\include\cantera\kernel -copy clockWC.h ..\..\..\build\include\cantera\kernel -copy config.h ..\..\..\build\include\cantera\kernel -copy ct_defs.h ..\..\..\build\include\cantera\kernel -copy ctexceptions.h ..\..\..\build\include\cantera\kernel -copy ctml.h ..\..\..\build\include\cantera\kernel -copy global.h ..\..\..\build\include\cantera\kernel -copy logger.h ..\..\..\build\include\cantera\kernel -copy plots.h ..\..\..\build\include\cantera\kernel -copy stringUtils.h ..\..\..\build\include\cantera\kernel -copy units.h ..\..\..\build\include\cantera\kernel -copy utilities.h ..\..\..\build\include\cantera\kernel -copy vec_functions.h ..\..\..\build\include\cantera\kernel -copy xml.h ..\..\..\build\include\cantera\kernel - -cd ../../.. -cd win32\vc8\base_h -echo 'ok' > status diff --git a/win32/vc8/cantera.sln b/win32/vc8/cantera.sln deleted file mode 100755 index dbdbbaa9a..000000000 --- a/win32/vc8/cantera.sln +++ /dev/null @@ -1,345 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NVEC_SER", "Sundials\NVEC_SER\NVEC_SER.vcproj", "{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SUNDIALS_SHARED", "Sundials\SUNDIALS_SHARED\SUNDIALS_SHARED.vcproj", "{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CVODES", "Sundials\CVODES\CVODES.vcproj", "{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base\base.vcproj", "{D76CE458-2A16-42DD-AE25-E282886C358F}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "numerics", "numerics\numerics.vcproj", "{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "thermo", "thermo\thermo.vcproj", "{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics", "kinetics\kinetics.vcproj", "{8CB43708-231A-4F80-B777-5F0A90CDB604}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "equil", "equil\equil.vcproj", "{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base_h", "base_h\base_h.vcproj", "{108341B3-6686-47D0-A93F-CDE9E1EDC68F}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupAlt", "SetupAlt\SetupAlt.vdproj", "{5CCFB08B-FFD7-436E-92C8-65A2CB3C83BD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug|Win32.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug|Win32.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release|Win32.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release|Win32.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug|Win32.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug|Win32.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release|Win32.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release|Win32.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug|Win32.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug|Win32.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release|Win32.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release|Win32.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug|Win32.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug|Win32.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release|Win32.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release|Win32.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug|Win32.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug|Win32.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release|Win32.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release|Win32.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug|Win32.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug|Win32.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release|Win32.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release|Win32.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug|Win32.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug|Win32.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release|Win32.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release|Win32.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug|Win32.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug|Win32.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release|Win32.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release|Win32.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug|Win32.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug|Win32.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release|Win32.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release|Win32.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug|Win32.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug|Win32.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release|Win32.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release|Win32.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug|Win32.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug|Win32.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release|Win32.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release|Win32.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug|Win32.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release|Win32.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release|Win32.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug|Win32.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug|Win32.Build.0 = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release|Win32.ActiveCfg = Release - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release|Win32.Build.0 = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug|Win32.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release|Win32.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release|Win32.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug|Win32.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug|Win32.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release|Win32.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release|Win32.Build.0 = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug|Win32.ActiveCfg = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug|Win32.Build.0 = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release|Win32.ActiveCfg = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release|Win32.Build.0 = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug|Win32.ActiveCfg = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug|Win32.Build.0 = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release|Win32.ActiveCfg = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release|Win32.Build.0 = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug|Win32.ActiveCfg = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug|Win32.Build.0 = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release|Win32.ActiveCfg = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release|Win32.Build.0 = Release|Win32 - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug|Win32.ActiveCfg = Debug - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Release|Win32.ActiveCfg = Release - {D76CE458-2A16-42DD-AE25-E282886C358F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Debug|Win32.Build.0 = Debug|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Release|Win32.ActiveCfg = Release|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Release|Win32.Build.0 = Release|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Debug|Win32.ActiveCfg = Debug|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Debug|Win32.Build.0 = Debug|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Release|Win32.ActiveCfg = Release|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Release|Win32.Build.0 = Release|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Debug|Win32.ActiveCfg = Debug|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Debug|Win32.Build.0 = Debug|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Release|Win32.ActiveCfg = Release|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Release|Win32.Build.0 = Release|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Debug|Win32.ActiveCfg = Debug|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Debug|Win32.Build.0 = Debug|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Release|Win32.ActiveCfg = Release|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Release|Win32.Build.0 = Release|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Debug|Win32.ActiveCfg = Debug|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Debug|Win32.Build.0 = Debug|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Release|Win32.ActiveCfg = Release|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Release|Win32.Build.0 = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.ActiveCfg = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.Build.0 = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.ActiveCfg = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.Build.0 = Release|Win32 - {108341B3-6686-47D0-A93F-CDE9E1EDC68F}.Debug|Win32.ActiveCfg = Debug|Win32 - {108341B3-6686-47D0-A93F-CDE9E1EDC68F}.Debug|Win32.Build.0 = Debug|Win32 - {108341B3-6686-47D0-A93F-CDE9E1EDC68F}.Release|Win32.ActiveCfg = Release|Win32 - {108341B3-6686-47D0-A93F-CDE9E1EDC68F}.Release|Win32.Build.0 = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.ActiveCfg = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.Build.0 = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.ActiveCfg = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.Build.0 = Release|Win32 - {5CCFB08B-FFD7-436E-92C8-65A2CB3C83BD}.Debug|Win32.ActiveCfg = Debug - {5CCFB08B-FFD7-436E-92C8-65A2CB3C83BD}.Release|Win32.ActiveCfg = Release - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc8/cantera_examples.sln b/win32/vc8/cantera_examples.sln deleted file mode 100755 index ec2dfa8fc..000000000 --- a/win32/vc8/cantera_examples.sln +++ /dev/null @@ -1,55 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "diamondSurf", "diamondSurf\diamondSurf.vcproj", "{D600ECB2-D432-4E4D-9D70-BF94AEF31485}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "silane_equil", "silane_equil\silane_equil.vcproj", "{290DC5E5-0016-4CCF-84D5-6B997DD3664A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin\surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cxx_examples", "cxx_examples\cxx_examples.vcproj", "{0E635864-A310-4468-9D97-9CE67B078C97}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.Build.0 = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.ActiveCfg = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.Build.0 = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.ActiveCfg = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.Build.0 = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug|Win32.ActiveCfg = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug|Win32.Build.0 = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release|Win32.ActiveCfg = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release|Win32.Build.0 = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug|Win32.ActiveCfg = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug|Win32.Build.0 = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release|Win32.ActiveCfg = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release|Win32.Build.0 = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.Build.0 = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.ActiveCfg = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.Build.0 = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug|Win32.Build.0 = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release|Win32.ActiveCfg = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release|Win32.Build.0 = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.ActiveCfg = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.Build.0 = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.ActiveCfg = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc8/cantera_no_sundials.sln b/win32/vc8/cantera_no_sundials.sln deleted file mode 100755 index 650a0169a..000000000 --- a/win32/vc8/cantera_no_sundials.sln +++ /dev/null @@ -1,180 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cvode", "cvode\cvode.vcproj", "{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} = {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{F7607AF2-705A-4046-B7EC-067DEE3BB79F}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.ActiveCfg = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.Build.0 = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.ActiveCfg = Release|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.Build.0 = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32 - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Debug.ActiveCfg = Debug - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Release.ActiveCfg = Release - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc8/ck2cti/ck2cti.vcproj b/win32/vc8/ck2cti/ck2cti.vcproj deleted file mode 100755 index c57325efb..000000000 --- a/win32/vc8/ck2cti/ck2cti.vcproj +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/clib/clib.vcproj b/win32/vc8/clib/clib.vcproj deleted file mode 100755 index 724a659c2..000000000 --- a/win32/vc8/clib/clib.vcproj +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/config_h/config_h.vcproj b/win32/vc8/config_h/config_h.vcproj deleted file mode 100755 index 23b780f96..000000000 --- a/win32/vc8/config_h/config_h.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/config_h/docopy.cmd b/win32/vc8/config_h/docopy.cmd deleted file mode 100755 index bc4c21360..000000000 --- a/win32/vc8/config_h/docopy.cmd +++ /dev/null @@ -1,10 +0,0 @@ -echo on -cd ..\..\.. -copy winconfig.h config.h -cd ext\f2c_libs -copy arith.hwin32 arith.h -copy sysdep1.h0 sysdep1.h -copy signal1.h0 signal1.h -cd ..\..\win32\vc8\config_h -echo ok -echo off diff --git a/win32/vc8/converters/converters.vcproj b/win32/vc8/converters/converters.vcproj deleted file mode 100755 index d054bb6f5..000000000 --- a/win32/vc8/converters/converters.vcproj +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/csvdiff/csvdiff.vcproj b/win32/vc8/csvdiff/csvdiff.vcproj deleted file mode 100755 index 8d76d5ed1..000000000 --- a/win32/vc8/csvdiff/csvdiff.vcproj +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/cti2ctml/cti2ctml.vcproj b/win32/vc8/cti2ctml/cti2ctml.vcproj deleted file mode 100755 index 4e52e7b32..000000000 --- a/win32/vc8/cti2ctml/cti2ctml.vcproj +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/ctmatlab/ctmatlab.vcproj b/win32/vc8/ctmatlab/ctmatlab.vcproj deleted file mode 100755 index 5084ee484..000000000 --- a/win32/vc8/ctmatlab/ctmatlab.vcproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/ctmatlab/runmlab.cmd b/win32/vc8/ctmatlab/runmlab.cmd deleted file mode 100755 index 0355181b1..000000000 --- a/win32/vc8/ctmatlab/runmlab.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cd ..\..\..\Cantera\matlab\cantera -echo 'delete me!' > ctmethods.mexw32 -echo 'delete me!' > ctmethods.dll -%MATLAB_CMD% -nodisplay -nosplash -nojvm -r buildwin -echo 'ok' > status diff --git a/win32/vc8/ctpython/ctpython.vcproj b/win32/vc8/ctpython/ctpython.vcproj deleted file mode 100755 index 75cf85cb6..000000000 --- a/win32/vc8/ctpython/ctpython.vcproj +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/ctpython/runpython.cmd b/win32/vc8/ctpython/runpython.cmd deleted file mode 100755 index edb0b07b1..000000000 --- a/win32/vc8/ctpython/runpython.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cd ..\..\..\Cantera\python -%PYTHON_CMD% winsetup.py build -%PYTHON_CMD% winsetup.py bdist_wininst -%PYTHON_CMD% winsetup.py install -echo 'ok' > status diff --git a/win32/vc8/cvode/cvode.vcproj b/win32/vc8/cvode/cvode.vcproj deleted file mode 100755 index 543629dcc..000000000 --- a/win32/vc8/cvode/cvode.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/cxx_examples/cxx_examples.vcproj b/win32/vc8/cxx_examples/cxx_examples.vcproj deleted file mode 100755 index 59dc8cf69..000000000 --- a/win32/vc8/cxx_examples/cxx_examples.vcproj +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/cxxutils/cxxutils.vcproj b/win32/vc8/cxxutils/cxxutils.vcproj deleted file mode 100755 index f98ceaf91..000000000 --- a/win32/vc8/cxxutils/cxxutils.vcproj +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/CanteraDemos.sln b/win32/vc8/demos/CanteraDemos.sln deleted file mode 100755 index fc9c792d7..000000000 --- a/win32/vc8/demos/CanteraDemos.sln +++ /dev/null @@ -1,61 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "demo", "demo.vcproj", "{F0FBA57E-6E65-46E6-9DDD-2625E7082189}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "combustor", "combustor.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flamespeed", "flamespeed.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics1", "kinetics1.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NASA_coeffs", "NASA_coeffs.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rankine", "Rankine.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.ActiveCfg = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.Build.0 = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.ActiveCfg = Release|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc8/demos/NASA_coeffs.vcproj b/win32/vc8/demos/NASA_coeffs.vcproj deleted file mode 100755 index d2f08d3cd..000000000 --- a/win32/vc8/demos/NASA_coeffs.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/Rankine.vcproj b/win32/vc8/demos/Rankine.vcproj deleted file mode 100755 index 72d74ffc6..000000000 --- a/win32/vc8/demos/Rankine.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/ReadMe.txt b/win32/vc8/demos/ReadMe.txt deleted file mode 100755 index 91c0ae7cf..000000000 --- a/win32/vc8/demos/ReadMe.txt +++ /dev/null @@ -1,12 +0,0 @@ -The project setttings assume Cantera is installed in C:\CANTERA. -If this is not the case, edit the project properties before building. - -The project settings that differ from the defaults are: - -1) use of multithreaded DLL system libraries -2) specification of the Cantera libraries as additional - input for the linker -3) specification of the Cantera include and lib directories. - -These changes to the default project settings need to be made whenever -you create a new project that you want to link to Cantera. \ No newline at end of file diff --git a/win32/vc8/demos/combustor.vcproj b/win32/vc8/demos/combustor.vcproj deleted file mode 100755 index 19dbf9fa2..000000000 --- a/win32/vc8/demos/combustor.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/demo.vcproj b/win32/vc8/demos/demo.vcproj deleted file mode 100755 index 1a94d3b8e..000000000 --- a/win32/vc8/demos/demo.vcproj +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/flamespeed.vcproj b/win32/vc8/demos/flamespeed.vcproj deleted file mode 100755 index e6a7b1e7c..000000000 --- a/win32/vc8/demos/flamespeed.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/kinetics1.vcproj b/win32/vc8/demos/kinetics1.vcproj deleted file mode 100755 index f55ac2420..000000000 --- a/win32/vc8/demos/kinetics1.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/diamondSurf/diamondSurf.vcproj b/win32/vc8/diamondSurf/diamondSurf.vcproj deleted file mode 100755 index aad489c77..000000000 --- a/win32/vc8/diamondSurf/diamondSurf.vcproj +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/equil/equil.vcproj b/win32/vc8/equil/equil.vcproj deleted file mode 100755 index ad6164a5b..000000000 --- a/win32/vc8/equil/equil.vcproj +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/f2c_blas/f2c_blas.vcproj b/win32/vc8/f2c_blas/f2c_blas.vcproj deleted file mode 100755 index 1e3cf5fa0..000000000 --- a/win32/vc8/f2c_blas/f2c_blas.vcproj +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/f2c_lapack/f2c_lapack.vcproj b/win32/vc8/f2c_lapack/f2c_lapack.vcproj deleted file mode 100755 index d332eca1d..000000000 --- a/win32/vc8/f2c_lapack/f2c_lapack.vcproj +++ /dev/null @@ -1,440 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/f2c_libs/f2c_libs.vcproj b/win32/vc8/f2c_libs/f2c_libs.vcproj deleted file mode 100755 index 19ce27bd4..000000000 --- a/win32/vc8/f2c_libs/f2c_libs.vcproj +++ /dev/null @@ -1,842 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/f2c_math/f2c_math.vcproj b/win32/vc8/f2c_math/f2c_math.vcproj deleted file mode 100755 index 62b3a26dd..000000000 --- a/win32/vc8/f2c_math/f2c_math.vcproj +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/kinetics/kinetics.vcproj b/win32/vc8/kinetics/kinetics.vcproj deleted file mode 100755 index 9ba9ea9d4..000000000 --- a/win32/vc8/kinetics/kinetics.vcproj +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/numerics/numerics.vcproj b/win32/vc8/numerics/numerics.vcproj deleted file mode 100755 index d067963eb..000000000 --- a/win32/vc8/numerics/numerics.vcproj +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/oneD/oneD.vcproj b/win32/vc8/oneD/oneD.vcproj deleted file mode 100755 index 3b4aa3e5e..000000000 --- a/win32/vc8/oneD/oneD.vcproj +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/prepreconfig.vc++ b/win32/vc8/prepreconfig.vc++ deleted file mode 100755 index d7110fbcb..000000000 --- a/win32/vc8/prepreconfig.vc++ +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/sh -# -# -# Sample bourne shell wrapper around Cantera's configure -# shell command, used for building and installing Cantera -# using MS VC++, without fortran support. -# Copy this file to the top directory of the Cantera distribution. -# Edit a few directory locations indicated below. Then execute it -# after autoconf is run. -# -# Tell Cantera you will be using a VC++ compiler to compile and link -# all of the programs -# -USE_VISUAL_STUDIO="y" -export USE_VISUAL_STUDIO -# -# Specify the root directory: Will need adjusting -# -CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop" -export CANTERA_ROOT -# -# Specify the install directory: Will need adjusting -# -CANTERA_INSTALL_DIR="C:/vc_env/Cantera" -export CANTERA_INSTALL_DIR -# -# -# PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -PYTHON_CMD="c:/python26/python.exe" -export PYTHON_CMD -# -# WIN_PYTHON_CMD: This is the default location that Python26 -# puts its files. -# -WIN_PYTHON_CMD='C:/Python26/python' -export WIN_PYTHON_CMD -# -# These 2 next lines tells Cantera and Python where to install -# the Cantera python modules. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR -# -PYTHON_SITE_PACKAGE_TOPDIR="C:/Python26" -export PYTHON_SITE_PACKAGE_TOPDIR -# -# No matlab toolbox in this script. However, if you have matlab -# on your machine, you can change the "n" to a "y". -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX -# -# Indicate that you will be using the clib.dll -# -USE_DLL="y" -export USE_DLL -# -# HKM -> note config chokes on cl.exe . It can't interpret the -# needed command line arguments. -#CXX="cl.exe" -#export CXX -#CC="cl.exe" -#export CC -# -CXXFLAGS="-g" -export CXXFLAGS -# -# -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME='/cygdrive/c/vc_env/sundials' -export SUNDIALS_HOME - -# -# Call the configure command at the top of the Cantera distribution -# in a cygwin shell -# -./preconfig -# diff --git a/win32/vc8/silane_equil/silane_equil.vcproj b/win32/vc8/silane_equil/silane_equil.vcproj deleted file mode 100755 index e528ff432..000000000 --- a/win32/vc8/silane_equil/silane_equil.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/spectra/spectra.vcproj b/win32/vc8/spectra/spectra.vcproj deleted file mode 100755 index f00a36d33..000000000 --- a/win32/vc8/spectra/spectra.vcproj +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/surfkin/surfkin.vcproj b/win32/vc8/surfkin/surfkin.vcproj deleted file mode 100755 index 367ed4bc7..000000000 --- a/win32/vc8/surfkin/surfkin.vcproj +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/thermo/thermo.vcproj b/win32/vc8/thermo/thermo.vcproj deleted file mode 100755 index ce04bfef3..000000000 --- a/win32/vc8/thermo/thermo.vcproj +++ /dev/null @@ -1,651 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/tpx/tpx.vcproj b/win32/vc8/tpx/tpx.vcproj deleted file mode 100755 index 6e170e64f..000000000 --- a/win32/vc8/tpx/tpx.vcproj +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/transport/transport.vcproj b/win32/vc8/transport/transport.vcproj deleted file mode 100755 index a43ad54c5..000000000 --- a/win32/vc8/transport/transport.vcproj +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/zeroD/zeroD.vcproj b/win32/vc8/zeroD/zeroD.vcproj deleted file mode 100755 index bac43c2dc..000000000 --- a/win32/vc8/zeroD/zeroD.vcproj +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/SetupCantera/SetupCantera.vdproj b/win32/vc9/SetupCantera/SetupCantera.vdproj deleted file mode 100755 index bf3bba8f7..000000000 --- a/win32/vc9/SetupCantera/SetupCantera.vdproj +++ /dev/null @@ -1,23890 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCantera" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_000E0B5AC6264DA3BEC0448B32F52663" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_020F278C42CA4A2B96388903D1752C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0259622D90D54F99BA22C55A83DE0DD3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02F41A2FCFD346D8B7CDB9C14E5BB319" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0366A82A86EA4F1CB1AD5F4D462B3787" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_040D88A3581F47CEA206D1688FD6EA61" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_056E63AF596746FA840673460F3467BA" - "OwnerKey" = "8:_0E292CD01C814FA9945C45A7BA9E1065" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_058317BC8A364FC684F4FCE559188827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05BEF1452C824F2AA870077D31CF1BF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05CAF5CE4E764B92BCAA4DE1A10481E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05FE255C00F74DAEB6BFC00A32066DFA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0660FE555E5B433194898E32C6ADD273" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0699BFFC081341CEAF618FBFBBA1241E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_06B3045D93A84917A8E324374A8211F6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08B40A34D407447EA66C614C4E897E1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08C0F7C9789B4E3F8D09411C89DD0509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0CC005AA0F0842E4A33867605A8E4A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DD6AFC117E344BD826ECC698152F9AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E292CD01C814FA9945C45A7BA9E1065" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E91AE53B0354697B206E79EDEC8951D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1089BF66E6BD47E597259E9AF2B35F20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_111A0970D7DE4C99AFE08278C8345DD9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12F1E24910DD409E860D4F79A338EDAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_134B726C2CA94BF5A67C3ED7F799D502" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_138E90C26F6041339FF2678ABF07E5DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13A678CB790646B69DF1451D34265FA3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13B73567FBB1470E9244F3636ED90E55" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14738B23CCC74201B3F3619639554DD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14AD021265F04D30B380659740DE2D56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14AE958921E548DBBD8DC6FA834FC532" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14D64F0F7ED94D29A7A8DAD77FCCED13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1549C4E9E5E0434983C533B9D0CB8B49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1556C8B42E0649DDAE01655F4D1C970E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15722A4BDFA44650ADE1764C5B1EBCC5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1605E31F88584B5BAA367FBA56A3EC57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_163414A541654AEB93A16D60F2652F7B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_164F9AE8646F49A28EDD39E09AC0B23E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18DF044BD81E46C98CCC861C36FC01AB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_192952F5A5D249D78FC7B767AB938A1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_19ADCC34CFAD4F88869FE56CD072F5CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A68BCF036214AA58BDB24F63A44099F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A927F880A454469B90682B004B9D129" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A951008962D4A65A9A9653673049010" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B9B881AE09F4714B246FED31A2C52C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CA7BB938C7D4C37BB5B6A9E4F73E489" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CB5CF459BDE4DCEA0D61D95E6707D99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CF9D451D1C24D9FBCD9719CC24D8956" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DB52E3C2B4B4D63A2825ED896417F4D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DC1E7E2F3D94D77BA47749A06D1AD12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E0D34F6C6104102A9D06C141F3F763E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E985699F79A4F80AAB40741735DBEBE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1FBA13F4B8CB4E1A81BB5FDA1194E6BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_204DB7F700684ABFA12A29185D6CB5B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_20D3DE8A9BA14C91A9C2FFE7EB36603E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2170A16C95844A6291342D840D1BB498" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2278673C1CB94B89B0F33D7D7588F290" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2279B9FC61AB4F3AB7F0A0F58F3BD071" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22CC1F00E98946C0A5C82185C43DD97F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22CEF13E79D94C419D5EF6986741612D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_235972FD19834CC49568823B639F6056" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_238BB4062E2B488FB10D3107F74869C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23F24F51C12448E8B99577D4D359CA48" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2423A94DD42C4B89A532018CA915F0CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_248688162FD145F4AA11063A3A5ECFD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_24B49E09AB96421BB8639B0CBCB23A1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_24B6F64B4FD046B3A9F26BCFB9621B1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_256AD3D2AEC6410FBF4F5E3B945925A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_25A650A6EF324949A3604908CE2112E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_25F3A3CA11F8464AAB68B5C04090FB61" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_28BF9CA142EB4988A4B1366304D93917" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_299CD5580EB645D191532FE4F24EC6CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29CA5AAAF8D342359823BB1B4CC30E95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A0106C002434337907A10A979B6D97B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A358D00247749D8B1F2C9B3DD913939" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BB4BE1E38E641C2B265A596D043AF25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BB57D6845464ADFA0F107F511FFEEF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BC84B66CFCB4348AB644025BE8CEA68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BE3348DF5ED45EC944DDD5BFE78A865" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BF22A40402F4580B200414A32936177" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2C2891784E02439F8A77C62FB10A7758" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2CADD379818D4D128CB3E53D3E566601" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D5D40F1EF034AD3A2757714B66F1A11" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E1D802885914276A918F17E040A09D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E96E842BF704E05B248FE9E9474674B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2ED30B81981D48DD93B5D82BD4BD44BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2FAD4B54152F4F698FC2A1BAF8831599" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2FC09AAF5A4C4E998211176C5262A084" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_303F2BB4ADCE4E0F9B2B45747E66C057" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30B3C39CD6444421B6418F00C5013828" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33C1BA231B1F42CDAD49F0298167D9BB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3450E67DE4E1425B8B41AE70CA5BEEE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_349A87700DEA427C88D340397A9BF256" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_349F239FA90543188EEC8B24410296BE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_35C660FB7AD5450692D9BD8417AE21AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36101E75F83548D9864D35DB07B7612F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3680F9CE2F25442489E0ACE568906072" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_379A958666C0409F82ED9D1C390CF2DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37F5B433E7DE450A995FDB31F909269A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385781B4728F417C82E6B75637E10AE2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39905D4925564C469DE3CBE980978999" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BE1A06F6E6840F996050C94AA740686" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C17B401E0464701BB1C7948164C30AD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C4A157925824371A0036E03B719B89F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CDB43EBBFF14ED58EA458CC84B18F9B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA27135C62465085AAA4CF042634A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D5BF771EBBC4AF0AA84C1E114FABEE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3EF615A4DD26446799672090D51EBDE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_403EF1958EF24BAC9D6D715D0A993803" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4144EDA2CE1A466F80088CF6F5482CC0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41915DD244F142089CE3793E90B3DF12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4207771E67BA4E4794A2397BE181FFEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4254D2D0022C4F1EB474B3635BDB1266" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42CE73EDA2964A82BFAF73C2CB6E4B7D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42F68AC09DC0410C8B66213635F5C982" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44312EB878254560A66978A2E8304A92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_450EF4722F9B40F5A7A85BCA48C2CC20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46482802B89A4F9594C4C39CF0441C65" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_471DA45E05AD445EB7B143657DB4688C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4761AD8D69E841E298EB859CE92727BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4783AD3526B547709409884B6091E0B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A22C4B2BF8947AA8789A8558BE2F728" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A34080C008B4F63A073D329C0B47ECA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A76C0FA9CF84058918F0E1F8126D049" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A9D96662A6C48C980D6FCCABF7CFE20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B60DDE68DB84E76B59AC82DD6A48B63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BF9981AB5684655AC520EF2C245AF5C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C3A5DFE89B844958212C21C4A8DE2CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C9C4D481569458FB7B6C4535E474399" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4CE041E0453E4088900BEF68B80427D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D48D12F66B44E83BB214AAFD8B311C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DC82D064F6147E1B333AA027B89F749" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E5E333FAEC14ABFBD58531E8DD3C26C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E67F8AB73144D67944EE83F06E06040" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EA368FFB8E84A9C88A4BEF0FAFC5A3A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EDBAF4F0C8C401695EE60D9184C34EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5048D18ABBA04F1ABD69A18075601D4C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5072AB7D92454CC39627CAE67CAD2E6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5095A6E6BF554FEDBAEF263F05DDD77B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_509B9A1248FA4683A81BBBA1303BBE71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50BE0A8057A64D38862D65984EB9CD88" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50C880EA8AD04F98ACC7B17C25481323" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E0B210177949DABBDC9E382016C5B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_521AB345758F4DE2BCCE824F6E10A19A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52F34CA3B6284884A5FF333B2261DD88" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5359EA42B033411BA9ACEA14D4292527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53DA7F1154AD4808A379EDAE1B4202B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54161044EDBC4F718F7FEE349189D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54649A08925747FC887AFD20755FB76A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5571BE3AECFC4E599F4A538E40620D21" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_562372D5415546AD844E25834E0DECD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_563B1EC810F6456AAB99D37132792433" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5662A7CD4D8C4E5F947A6F355C20C1A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_567A83C285154238BE6C478046C5BAFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5790A0F9267C4FA88EE7DF95DB07A8A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_57E6A3FDFDE34C75840B0908431790A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_592F2DC945B24BDB801B54E965A109D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5939C6DA148E4B918D12A3F0CE7DC863" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_595064E84283443CAC06EEF5106C0641" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59A2A6B397EF4B649D07CA5B10A1D1C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AD1E279C6CD48B09715186E69A55483" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B070567B4124B929F20C826CD87ADDF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B27B82837184966986697D84EAB8146" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B345CA34B9B4A7083BDD2FA9FF9C8B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B8B28601AB74E219F5FEF5F2EB9F01D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B8BDA463997482B8E4B38A6883B9F20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5DFA2ECEDEB446DDA04762D262A2F376" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E55DD812945431BAFCF8E3595428F15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E6021DD18EE41D8BA4C00CA071A2124" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5EBBDFD79C6D4331873E595874008962" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F680C78BC254BFF8F45CFC07B3C1347" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F7CAAD1BF2A476288C013604222BBC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_601B1AAC354E477ABB10113E35D7B43D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60571A0C1CC14E77AB558ADB65B78D30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6146460859434DC6B46784970DBEDBAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61C9DB5B055E4231B975615A8859A10A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6263283A4DC1424893235D92CA5C7F32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_637A29A294854BEB94243A2E2BE72725" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63F7E804AA36436E9766AD90A1559698" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_641E5DD328FC499FA9E9E2BA97E138D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_64BFD140F3C9407497F177F7920CF70C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_660FB1E1734442FE83CFB2A9CD93280E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6693B16E7E2A4AE3ADC494334E18058F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6725A6F15136415BB26BADDD3CF96F66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6728976522BA4F4BBC490ED099A22916" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67EEC6CEAEB7420BBA0A70992A33175D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_68169AF538624ED5B186C338EE30F4C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698CE4C4A1BF440CBD28B8785A3D9F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698E1FE2069C44AD8727EDCB59AFF2F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9D618F4BAD480B82EE6F7A7EBFC5F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AC7C33351854C93B3A9E0ADCECF0100" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B62C2B086DE4A74ABFDB909919F3B1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BF0F3B78ACB42BEB1F321B053DE8255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6CB316A9C7F34E219EA8460990124C07" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6DE44E9F30F44007B2E7B044619759A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E6713375FC642C3A0632A59F17D60E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6EAB3FC0E0224271BA4985CA3779D862" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70297F7EB1434F9FAA59A5A015747606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70AC20505A614EC8BD0935D46C48C917" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70F7102F07A84B8DB4E3D5FD338F5540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_71188FBDBE8C4C52A89AFDD622B108B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_715760DB29D349BC81FFA61C5AE33F17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7189BBF81A8B46F596C2D94D52CA15DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_71FEE454B6604E2592820EDDBF4B9B3B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C19E279C1048D59F0DDED03719FF90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72F9F17B043C4818960ED80D5809861A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7371B6545BE04A179D3611DBA99BC2CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73F2A9908B3D4174BFE10B56DECDF6AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_748B480FBFE048E8908EF0D5DC978E87" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_751FCF7F6799471992B6C1D080421B25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_75BE33EC2FDD4D92831EC94E3583F2E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77579BAF22FE4F6BBA6F6E55C2227394" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7774CD885BC1422CABE117B602355EAF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78A88A902EE84766911446EF648B4A20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78EAF772B5414C25BD4EB77E1CE069A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_793996EB3E1F479CA275A7CEB5851658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A44C47D4CAD464A97B0209D14C65139" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CDF724656054425BFB271F06BD2367C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D867A3EE9034A2ABB13B35762290436" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E3C43DD94004F36B0C814ED81CACB20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E40B44934374E2C986A8908F00523D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E674FA1D43F4F8FA3C0E02DB78E0AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E6FC70ED43A4A3293D06D67EBA76D30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7EA80C1EF9194C0B8790BBFE6CFF7C10" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F2FA130741D4EC0BE2D86966108FCDD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_812FFA9EA6DC43FA8D244219CD7096F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_818FC04B27FA48F991F1F27AF1A02D2B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82727AA7E07F4E739D5D2373354378A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8316AAAC7D124D08AC76B1E9B1B71597" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_83393619A55E4551870EB738FB1D5C4E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_836038144044405AA1C2EF4B70441D38" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_838BEA5EF8254762914B08B917C1F7ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_838EF83CC5984E339442887CB2A83FC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8392F052F9604AD6A99C28412715DA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_848A110B76D949EDB0ADED7CE6454C31" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85C910D16AEF4A4C9569503ED54C2E97" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85D870ADC88A4F87A4AD54AC91BE3F54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85DB813C30EC48A8A5B8C91E10645CEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8621C91C5A2D4D9EA50AED521E7FB7CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8644F7E4286B44BF849798AA1F3EF62A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8729B2D3CFC043EAB78F286D76787B78" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87399508B62F47D0BC5E993FD3590D0C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8768926E874F4BFA9F36BBCC563882F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_878CBA68A74A4569983B332DCCEEE813" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87D616A7501545E899208A74F7D28235" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883ED26352B04EDEAD89A3CF9C86A55D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_888BD7BA9EC64ED59283DB69834E4BA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_88C7677DFAD94E838F62E0F1663FA36A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_896518E51E604EB388922C7AB451EA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A0AEE06B352402FA6E6C5A73E042713" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A432F8B24A842C0A70A2D8FD906E798" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A44A594199C4334B78F3AA5D6532ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C16EDF915404D23BB491F51467D0612" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C238445125B4DEFA1FCA671D9D4A328" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CDB9C24D5594BB2BEC1EE74C8FED863" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CF03958D7D44F7A9B30BCEDFA55CD0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8ED76386711346E3BF3D43B2C65D5F6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_904FCD6D55B842029CEF52AEFDEA4256" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_910E00C9C1E6469BB7A10318D60163F9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9124D54F67494EA18B08E5CCB0DA12B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_91ECA244CB1C451DB46B22E1F3C67359" - "OwnerKey" = "8:_056E63AF596746FA840673460F3467BA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_928A4CF19A3E4474AA4EF038E37FE2B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92AF3274491F489BA1041CEE3C00ED46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9315EDEB72EF4E0799CBBD629C797E65" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_931815CAC9E94D25949A7DBDC05A5E09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_934D9F093D1E4D64A3E1AE1B319163A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_936D7ED327F842769055274860C7B7CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_941C872E96C14317AAB918817A02BCEA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9469C46213AF4B0B9947F410BFF4B199" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94F7E346CF344C0291219A51568B2A11" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95518B1185B344D8A9E17D449E22A07A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9555263A0B514E84A59C87E03AABA49F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_955D5137DD3645A68F22AC7081F4BBD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95AD84099D86441F9B0C251039B1A63F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9742F8FA66744C10BDA33C445BB1B5A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97C3AF757D4E47FAA20861128A24C4C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97F452B2E24D4B78B4AB754AAB4D9247" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97F7FCC94E42453B981D376F37B97503" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_987750730309466A9EC1C2E3A5B1D20F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98A1AAE4D6A54C8697F75F0890873F23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98AF00ED289F450889C13394489C3D4B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_992BC758B7374D8D9CA69B550F538255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_999E3B46B59C4234A7124019401DB7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9A1598ED1AED4AF7BE7E8B3C1839F085" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C83B54D3B124108AED04884A3931252" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D3366B508A141EA9651BD24FEB2FFF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D9C52DB234A43C88C442298E232C316" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9DE11C23FDAB482393609E8352286FFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9EAE58E2FB054D75A14E63EA0CA90FAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A08E2857F1B1474E9AAF6D683CC3A7D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0C6574C5F6E41E18AB6AF904617B8D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0F47D115D1140D78EA15ED301A96FDF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A241F7A927984443A3BB7B186910ADED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2E900A479E643268F8D32DD67E53FAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A352B1A3A72149AC807C5650BD40EA55" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44ED41478454FE1AC8F437795125788" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5136AB1792B4B98937DAC7FD6AE4E90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A52F55B639B6498B993D0C8831EC29A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A56B4B64A8E2482883F4F76F278103DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5898A75EFDA4A008CE657485600DB0F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5FDFAB8D04D4091B74F945CDFA13EE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A691E3B32AF54F4AB5F4B48577183263" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6CD4A6404154996835A7D9B2301BCFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8313B076DCE4F47BC5AB1C18D54D1E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A84BEECAB2D34EFCA56FAE2792F51D7D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A88814C184944C9FA3E00A2DE301BB17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8BE7E9B8E89418B9C209C26C2481E52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A932A0AF2C944F8F9067A24C25B978CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A95FA829E1D342E0BD407CA2FF074E9A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9E3A786A2954BC687EB209593DFAA31" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA0F97AADCE24AC29EF73E7D6C696C54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA23BF6053F542538AF0B7FB48C0B4F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB701B636CC24D9F9CAA71C6B897E7AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9515FE77614EF19E6B1E92CDD648A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ABE7E862C38241F19744114841629864" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD788D5178DD4DE2A68B08B9297C0D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE6136D7D3F341089B23CF2FE032F852" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF2F612EC55F42C181F990BB5BF85D09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF505C309B83425BB0ACBC40586DC467" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B103E721182F4DD6AD7F65CF565F83C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B16017E037F7472DA99F97FA0994567E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B26DE6FA1DBA4CD7A54798EFD42761C7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2E109695C4F4E329F991DAB91EC054E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B361CA65836B4CCA975759ED0B6CAE6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3B4F39E240F4463BB09201FC8B32CD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B42AB8E6DFE545408B9760D0D10919CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FE641E9EE14B3A98EB023B9B281012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B590C82783544AD2A08F289BC6320EAF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5F13C260D704D10A1AA9E9C428FD17C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5F44ACDAC4142C9B086E996419F26D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6B7A55B6F78408B87B10B799DE5A19A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6BB322EEC614D6381014E64306652A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B74214D38A5B4B88B5E169B9E638C59B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7E71DDEC9694BB3913A5A951D071C79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7FE7CDB0F4C4BDAB730BB096498F836" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7FE86B0D0F1439F8BD9FDA7DC0BC6E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8DC8835383B4D81865DE6728E152C6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B92716F1835748778D2EA2A170A3463C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B931BA0672394A6D8134E66E8381B7D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9D00A7B741A4394B6D20DFBAD7B67B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9F7ACBBB03641A189D48B3F96B177AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA434DDB92844939B4727EA0D07F28F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA805C53980C41769659D085C5C8E0B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBB2831DC8974D1BAC6B7CC8F8FBD7E3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC48260E6FE744BCB551169FC8E965F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC7DFDE6592D463B95C307DBE7305593" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD9ECC0B46EC450CAF842508F8F7BE33" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDE8E81A8D2245DD82FEF47265A5CC3D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BECC05E6C8EB47B68F6344A00F04C46D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFB996117C244A958E3F46131CFA483A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C07F50571A13454FAD88671C31B82B9A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0D8D2C4874C4694895DE76AF8ED8E8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0E4D3E9F985430CB96D8E96014865FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C27608223A4A46CFB21A58073E99629E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C27611FCB2744386BA7B3CD0EA9C2116" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C357D956140243B5A87AA9011DAF1207" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3742ACDED3441C8B9626B36358FF45F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C51F790219A544D29B9BCBC4B83E1C3E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C620775E0B56481695BDA176D6BBF60A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6896DE4391E40FF980A950DDE8B43D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7FFE7D762304EA08B7376CADFF4D8C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8198F923CDB401EAF223744653A6806" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C844497867604180ABCB21CF50308A75" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "OwnerKey" = "8:_DC0CDC30152E4448A80DDBE817E76A8D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "OwnerKey" = "8:_888BD7BA9EC64ED59283DB69834E4BA9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "OwnerKey" = "8:_14738B23CCC74201B3F3619639554DD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA734CBAEC8440EC8CB32AF7EF8D71AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBFAB93B4A1B40349FCD9BF44ED28D1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCDF5C1EFB75477BB295929481C75CC7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD0873029B1A4CA781081A1551554150" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD85044C04E14CD3A9419F46205EA412" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD972A5865874CB9882B6001648FB46E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF5084794E3343669C4337B95A9F7BF1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFAF2622550E48AA9B0F502BD4022FB5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D08BC52EA7E5473C91A82F2CE77B9C05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0A9D802F4924B3B8C0429DFF0D37C9E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0D86929159D4E008C467978E92A6B0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0E38FA5FFFD42BC9507FFC804B3B271" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D1CD893E014F4FBE842B4B0E2CDDE652" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D238C397E41B4DC684CF79761C4B85D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D29E08866CBB44D0A548B5F8A7D90584" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2BB3D54E2B2459596E3FCC0C5648A63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2DF67E2996C456AB37115D5EF067CEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D38628C1BEF7481C85F448F4E8D1C3EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D418D6CC07974B16B70C9B93970427FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D428726607B744478982A6F3AEBB5937" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D459FF6207F848EFACC8160512BC04C0" - "OwnerKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D4E8F23E7DEE4EBE85604448D9E9F66F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D53FFA2FD41F4B55B55A5F34D59755C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D56AB4AFFE3943C7AA22831BCB2FF143" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D5E167B7033D49188854ABA54CB6A543" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D669B0F109D24B248427555BFC1EFFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75AC18CFD714D179B403F394FEE5C6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D7EDA76276BA47C5B427D5289E602655" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D8DE5B3E74534CEFBF787CCC4124FF6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D9342B2A479345D79B17511A69B5E867" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA59B07FBF1F42CDB8AEF8B24809BF08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA8A6A14EA7A4B87A06CA40B37404208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB58150AE7CE4F5390C9322D5F5E7235" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6D039C3ED14EE58F469C211EE0336C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC0CDC30152E4448A80DDBE817E76A8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC239E2B54624CCF8D26F85C98393DC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC32635C462B40BEBEEC9176E79A9BB8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DCE0313BBE4C4DFEA23ACDBB6863B390" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD6D9600C356455D95BD2C44C50214DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE6ED970A6634704843FC2D976DDB51F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF631F75976846E58594E4C6FD1630C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF78E69F06884ED8B21785EFA82570F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E00C0F5054204111B95C89CE4CF7CFA7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0618DF655024D8BA1CA9B54B5915689" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1E6F5ED150E4549979E0E3F9E6D2F67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2DB44B0AA4245D8BFE17D1B069BAE0F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2DDE31CAC874AE0B9F7F9145248BE6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E40175C04F974A7BA19133984051989B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4171B5DBA664372BB43F3B40B2E1236" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A483565C5E40B79805552DC4B5292C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6C43F98CB9E4C199ABD77B37D21A564" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E78FD6989E1D4799AAAD31ACD43B0C1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E90BD26B31DB42D59ABCCF0A14CCCB52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E9768C656AD141FCA969B7B9CAFE7F83" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E9DF9028F228449BA30513E9EA99147C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0930AEA1074763823B836B96A138A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB3D7262767C4E5BB3581882EB0BC79C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB7840FED8294FFDB3111C6B3DD32833" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB82DBEEDAE14B51840A9D7153E52BBB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EBB20B541FE543F7A695E466975C6495" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC5F3263FCAA48CEB25E23414F082818" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC6786EBE72E46B694D473463C72A2BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECA3396FBFD54A94B2DFB33B080F0D4E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECAF852C95DD46A39B119046E569A5F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECED5D161C3348B98B263CFECA0A7DCF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED40FDD34E984498ADC37D88B43AEAA4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED67782207C047F4A5935DCE2E79F151" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDB029B79CF646ED9D83EE7DA1A80900" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFA30E0040CD47D995300679F7C2846B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFCA267481B0414BAE826AA0B4485F3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0198774990541808A87CB1A6FE41597" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F18978587EE441EA8B9B276B9FE566FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2A92891BD6D4A87BB614760C33A483D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2E355F7534548FA97DD0E22363A0107" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F33D31C689BD40F2AF95AD8905B4CA5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3A73DE374274D23B5B71D3950610F46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F47B7B39692A4CFFA8EADC42095D740D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F48C0E268A0F4258B2FD7E65B9D0AE91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F495A54DE04C4B39B5F52C4AA64E7060" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4F26BD1AB984B27A14DB3014923C36C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4F48A978F924204A75079994744E641" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4FB2F3079254D76B2DF7DF3B7391098" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F52E35C2A75341B5B07D033F7072C765" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F5B0599D33DE4EA882B0C846B85FD66E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F622D25373114C90976CCE00B20B11FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6E4EBD5FFCA494C8355AF6764844103" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F70CE7A5A1844D3A99121A7A41ACAAF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F814D235C9B243729C65F42D5CEE59D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81A7E5426654A1891028EF1BDDF87CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F862E9C9A48D4C569698C90E1EC6850B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F88CE78D01A1484A9A363ECD019F9ABB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8E58FC7A5A74126B5F8D78607815377" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8FB0389B5924D9585AA8CB15F4A2BE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F90E2786F2D946A391E88893C923D118" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9D283B3D2094812A29561F09605DE12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA6DD5D364B64F17832B6BC43A6F9D6C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBC9FE116DDD46DEB48CF787395219C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBD4F0EEEFE546FB9FF1BAD912D6C611" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBFB14FD38C7494B8A4C46E34805BC91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC86845237DD456CBCC89B92C093E444" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD0456378D394DF48B3AB5BD0502EBB1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FDB8A6CE75A943ECA1F4D7DFB8F69902" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFFDE78FD53C4E159AF3540A42F61677" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\Cantera_Debug.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "DebugMDD" - { - "DisplayName" = "8:DebugMDD" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:DebugMDD\\Cantera_DebugMDD.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera_Release.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_000E0B5AC6264DA3BEC0448B32F52663" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\LiquidTransport.h" - "TargetName" = "8:LiquidTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_020F278C42CA4A2B96388903D1752C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorNet.h" - "TargetName" = "8:ReactorNet.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0259622D90D54F99BA22C55A83DE0DD3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\kin1_blessed_0.csv" - "TargetName" = "8:kin1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_02F41A2FCFD346D8B7CDB9C14E5BB319" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0366A82A86EA4F1CB1AD5F4D462B3787" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\GeneralSpeciesThermo.h" - "TargetName" = "8:GeneralSpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_040D88A3581F47CEA206D1688FD6EA61" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_internal.h" - "TargetName" = "8:vcs_internal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05BEF1452C824F2AA870077D31CF1BF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05CAF5CE4E764B92BCAA4DE1A10481E7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodeInt.h" - "TargetName" = "8:CVodeInt.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05FE255C00F74DAEB6BFC00A32066DFA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0660FE555E5B433194898E32C6ADD273" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0699BFFC081341CEAF618FBFBBA1241E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reactor.h" - "TargetName" = "8:Reactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_06B3045D93A84917A8E324374A8211F6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MineralEQ3.h" - "TargetName" = "8:MineralEQ3.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08B40A34D407447EA66C614C4E897E1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08C0F7C9789B4E3F8D09411C89DD0509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0CC005AA0F0842E4A33867605A8E4A57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DD6AFC117E344BD826ECC698152F9AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0E91AE53B0354697B206E79EDEC8951D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1089BF66E6BD47E597259E9AF2B35F20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\LineBroadener.h" - "TargetName" = "8:LineBroadener.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_111A0970D7DE4C99AFE08278C8345DD9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SimpleThermo.h" - "TargetName" = "8:SimpleThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12F1E24910DD409E860D4F79A338EDAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\DebyeHuckel.h" - "TargetName" = "8:DebyeHuckel.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_134B726C2CA94BF5A67C3ED7F799D502" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_138E90C26F6041339FF2678ABF07E5DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\example_utils.h" - "TargetName" = "8:example_utils.h" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13A678CB790646B69DF1451D34265FA3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13B73567FBB1470E9244F3636ED90E55" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14AD021265F04D30B380659740DE2D56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14AE958921E548DBBD8DC6FA834FC532" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_VolPhase.h" - "TargetName" = "8:vcs_VolPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14D64F0F7ED94D29A7A8DAD77FCCED13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1549C4E9E5E0434983C533B9D0CB8B49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SingleSpeciesTP.h" - "TargetName" = "8:SingleSpeciesTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1556C8B42E0649DDAE01655F4D1C970E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15722A4BDFA44650ADE1764C5B1EBCC5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1605E31F88584B5BAA367FBA56A3EC57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\catcomb_blessed_0.csv" - "TargetName" = "8:catcomb_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_163414A541654AEB93A16D60F2652F7B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_164F9AE8646F49A28EDD39E09AC0B23E" - { - "SourcePath" = "8:..\\demos\\ReadMe.txt" - "TargetName" = "8:ReadMe.txt" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18DF044BD81E46C98CCC861C36FC01AB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_192952F5A5D249D78FC7B767AB938A1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Sim1D.h" - "TargetName" = "8:Sim1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_19ADCC34CFAD4F88869FE56CD072F5CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A68BCF036214AA58BDB24F63A44099F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A927F880A454469B90682B004B9D129" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ShomatePoly.h" - "TargetName" = "8:ShomatePoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A951008962D4A65A9A9653673049010" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B9B881AE09F4714B246FED31A2C52C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Crystal.h" - "TargetName" = "8:Crystal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CB5CF459BDE4DCEA0D61D95E6707D99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CF9D451D1C24D9FBCD9719CC24D8956" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowDevice.h" - "TargetName" = "8:FlowDevice.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DB52E3C2B4B4D63A2825ED896417F4D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DC1E7E2F3D94D77BA47749A06D1AD12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ShomateThermo.h" - "TargetName" = "8:ShomateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1E0D34F6C6104102A9D06C141F3F763E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoMgr.h" - "TargetName" = "8:SpeciesThermoMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1E985699F79A4F80AAB40741735DBEBE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1FBA13F4B8CB4E1A81BB5FDA1194E6BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\mix_defs.h" - "TargetName" = "8:mix_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_204DB7F700684ABFA12A29185D6CB5B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_20D3DE8A9BA14C91A9C2FFE7EB36603E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ConstCpPoly.h" - "TargetName" = "8:ConstCpPoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2170A16C95844A6291342D840D1BB498" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2278673C1CB94B89B0F33D7D7588F290" - { - "SourcePath" = "8:..\\demos\\flamespeed.vcproj" - "TargetName" = "8:flamespeed.vcproj" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2279B9FC61AB4F3AB7F0A0F58F3BD071" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\speciesThermoTypes.h" - "TargetName" = "8:speciesThermoTypes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22CC1F00E98946C0A5C82185C43DD97F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22CEF13E79D94C419D5EF6986741612D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_238BB4062E2B488FB10D3107F74869C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\writelog.h" - "TargetName" = "8:writelog.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23F24F51C12448E8B99577D4D359CA48" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiNewton.h" - "TargetName" = "8:MultiNewton.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2423A94DD42C4B89A532018CA915F0CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_248688162FD145F4AA11063A3A5ECFD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24B49E09AB96421BB8639B0CBCB23A1D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24B6F64B4FD046B3A9F26BCFB9621B1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealGasPhase.h" - "TargetName" = "8:IdealGasPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_256AD3D2AEC6410FBF4F5E3B945925A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_25A650A6EF324949A3604908CE2112E7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MultiTransport.h" - "TargetName" = "8:MultiTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_28BF9CA142EB4988A4B1366304D93917" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_299CD5580EB645D191532FE4F24EC6CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29CA5AAAF8D342359823BB1B4CC30E95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A0106C002434337907A10A979B6D97B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MargulesVPSSTP.h" - "TargetName" = "8:MargulesVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BB4BE1E38E641C2B265A596D043AF25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BB57D6845464ADFA0F107F511FFEEF5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorFactory.h" - "TargetName" = "8:ReactorFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BE3348DF5ED45EC944DDD5BFE78A865" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\importKinetics.h" - "TargetName" = "8:importKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BF22A40402F4580B200414A32936177" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2C2891784E02439F8A77C62FB10A7758" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2CADD379818D4D128CB3E53D3E566601" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\thermoFunctions.h" - "TargetName" = "8:thermoFunctions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D5D40F1EF034AD3A2757714B66F1A11" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealSolidSolnPhase.h" - "TargetName" = "8:IdealSolidSolnPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E1D802885914276A918F17E040A09D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E96E842BF704E05B248FE9E9474674B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed.cpp" - "TargetName" = "8:flamespeed.cpp" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2FAD4B54152F4F698FC2A1BAF8831599" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_MultiPhaseEquil.h" - "TargetName" = "8:vcs_MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2FC09AAF5A4C4E998211176C5262A084" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_303F2BB4ADCE4E0F9B2B45747E66C057" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Solid1D.h" - "TargetName" = "8:Solid1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30B3C39CD6444421B6418F00C5013828" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\FactoryBase.h" - "TargetName" = "8:FactoryBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33C1BA231B1F42CDAD49F0298167D9BB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3450E67DE4E1425B8B41AE70CA5BEEE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_349A87700DEA427C88D340397A9BF256" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_349F239FA90543188EEC8B24410296BE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ctml.h" - "TargetName" = "8:ck2ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_35C660FB7AD5450692D9BD8417AE21AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\LatticeSolidPhase.h" - "TargetName" = "8:LatticeSolidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36101E75F83548D9864D35DB07B7612F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_IdealGas.h" - "TargetName" = "8:PDSS_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3680F9CE2F25442489E0ACE568906072" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2_blessed_0.csv" - "TargetName" = "8:flame2_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_379A958666C0409F82ED9D1C390CF2DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37F5B433E7DE450A995FDB31F909269A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterPropsIAPWSphi.h" - "TargetName" = "8:WaterPropsIAPWSphi.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385781B4728F417C82E6B75637E10AE2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39905D4925564C469DE3CBE980978999" - { - "SourcePath" = "8:..\\demos\\demo.vcproj" - "TargetName" = "8:demo.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3BE1A06F6E6840F996050C94AA740686" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C17B401E0464701BB1C7948164C30AD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C4A157925824371A0036E03B719B89F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CDB43EBBFF14ED58EA458CC84B18F9B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_IntStarStar.h" - "TargetName" = "8:vcs_IntStarStar.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA27135C62465085AAA4CF042634A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D5BF771EBBC4AF0AA84C1E114FABEE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportBase.h" - "TargetName" = "8:TransportBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3EF615A4DD26446799672090D51EBDE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_403EF1958EF24BAC9D6D715D0A993803" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4144EDA2CE1A466F80088CF6F5482CC0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41915DD244F142089CE3793E90B3DF12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4207771E67BA4E4794A2397BE181FFEE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Mu0Poly.h" - "TargetName" = "8:Mu0Poly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4254D2D0022C4F1EB474B3635BDB1266" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42CE73EDA2964A82BFAF73C2CB6E4B7D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42F68AC09DC0410C8B66213635F5C982" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Species.h" - "TargetName" = "8:Species.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44312EB878254560A66978A2E8304A92" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_450EF4722F9B40F5A7A85BCA48C2CC20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46482802B89A4F9594C4C39CF0441C65" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_471DA45E05AD445EB7B143657DB4688C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4761AD8D69E841E298EB859CE92727BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS.h" - "TargetName" = "8:PDSS.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4783AD3526B547709409884B6091E0B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A22C4B2BF8947AA8789A8558BE2F728" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SemiconductorPhase.h" - "TargetName" = "8:SemiconductorPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A34080C008B4F63A073D329C0B47ECA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\flame_fixed_T_blessed_0.csv" - "TargetName" = "8:flame_fixed_T_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A76C0FA9CF84058918F0E1F8126D049" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A9D96662A6C48C980D6FCCABF7CFE20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Nasa9PolyMultiTempRegion.h" - "TargetName" = "8:Nasa9PolyMultiTempRegion.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B60DDE68DB84E76B59AC82DD6A48B63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BF9981AB5684655AC520EF2C245AF5C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\AqueousTransport.h" - "TargetName" = "8:AqueousTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C3A5DFE89B844958212C21C4A8DE2CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C9C4D481569458FB7B6C4535E474399" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4CE041E0453E4088900BEF68B80427D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D48D12F66B44E83BB214AAFD8B311C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E5E333FAEC14ABFBD58531E8DD3C26C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MMCollisionInt.h" - "TargetName" = "8:MMCollisionInt.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E67F8AB73144D67944EE83F06E06040" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed_blessed_0.csv" - "TargetName" = "8:flamespeed_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EA368FFB8E84A9C88A4BEF0FAFC5A3A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EDBAF4F0C8C401695EE60D9184C34EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\flame1_blessed_0.csv" - "TargetName" = "8:flame1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5072AB7D92454CC39627CAE67CAD2E6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5095A6E6BF554FEDBAEF263F05DDD77B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_509B9A1248FA4683A81BBBA1303BBE71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\PrintCtrl.h" - "TargetName" = "8:PrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50BE0A8057A64D38862D65984EB9CD88" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50C880EA8AD04F98ACC7B17C25481323" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E0B210177949DABBDC9E382016C5B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidJacEval.h" - "TargetName" = "8:ResidJacEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_521AB345758F4DE2BCCE824F6E10A19A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_IdealGas.h" - "TargetName" = "8:VPSSMgr_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52F34CA3B6284884A5FF333B2261DD88" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5359EA42B033411BA9ACEA14D4292527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53DA7F1154AD4808A379EDAE1B4202B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54161044EDBC4F718F7FEE349189D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5571BE3AECFC4E599F4A538E40620D21" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Surf1D.h" - "TargetName" = "8:Surf1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_562372D5415546AD844E25834E0DECD4" - { - "SourcePath" = "8:..\\demos\\combustor.vcproj" - "TargetName" = "8:combustor.vcproj" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_563B1EC810F6456AAB99D37132792433" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5662A7CD4D8C4E5F947A6F355C20C1A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaThermo.h" - "TargetName" = "8:NasaThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_567A83C285154238BE6C478046C5BAFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5790A0F9267C4FA88EE7DF95DB07A8A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_utils.h" - "TargetName" = "8:ckr_utils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_57E6A3FDFDE34C75840B0908431790A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowReactor.h" - "TargetName" = "8:FlowReactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_592F2DC945B24BDB801B54E965A109D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5939C6DA148E4B918D12A3F0CE7DC863" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\adiabatic_flame_blessed_0.csv" - "TargetName" = "8:adiabatic_flame_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_595064E84283443CAC06EEF5106C0641" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59A2A6B397EF4B649D07CA5B10A1D1C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AD1E279C6CD48B09715186E69A55483" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B27B82837184966986697D84EAB8146" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B345CA34B9B4A7083BDD2FA9FF9C8B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B8BDA463997482B8E4B38A6883B9F20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5DFA2ECEDEB446DDA04762D262A2F376" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterProps.h" - "TargetName" = "8:WaterProps.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E55DD812945431BAFCF8E3595428F15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgrFactory.h" - "TargetName" = "8:VPSSMgrFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E6021DD18EE41D8BA4C00CA071A2124" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\GibbsExcessVPSSTP.h" - "TargetName" = "8:GibbsExcessVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5EBBDFD79C6D4331873E595874008962" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F7CAAD1BF2A476288C013604222BBC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60571A0C1CC14E77AB558ADB65B78D30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\Nuclei.h" - "TargetName" = "8:Nuclei.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6146460859434DC6B46784970DBEDBAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61C9DB5B055E4231B975615A8859A10A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\run_examples.py" - "TargetName" = "8:run_examples.py" - "Tag" = "8:" - "Folder" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6263283A4DC1424893235D92CA5C7F32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Elements.h" - "TargetName" = "8:Elements.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_637A29A294854BEB94243A2E2BE72725" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_63F7E804AA36436E9766AD90A1559698" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_641E5DD328FC499FA9E9E2BA97E138D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_64BFD140F3C9407497F177F7920CF70C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6693B16E7E2A4AE3ADC494334E18058F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6725A6F15136415BB26BADDD3CF96F66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6728976522BA4F4BBC490ED099A22916" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterPropsIAPWS.h" - "TargetName" = "8:WaterPropsIAPWS.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67EEC6CEAEB7420BBA0A70992A33175D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_68169AF538624ED5B186C338EE30F4C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698CE4C4A1BF440CBD28B8785A3D9F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698E1FE2069C44AD8727EDCB59AFF2F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9D618F4BAD480B82EE6F7A7EBFC5F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_defs.h" - "TargetName" = "8:ckr_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AC7C33351854C93B3A9E0ADCECF0100" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\rotor.h" - "TargetName" = "8:rotor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B62C2B086DE4A74ABFDB909919F3B1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BF0F3B78ACB42BEB1F321B053DE8255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6CB316A9C7F34E219EA8460990124C07" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6DE44E9F30F44007B2E7B044619759A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\spectralUtilities.h" - "TargetName" = "8:spectralUtilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6EAB3FC0E0224271BA4985CA3779D862" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\LiquidTransportParams.h" - "TargetName" = "8:LiquidTransportParams.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70297F7EB1434F9FAA59A5A015747606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70AC20505A614EC8BD0935D46C48C917" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70F7102F07A84B8DB4E3D5FD338F5540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_71188FBDBE8C4C52A89AFDD622B108B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PureFluidPhase.h" - "TargetName" = "8:PureFluidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_715760DB29D349BC81FFA61C5AE33F17" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7189BBF81A8B46F596C2D94D52CA15DC" - { - "SourcePath" = "8:..\\demos\\NASA_coeffs.vcproj" - "TargetName" = "8:NASA_coeffs.vcproj" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_71FEE454B6604E2592820EDDBF4B9B3B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C19E279C1048D59F0DDED03719FF90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72F9F17B043C4818960ED80D5809861A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7371B6545BE04A179D3611DBA99BC2CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Phase.h" - "TargetName" = "8:Phase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73F2A9908B3D4174BFE10B56DECDF6AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKReader.h" - "TargetName" = "8:CKReader.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_748B480FBFE048E8908EF0D5DC978E87" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_defs.h" - "TargetName" = "8:vcs_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_751FCF7F6799471992B6C1D080421B25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_75BE33EC2FDD4D92831EC94E3583F2E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77579BAF22FE4F6BBA6F6E55C2227394" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78A88A902EE84766911446EF648B4A20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorBase.h" - "TargetName" = "8:ReactorBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78EAF772B5414C25BD4EB77E1CE069A4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_species_thermo.h" - "TargetName" = "8:vcs_species_thermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_793996EB3E1F479CA275A7CEB5851658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A44C47D4CAD464A97B0209D14C65139" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CDF724656054425BFB271F06BD2367C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_ConstVol.h" - "TargetName" = "8:VPSSMgr_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D867A3EE9034A2ABB13B35762290436" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Wall.h" - "TargetName" = "8:Wall.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E3C43DD94004F36B0C814ED81CACB20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E40B44934374E2C986A8908F00523D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitChem.h" - "TargetName" = "8:ImplicitChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E674FA1D43F4F8FA3C0E02DB78E0AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E6FC70ED43A4A3293D06D67EBA76D30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7EA80C1EF9194C0B8790BBFE6CFF7C10" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F2FA130741D4EC0BE2D86966108FCDD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_812FFA9EA6DC43FA8D244219CD7096F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_818FC04B27FA48F991F1F27AF1A02D2B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaPoly1.h" - "TargetName" = "8:NasaPoly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8316AAAC7D124D08AC76B1E9B1B71597" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\AdsorbateThermo.h" - "TargetName" = "8:AdsorbateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_836038144044405AA1C2EF4B70441D38" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_838EF83CC5984E339442887CB2A83FC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8392F052F9604AD6A99C28412715DA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\SquareMatrix.h" - "TargetName" = "8:SquareMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_848A110B76D949EDB0ADED7CE6454C31" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85C910D16AEF4A4C9569503ED54C2E97" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85D870ADC88A4F87A4AD54AC91BE3F54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85DB813C30EC48A8A5B8C91E10645CEE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\SolidTransport.h" - "TargetName" = "8:SolidTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8621C91C5A2D4D9EA50AED521E7FB7CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8644F7E4286B44BF849798AA1F3EF62A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8729B2D3CFC043EAB78F286D76787B78" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87399508B62F47D0BC5E993FD3590D0C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8768926E874F4BFA9F36BBCC563882F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_878CBA68A74A4569983B332DCCEEE813" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\LatticePhase.h" - "TargetName" = "8:LatticePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87D616A7501545E899208A74F7D28235" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\solveSP.h" - "TargetName" = "8:solveSP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883ED26352B04EDEAD89A3CF9C86A55D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_88C7677DFAD94E838F62E0F1663FA36A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_896518E51E604EB388922C7AB451EA56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPStandardStateTP.h" - "TargetName" = "8:VPStandardStateTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A0AEE06B352402FA6E6C5A73E042713" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ConstPressureReactor.h" - "TargetName" = "8:ConstPressureReactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A432F8B24A842C0A70A2D8FD906E798" - { - "SourcePath" = "8:..\\demos\\kinetics1.vcproj" - "TargetName" = "8:kinetics1.vcproj" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A44A594199C4334B78F3AA5D6532ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C16EDF915404D23BB491F51467D0612" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterSSTP.h" - "TargetName" = "8:WaterSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CDB9C24D5594BB2BEC1EE74C8FED863" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Reaction.h" - "TargetName" = "8:Reaction.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8ED76386711346E3BF3D43B2C65D5F6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\RxnSpecies.h" - "TargetName" = "8:RxnSpecies.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_904FCD6D55B842029CEF52AEFDEA4256" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_910E00C9C1E6469BB7A10318D60163F9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_Water.h" - "TargetName" = "8:PDSS_Water.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9124D54F67494EA18B08E5CCB0DA12B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\npflame1_blessed_0.csv" - "TargetName" = "8:npflame1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_928A4CF19A3E4474AA4EF038E37FE2B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92AF3274491F489BA1041CEE3C00ED46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9315EDEB72EF4E0799CBBD629C797E65" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_931815CAC9E94D25949A7DBDC05A5E09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_934D9F093D1E4D64A3E1AE1B319163A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_General.h" - "TargetName" = "8:VPSSMgr_General.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_936D7ED327F842769055274860C7B7CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr.h" - "TargetName" = "8:VPSSMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9469C46213AF4B0B9947F410BFF4B199" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_94F7E346CF344C0291219A51568B2A11" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ConstDensityThermo.h" - "TargetName" = "8:ConstDensityThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95518B1185B344D8A9E17D449E22A07A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9555263A0B514E84A59C87E03AABA49F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_955D5137DD3645A68F22AC7081F4BBD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\flame_fixed_T.py" - "TargetName" = "8:flame_fixed_T.py" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95AD84099D86441F9B0C251039B1A63F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9742F8FA66744C10BDA33C445BB1B5A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97C3AF757D4E47FAA20861128A24C4C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97F452B2E24D4B78B4AB754AAB4D9247" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97F7FCC94E42453B981D376F37B97503" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_987750730309466A9EC1C2E3A5B1D20F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98A1AAE4D6A54C8697F75F0890873F23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SurfPhase.h" - "TargetName" = "8:SurfPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98AF00ED289F450889C13394489C3D4B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\StFlow.h" - "TargetName" = "8:StFlow.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_992BC758B7374D8D9CA69B550F538255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportFactory.h" - "TargetName" = "8:TransportFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_999E3B46B59C4234A7124019401DB7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\stflame1_1_blessed_0.csv" - "TargetName" = "8:stflame1_1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9A1598ED1AED4AF7BE7E8B3C1839F085" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\mdp_allo.h" - "TargetName" = "8:mdp_allo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C83B54D3B124108AED04884A3931252" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiJac.h" - "TargetName" = "8:MultiJac.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D9C52DB234A43C88C442298E232C316" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9DE11C23FDAB482393609E8352286FFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\refine.h" - "TargetName" = "8:refine.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9EAE58E2FB054D75A14E63EA0CA90FAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A08E2857F1B1474E9AAF6D683CC3A7D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0C6574C5F6E41E18AB6AF904617B8D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKParser.h" - "TargetName" = "8:CKParser.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0F47D115D1140D78EA15ED301A96FDF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A241F7A927984443A3BB7B186910ADED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2E900A479E643268F8D32DD67E53FAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.8.0.win32-py2.6.exe" - "TargetName" = "8:Cantera-1.8.0.win32-py2.6.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5136AB1792B4B98937DAC7FD6AE4E90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A52F55B639B6498B993D0C8831EC29A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A56B4B64A8E2482883F4F76F278103DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5898A75EFDA4A008CE657485600DB0F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A691E3B32AF54F4AB5F4B48577183263" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6CD4A6404154996835A7D9B2301BCFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8313B076DCE4F47BC5AB1C18D54D1E8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A84BEECAB2D34EFCA56FAE2792F51D7D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A88814C184944C9FA3E00A2DE301BB17" - { - "SourcePath" = "8:..\\demos\\Rankine.vcproj" - "TargetName" = "8:Rankine.vcproj" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8BE7E9B8E89418B9C209C26C2481E52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A932A0AF2C944F8F9067A24C25B978CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A95FA829E1D342E0BD407CA2FF074E9A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MolalityVPSSTP.h" - "TargetName" = "8:MolalityVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A9E3A786A2954BC687EB209593DFAA31" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\kinetics1.cpp" - "TargetName" = "8:kinetics1.cpp" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA0F97AADCE24AC29EF73E7D6C696C54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA23BF6053F542538AF0B7FB48C0B4F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\adiabatic_blessed_0.csv" - "TargetName" = "8:adiabatic_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB701B636CC24D9F9CAA71C6B897E7AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_DoubleStarStar.h" - "TargetName" = "8:vcs_DoubleStarStar.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9515FE77614EF19E6B1E92CDD648A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ABE7E862C38241F19744114841629864" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AD788D5178DD4DE2A68B08B9297C0D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE6136D7D3F341089B23CF2FE032F852" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2_blessed_0.csv" - "TargetName" = "8:flame2_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF2F612EC55F42C181F990BB5BF85D09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\soundSpeed.py" - "TargetName" = "8:soundSpeed.py" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF505C309B83425BB0ACBC40586DC467" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_types.h" - "TargetName" = "8:VPSSMgr_types.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B103E721182F4DD6AD7F65CF565F83C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B16017E037F7472DA99F97FA0994567E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B26DE6FA1DBA4CD7A54798EFD42761C7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reservoir.h" - "TargetName" = "8:Reservoir.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2E109695C4F4E329F991DAB91EC054E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\piston_blessed_0.csv" - "TargetName" = "8:piston_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B361CA65836B4CCA975759ED0B6CAE6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3B4F39E240F4463BB09201FC8B32CD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B42AB8E6DFE545408B9760D0D10919CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc_blessed_0.csv" - "TargetName" = "8:sofc_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FE641E9EE14B3A98EB023B9B281012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B590C82783544AD2A08F289BC6320EAF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Element.h" - "TargetName" = "8:Element.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5F13C260D704D10A1AA9E9C428FD17C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5F44ACDAC4142C9B086E996419F26D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6B7A55B6F78408B87B10B799DE5A19A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\surf_pfr.py" - "TargetName" = "8:surf_pfr.py" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6BB322EEC614D6381014E64306652A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\LogPrintCtrl.h" - "TargetName" = "8:LogPrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B74214D38A5B4B88B5E169B9E638C59B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\functors.py" - "TargetName" = "8:functors.py" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7E71DDEC9694BB3913A5A951D071C79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_Exception.h" - "TargetName" = "8:vcs_Exception.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7FE7CDB0F4C4BDAB730BB096498F836" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_ConstVol.h" - "TargetName" = "8:PDSS_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7FE86B0D0F1439F8BD9FDA7DC0BC6E8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\rankine.cpp" - "TargetName" = "8:rankine.cpp" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8DC8835383B4D81865DE6728E152C6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B92716F1835748778D2EA2A170A3463C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B931BA0672394A6D8134E66E8381B7D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\equil_koh_blessed_0.csv" - "TargetName" = "8:equil_koh_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9D00A7B741A4394B6D20DFBAD7B67B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Constituent.h" - "TargetName" = "8:Constituent.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9F7ACBBB03641A189D48B3F96B177AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA434DDB92844939B4727EA0D07F28F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA805C53980C41769659D085C5C8E0B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBB2831DC8974D1BAC6B7CC8F8FBD7E3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC48260E6FE744BCB551169FC8E965F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealMolalSoln.h" - "TargetName" = "8:IdealMolalSoln.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC7DFDE6592D463B95C307DBE7305593" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD9ECC0B46EC450CAF842508F8F7BE33" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_HKFT.h" - "TargetName" = "8:PDSS_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDE8E81A8D2245DD82FEF47265A5CC3D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BECC05E6C8EB47B68F6344A00F04C46D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0D8D2C4874C4694895DE76AF8ED8E8D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0E4D3E9F985430CB96D8E96014865FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C1510D42AA964597A8CB449C6B94E86B" - { - "SourcePath" = "8:..\\demos\\CanteraDemos.sln" - "TargetName" = "8:CanteraDemos.sln" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C27608223A4A46CFB21A58073E99629E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\diamond_blessed_0.csv" - "TargetName" = "8:diamond_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C27611FCB2744386BA7B3CD0EA9C2116" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C357D956140243B5A87AA9011DAF1207" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C51F790219A544D29B9BCBC4B83E1C3E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidEval.h" - "TargetName" = "8:ResidEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C620775E0B56481695BDA176D6BBF60A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6896DE4391E40FF980A950DDE8B43D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7FFE7D762304EA08B7376CADFF4D8C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_Water_ConstVol.h" - "TargetName" = "8:VPSSMgr_Water_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C8198F923CDB401EAF223744653A6806" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C844497867604180ABCB21CF50308A75" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\L_matrix.h" - "TargetName" = "8:L_matrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CA734CBAEC8440EC8CB32AF7EF8D71AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBFAB93B4A1B40349FCD9BF44ED28D1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCDF5C1EFB75477BB295929481C75CC7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD85044C04E14CD3A9419F46205EA412" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD972A5865874CB9882B6001648FB46E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Resid1D.h" - "TargetName" = "8:Resid1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF5084794E3343669C4337B95A9F7BF1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_SpeciesProperties.h" - "TargetName" = "8:vcs_SpeciesProperties.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFAF2622550E48AA9B0F502BD4022FB5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D08BC52EA7E5473C91A82F2CE77B9C05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0A9D802F4924B3B8C0429DFF0D37C9E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\EdgePhase.h" - "TargetName" = "8:EdgePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0D86929159D4E008C467978E92A6B0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\OneDim.h" - "TargetName" = "8:OneDim.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0E38FA5FFFD42BC9507FFC804B3B271" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D1CD893E014F4FBE842B4B0E2CDDE652" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D238C397E41B4DC684CF79761C4B85D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKineticsWriter.h" - "TargetName" = "8:GasKineticsWriter.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D29E08866CBB44D0A548B5F8A7D90584" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\flowControllers.h" - "TargetName" = "8:flowControllers.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2BB3D54E2B2459596E3FCC0C5648A63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermo.h" - "TargetName" = "8:SpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D38628C1BEF7481C85F448F4E8D1C3EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D418D6CC07974B16B70C9B93970427FC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\clockWC.h" - "TargetName" = "8:clockWC.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D428726607B744478982A6F3AEBB5937" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\DiatomicMolecule.h" - "TargetName" = "8:DiatomicMolecule.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D4E8F23E7DEE4EBE85604448D9E9F66F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D53FFA2FD41F4B55B55A5F34D59755C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D5E167B7033D49188854ABA54CB6A543" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor.cpp" - "TargetName" = "8:combustor.cpp" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D669B0F109D24B248427555BFC1EFFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\State.h" - "TargetName" = "8:State.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75AC18CFD714D179B403F394FEE5C6B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MixTransport.h" - "TargetName" = "8:MixTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D7EDA76276BA47C5B427D5289E602655" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Constituents.h" - "TargetName" = "8:Constituents.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D8DE5B3E74534CEFBF787CCC4124FF6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PseudoBinaryVPSSTP.h" - "TargetName" = "8:PseudoBinaryVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D9342B2A479345D79B17511A69B5E867" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA59B07FBF1F42CDB8AEF8B24809BF08" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA8A6A14EA7A4B87A06CA40B37404208" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB58150AE7CE4F5390C9322D5F5E7235" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\PID_Controller.h" - "TargetName" = "8:PID_Controller.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6D039C3ED14EE58F469C211EE0336C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC239E2B54624CCF8D26F85C98393DC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_Water_HKFT.h" - "TargetName" = "8:VPSSMgr_Water_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC32635C462B40BEBEEC9176E79A9BB8" - { - "SourcePath" = "8:..\\..\\..\\winconfig.h" - "TargetName" = "8:winconfig.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DCE0313BBE4C4DFEA23ACDBB6863B390" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DD6D9600C356455D95BD2C44C50214DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE6ED970A6634704843FC2D976DDB51F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\HMWSoln.h" - "TargetName" = "8:HMWSoln.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF631F75976846E58594E4C6FD1630C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF78E69F06884ED8B21785EFA82570F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E00C0F5054204111B95C89CE4CF7CFA7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportParams.h" - "TargetName" = "8:TransportParams.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0618DF655024D8BA1CA9B54B5915689" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1E6F5ED150E4549979E0E3F9E6D2F67" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2DB44B0AA4245D8BFE17D1B069BAE0F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Inlet1D.h" - "TargetName" = "8:Inlet1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2DDE31CAC874AE0B9F7F9145248BE6B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rp_blessed_0.txt" - "TargetName" = "8:rp_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E40175C04F974A7BA19133984051989B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4171B5DBA664372BB43F3B40B2E1236" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ThermoFactory.h" - "TargetName" = "8:ThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A483565C5E40B79805552DC4B5292C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E6C43F98CB9E4C199ABD77B37D21A564" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E78FD6989E1D4799AAAD31ACD43B0C1D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\FtnTransport.h" - "TargetName" = "8:FtnTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E90BD26B31DB42D59ABCCF0A14CCCB52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\NonlinearSolver.h" - "TargetName" = "8:NonlinearSolver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E9768C656AD141FCA969B7B9CAFE7F83" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E9DF9028F228449BA30513E9EA99147C" - { - "SourcePath" = "8:..\\..\\..\\bin\\exp3to2.sh" - "TargetName" = "8:exp3to2.sh" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0930AEA1074763823B836B96A138A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB3D7262767C4E5BB3581882EB0BC79C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB7840FED8294FFDB3111C6B3DD32833" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Domain1D.h" - "TargetName" = "8:Domain1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB82DBEEDAE14B51840A9D7153E52BBB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EBB20B541FE543F7A695E466975C6495" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoFactory.h" - "TargetName" = "8:SpeciesThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC5F3263FCAA48CEB25E23414F082818" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC6786EBE72E46B694D473463C72A2BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoInterpType.h" - "TargetName" = "8:SpeciesThermoInterpType.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECA3396FBFD54A94B2DFB33B080F0D4E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECAF852C95DD46A39B119046E569A5F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Nasa9Poly1.h" - "TargetName" = "8:Nasa9Poly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECED5D161C3348B98B263CFECA0A7DCF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED40FDD34E984498ADC37D88B43AEAA4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaPoly2.h" - "TargetName" = "8:NasaPoly2.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED67782207C047F4A5935DCE2E79F151" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDB029B79CF646ED9D83EE7DA1A80900" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFA30E0040CD47D995300679F7C2846B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\StoichSubstanceSSTP.h" - "TargetName" = "8:StoichSubstanceSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFCA267481B0414BAE826AA0B4485F3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F18978587EE441EA8B9B276B9FE566FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F2A92891BD6D4A87BB614760C33A483D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ct.h" - "TargetName" = "8:ck2ct.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F2E355F7534548FA97DD0E22363A0107" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F33D31C689BD40F2AF95AD8905B4CA5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3A73DE374274D23B5B71D3950610F46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F47B7B39692A4CFFA8EADC42095D740D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F48C0E268A0F4258B2FD7E65B9D0AE91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F495A54DE04C4B39B5F52C4AA64E7060" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_solve.h" - "TargetName" = "8:vcs_solve.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4F26BD1AB984B27A14DB3014923C36C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4F48A978F924204A75079994744E641" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MetalPhase.h" - "TargetName" = "8:MetalPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4FB2F3079254D76B2DF7DF3B7391098" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\electrolytes.h" - "TargetName" = "8:electrolytes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F52E35C2A75341B5B07D033F7072C765" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F5B0599D33DE4EA882B0C846B85FD66E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F622D25373114C90976CCE00B20B11FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\StoichSubstance.h" - "TargetName" = "8:StoichSubstance.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6E4EBD5FFCA494C8355AF6764844103" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F70CE7A5A1844D3A99121A7A41ACAAF7" - { - "SourcePath" = "8:..\\..\\..\\tools\\templates\\cxx\\demo.cpp" - "TargetName" = "8:demo.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F814D235C9B243729C65F42D5CEE59D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81A7E5426654A1891028EF1BDDF87CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F862E9C9A48D4C569698C90E1EC6850B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F88CE78D01A1484A9A363ECD019F9ABB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_prob.h" - "TargetName" = "8:vcs_prob.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8E58FC7A5A74126B5F8D78607815377" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8FB0389B5924D9585AA8CB15F4A2BE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ThermoPhase.h" - "TargetName" = "8:ThermoPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F90E2786F2D946A391E88893C923D118" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9D283B3D2094812A29561F09605DE12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\DustyGasTransport.h" - "TargetName" = "8:DustyGasTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA6DD5D364B64F17832B6BC43A6F9D6C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBC9FE116DDD46DEB48CF787395219C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBD4F0EEEFE546FB9FF1BAD912D6C611" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBFB14FD38C7494B8A4C46E34805BC91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\surf_pfr_blessed_0.csv" - "TargetName" = "8:surf_pfr_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FC86845237DD456CBCC89B92C093E444" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FD0456378D394DF48B3AB5BD0502EBB1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FDB8A6CE75A943ECA1F4D7DFB8F69902" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFFDE78FD53C4E159AF3540A42F61677" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DB5A91AA0717429F8150BEDF3E9C5883" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_459DD0AF25C34F349354CA380B58D1B1" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_864A875C734E4F7993EF599A792089AF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0A794889F1894108860FAF5B5C19F2FA" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B07B49F047FC40469C9073136E5D2AFF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_E012FB4758FF455E92C3DDA25362EAA7" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_352275D48884496D8522F3217A13F3E6" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_46C8AF45EE22482E8A160E14A2420774" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B5AFB668A86B4992A1E2A55DAE0CAA16" - { - "Name" = "8:templates" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_62F15E8A639B40A680E06DA189388AC0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_30C49B8557964DAAA5648B72B486BC0B" - { - "Name" = "8:diamond_cvd" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD5998C3AA514C3F9D8E350B7AF5182F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A189A372257B4D2C98AC054F152082AD" - { - "Name" = "8:catcomb_stagflow" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_399B14FE027144C088EA5D752CD26E05" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - { - "Name" = "8:critProperties" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_448EDC4CC83B4FEDADF2588F31B25388" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6EE0A973C3154AF889BC747660A3DDA6" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0FD260E59E584BFA9D24F853D4A45C4E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_41BE50E702034B8C9B8D2A4DE46C52C1" - { - "Name" = "8:reactor2_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6412A81825374E6E826D1B646E96CE24" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_862D1191D2FA47FDBFB0D20643AE2810" - { - "Name" = "8:piston_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_99B345421BB245F58B4DA9FB52ACE08E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - { - "Name" = "8:mix2_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4E58B33F5F65432689D27BF980D3557A" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B7CA7580B6FE4EBCAC388C5D16971D37" - { - "Name" = "8:surf_pfr_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9F36D7A44DE545179026B4E34D467D59" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_CEAF34861F46422B868255409BD206EB" - { - "Name" = "8:functors_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B2447D4E250A49168D4862CB0FD92145" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_EC6DCD68540E416F9C134117A56B0A60" - { - "Name" = "8:combustor_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEDF13CB9C8D4564BBC43FB231DE09C4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F38CA433DA0045498BDE87595F79F7ED" - { - "Name" = "8:sensitivity_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_75AE7C55505B4136A868BE9DB0C833E4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F5B8CA7CC3804769839EBE6C8689F404" - { - "Name" = "8:mix1_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DDFF0DEC413C4781B8ADD5B64F0BFA8B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_FFAAB2E584E943F89B7A8A54812FF5E0" - { - "Name" = "8:reactor1_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8C062A19E942435296F9D104811208DE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_168B35477AF641A0B1FC3CA609528ED8" - { - "Name" = "8:soundSpeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFDA88FFC7DF473A98F62C584558AAA7" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - { - "Name" = "8:isentropic" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_012C7C24E9854546A6D9100EAD67751F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0976E47E00BC4F85A2393D8678A18D6D" - { - "Name" = "8:multiphase_plasma" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_67362A358639403EA42173D586FD992C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BB35C35F43D41B3B6DB55DE61916248" - { - "Name" = "8:stoich_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4DB8FE1DA6464EE087D1C85D09CCB548" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_8E4436C4886441AE8BB0E460DFA8BE7F" - { - "Name" = "8:adiabatic_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7989BD54B4E641BDB10AE593994219B3" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B86834CB836F4AB2B3D29D6BDF9C35A6" - { - "Name" = "8:simple_test" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_22B3BAF5C13B4AF8AF215DF801DD3046" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_22760F0D8ABC4AB8A5B0948B2CCEF635" - { - "Name" = "8:free_h2_air" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BF73867B624E475B8B0DE5A9375C8632" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3823235E9E3E445CBD912A80B866DA0B" - { - "Name" = "8:stflame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_3582CFF8397947419FC216A757E77A4E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_496FD029390C4E4095219F8C5BD1246F" - { - "Name" = "8:adiabatic_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D61C1C54DF2D4449A5D4396B00A84C64" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5A9326FD6A214497A76F171E934D8729" - { - "Name" = "8:flame2" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F1A9ADFAE8044E1DA1199836DA6DC838" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_AC712E75B97F4766953A8ACF332D3F1C" - { - "Name" = "8:flame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8CFD385224704C63B6A1C100C26C5395" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_C466AACC518A400CA4AA80226796F0D1" - { - "Name" = "8:npflame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_345BD77AACE24A81BDD5700796F2E20F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D7ADDA3C318D49EBABB7636C3B80ECD7" - { - "Name" = "8:flame_fixed_T" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DA35FF699B954BDC9FFAEFD518E4071E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_91BFCC5A92684F63A014CEC3B9265F1A" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4550D17AF47F43D38272308352CF8718" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_335A9AE259D245E8840177A55C54701B" - { - "Name" = "8:NASA_coeffs" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6ECD8DEC64D04108B9357B5FFB3CBD8E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_42895A51CFC946CC8F5C162E27B7CEA5" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E8977A1C8EEE4380A587A77D385169F4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_977472896DA345AC9C1D2C3999F9A4A2" - { - "Name" = "8:flamespeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7B3B00D492B044BEBA59911B7C814970" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_996658E24E89485D8D6ED952560576DF" - { - "Name" = "8:kinetics1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F05750F1C83E4A10A40290572D9130DA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E345C75CD39149EC856898DE24D48746" - { - "Name" = "8:combustor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9512C0F75C404EE1A8CDAFE1C98937B4" - "Folders" - { - } - } - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - "RequiresElevation" = "11:FALSE" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{52E4E337-4FCE-42FC-9AC9-6EEECE8C231E}" - "PackageCode" = "8:{6E97D128-40CD-443D-AF01-5687B8884515}" - "UpgradeCode" = "8:{1E20CBE3-A0E1-4DF5-AC48-85FF68A24B77}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:FALSE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.8.0" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_99B1AD3DF5084F17BBA2DA9A8E4A758E" - { - "Name" = "8:C++ Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_056E63AF596746FA840673460F3467BA" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_9_0_Microsoft_VC90_DebugCRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_91ECA244CB1C451DB46B22E1F3C67359" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:microsoft_vc90_debugcrt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_9_0_Microsoft_VC90_CRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_D459FF6207F848EFACC8160512BC04C0" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:microsoft_vc90_crt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_058317BC8A364FC684F4FCE559188827" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_0E292CD01C814FA9945C45A7BA9E1065" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib_d.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_14738B23CCC74201B3F3619639554DD1" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\cti2ctml.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{4F5B4442-98E5-4B11-9239-CDF5148C1902}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_1CA7BB938C7D4C37BB5B6A9E4F73E489" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\equil_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_235972FD19834CC49568823B639F6056" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\thermo.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_25F3A3CA11F8464AAB68B5C04090FB61" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\equil.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2A358D00247749D8B1F2C9B3DD913939" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctcxx_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2BC84B66CFCB4348AB644025BE8CEA68" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2ED30B81981D48DD93B5D82BD4BD44BA" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\SUNDIALS_SHARED_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_4DC82D064F6147E1B333AA027B89F749" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\base.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5048D18ABBA04F1ABD69A18075601D4C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_54649A08925747FC887AFD20755FB76A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5B070567B4124B929F20C826CD87ADDF" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5B8B28601AB74E219F5FEF5F2EB9F01D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\numerics_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5F680C78BC254BFF8F45CFC07B3C1347" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\kinetics_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_601B1AAC354E477ABB10113E35D7B43D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\kinetics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_660FB1E1734442FE83CFB2A9CD93280E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_6E6713375FC642C3A0632A59F17D60E7" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_7774CD885BC1422CABE117B602355EAF" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_82727AA7E07F4E739D5D2373354378A9" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\CVODES_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_83393619A55E4551870EB738FB1D5C4E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_838BEA5EF8254762914B08B917C1F7ED" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_888BD7BA9EC64ED59283DB69834E4BA9" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8C238445125B4DEFA1FCA671D9D4A328" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\numerics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8CF03958D7D44F7A9B30BCEDFA55CD0A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_941C872E96C14317AAB918817A02BCEA" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\NVEC_SER_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9D3366B508A141EA9651BD24FEB2FFF6" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A352B1A3A72149AC807C5650BD40EA55" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\SUNDIALS_SHARED.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A44ED41478454FE1AC8F437795125788" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\thermo_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A5FDFAB8D04D4091B74F945CDFA13EE7" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_BFB996117C244A958E3F46131CFA483A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctcxx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C07F50571A13454FAD88671C31B82B9A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\CVODES.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C3742ACDED3441C8B9626B36358FF45F" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\base_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_CD0873029B1A4CA781081A1551554150" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_D2DF67E2996C456AB37115D5EF067CEE" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\NVEC_SER.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_D56AB4AFFE3943C7AA22831BCB2FF143" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DC0CDC30152E4448A80DDBE817E76A8D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F0198774990541808A87CB1A6FE41597" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - } -} diff --git a/win32/vc9/SetupCantera/SetupCanteraLite.vdproj b/win32/vc9/SetupCantera/SetupCanteraLite.vdproj deleted file mode 100755 index cf63ae0d6..000000000 --- a/win32/vc9/SetupCantera/SetupCanteraLite.vdproj +++ /dev/null @@ -1,11974 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCanteraLite" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0700963A1F1B41FFABC3911498DB18B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0936663A9C31411CA21989F4FA39A5F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_09812E60422340BF9B92C7BF4CDE6FC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D47388E1B474AF08F6DA0FE72025C42" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1603140AC6F7489CA14D3F41F58E9379" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_188F8F797CE24E7C9FC6BD62D2B5D37F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A66CE0396934BBDBA728386725B2310" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AA05F39A2464BDD922D26B58FE78BC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DF1B93159BE475CA0438F31722F856B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DCD90FBD1DF4FA588238C70E0BADBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FC1A192ACD74D0099AA094225B7D7FB" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FC1A192ACD74D0099AA094225B7D7FB" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46756B27C91E4C17A9F3C06BCC6D9011" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76E915885B634DC6B57F89520C4788A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85089C17D248A7A8A12641C4F86125" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_811F3F47C3D94B628C68557B0EB6B36B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_820901EF2B7645DA9A49A95F3E9DE675" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_979C4C61FFCC47BF9DD9142A747D70F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E71EC4B7404230AA4186AE74AE88F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997EF831DA8A4F9C99259C70FFD9E6C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B44971E00A5481BBA5AFD0A2166D16F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1555851966F4CBDB4BE3837641C843A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44EA116D8BD401B9F5CB43FD0A516EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A571DB581B7B4085B6EE29881A27A2D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD850F3126CA46F9AEB85D4851B8149F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7ADCE96BBE64258BC9786A36007F18B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C21C0E1658844265AABB721C6F59AB24" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB2FCC33698242D0BFDAA47D5C4B0F63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3284BDBAC7847909EAF138FCCDD512F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA9C782985C041509BE9C4A7CB68A4A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3D9492FF8AB48679A4B287D1CE30AD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E885D5C620AE4F7B824607C2AE4001AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB1CB1838E7449B4B3F05EF3BA026DC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB2F210E1C9240598CC672B338EF7B07" - "OwnerKey" = "8:_3FC1A192ACD74D0099AA094225B7D7FB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB89828AF09E40FFA26D353F1088C41B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCanteraLite.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "DebugMDD" - { - "DisplayName" = "8:DebugMDD" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:DebugMDD\\SetupCanteraLite.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0700963A1F1B41FFABC3911498DB18B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0936663A9C31411CA21989F4FA39A5F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_09812E60422340BF9B92C7BF4CDE6FC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D47388E1B474AF08F6DA0FE72025C42" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine.py" - "TargetName" = "8:rankine.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1603140AC6F7489CA14D3F41F58E9379" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\buildwin.m" - "TargetName" = "8:buildwin.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_188F8F797CE24E7C9FC6BD62D2B5D37F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A66CE0396934BBDBA728386725B2310" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1AA05F39A2464BDD922D26B58FE78BC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DF1B93159BE475CA0438F31722F856B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3DCD90FBD1DF4FA588238C70E0BADBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\function1.py" - "TargetName" = "8:function1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46756B27C91E4C17A9F3C06BCC6D9011" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeeds.py" - "TargetName" = "8:soundSpeeds.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76E915885B634DC6B57F89520C4788A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A85089C17D248A7A8A12641C4F86125" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_811F3F47C3D94B628C68557B0EB6B36B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_820901EF2B7645DA9A49A95F3E9DE675" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_979C4C61FFCC47BF9DD9142A747D70F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.7.0.win32-py2.5.exe" - "TargetName" = "8:Cantera-1.7.0.win32-py2.5.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E71EC4B7404230AA4186AE74AE88F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_997EF831DA8A4F9C99259C70FFD9E6C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\fixed_T_flame.py" - "TargetName" = "8:fixed_T_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9B44971E00A5481BBA5AFD0A2166D16F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1555851966F4CBDB4BE3837641C843A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A44EA116D8BD401B9F5CB43FD0A516EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1.py" - "TargetName" = "8:npflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A571DB581B7B4085B6EE29881A27A2D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air.py" - "TargetName" = "8:free_h2_air.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AD850F3126CA46F9AEB85D4851B8149F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7ADCE96BBE64258BC9786A36007F18B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C21C0E1658844265AABB721C6F59AB24" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB2FCC33698242D0BFDAA47D5C4B0F63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3284BDBAC7847909EAF138FCCDD512F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA9C782985C041509BE9C4A7CB68A4A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3D9492FF8AB48679A4B287D1CE30AD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E885D5C620AE4F7B824607C2AE4001AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB1CB1838E7449B4B3F05EF3BA026DC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB89828AF09E40FFA26D353F1088C41B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{1525181F-901A-416C-8A58-119130FE478E}:_1DE66EEE44224B05A700D4E2E93A0FB7" - { - "Name" = "8:#1914" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:SystemFolder" - "Folders" - { - } - } - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_D46FB0DFF1A641E9BFF64D43063070E6" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_DF884E96ECD3496ABA2742BCED88AAF5" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D0580EB36EB74E3A86790E702522DD35" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_C549C449993E4410B91BDC9AF59B84C5" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - "RequiresElevation" = "11:FALSE" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{6318C429-3F69-486A-9987-4D1EE1CA9328}" - "PackageCode" = "8:{0468CAED-E609-40B8-90FF-0A935A842648}" - "UpgradeCode" = "8:{86C96BD0-4EFB-4B99-AB55-8EFAF9B39170}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.5.4" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:_DF884E96ECD3496ABA2742BCED88AAF5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_3FC1A192ACD74D0099AA094225B7D7FB" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_9_0_Microsoft_VC90_DebugCRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_EB2F210E1C9240598CC672B338EF7B07" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:microsoft_vc90_debugcrt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1DE66EEE44224B05A700D4E2E93A0FB7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - } -} diff --git a/win32/vc9/SetupCanteraDebug/SetupCanteraDebug.vdproj b/win32/vc9/SetupCanteraDebug/SetupCanteraDebug.vdproj deleted file mode 100755 index 9e86ba742..000000000 --- a/win32/vc9/SetupCanteraDebug/SetupCanteraDebug.vdproj +++ /dev/null @@ -1,8417 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCanteraDebug" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0043CEF4892147A79B11ADFA52A33062" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0163DC5912C443CE897596D5CBC8E647" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_021C20C556684F15B0BED1EC365111AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0356EF8C707E48C1AD5DDE466B7E0FF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_03AD241CF2AE4CABAEA018EF343320D4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_045EF98593D14ACCACFA4AEFB806D557" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_084F901A74914242ABD6D1A50E5EB0A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0782E62EEC4148B15E9076506E24A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DBC9A18428C43128C18EA7340D7E32C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E1A45BD74554B0D953E436448EAAB17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0F054011DB2B41D493EF7CCC058E850F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0FC8682BF0F04FC3B72982B6402BAD66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1005BC9331DC443F9462A97FCB6B85F6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_104910B4D9E847BDBE0C876D7F5C0142" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_10DF05E3B44E4E97B1D0D2C00DBDC873" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14165AEF1F3243F1974C7793E4D77731" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1532D68C18F2463FB29B41A6A861221B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_156511AFC9BA4058B0D95BEF5584C8EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15E8DEE197F64FDCBD7089A03BE23511" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1722F0DD789942CB9AFDF8592C5D98CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_174A53664A92479DB734572FD98CA90E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3EBA50A1FB4E9595C00C512FCF7984" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A49A3A64A674823A82AB58C3053364F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B4DDA3351364504866B9CA3B495DECF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B9BC314D6B546AFA1D23AC6D4664DBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C39DF7550E443579BC9FA96ECFF3138" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D6A3E458DF54D4D95818285C6E6D471" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E3BFD93A7844560AB22C5953C267D00" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6E2FF130754D63B30AB1E9494A720F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_227533B7A3C94587A9E7F8973CB7B619" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22E98C71ED3D404495FA2F6B8E17ED06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2328D794CF294D2CA674649DB6D17476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_234CBFB5D56140D8AA5B31A7E902D2AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_24667FBD46ED4A6B9BE6FF067A18EB63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2716D65547904F75A34FFF69998C9B8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_287AD5E69F9F4F938F7652D96CCA4339" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2953DD43B79546A4A263A37110CF89CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_297EC670566C4A7A8B90A5B73A03C832" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29E97C27E9414BBE8DC81082673C3327" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A2448C262A4488F9AED44D3B37CFEF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A9E757A274545A28F0D13A66E72667D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AC45927DF544FEEB8CD5E1AB03110EE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D75C671D60540F495D438D332AFBE38" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E87522FB07847CB98A980AC8229EBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3039446FA28D4019937D780396178A92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_315A3535FC634498A07F5F8EC32F6DCB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32150CD21ABB4D598AD8261BFA220B57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36A741C5BB6F4DAF9C92BE8E0ECC9E07" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37829FFE17524DAE91DD74D314365D40" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3786B9BDEAC44F21B08E7B2370CEA563" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39E496E4A8AB4288902B70F42EC88DBE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A79F35AF0324A03AFB0B49D60D105DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D78E7C9130F4E1485FE013FE4432AD3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E6087F76EB04948A84F7E1E2CE9DD2A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E81324694AD4FDBB074EDB3AA7E44EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F590EA2FD854DCD866419A5DD71E295" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41106DEB1A91431BA7F3A095C3815785" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41D88BF518304047A6BB21068FD3B517" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4259632DC20942C1A4D327931FB52BEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4278650E97994590B40BC706B79390DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C6F84923094999A5AD20C46C730163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44477B341E9349009794058488B8DF61" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47024511505D4CB089782A48F4D8EB69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_471811FD415342599B778902DC554CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_479850EE099F41AC98ACFD46D0B310BE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_48C099169AAB432D8E2B2B67C885801B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_48C86E81CE304EF7913D9DD6312E6F41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_49A5D64D38A5436C963D02FAD563434E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C4556147DDA476DB0A8282467B04F43" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E93803416DB48B6915B6C698F92C665" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F00360381F24011A1CE42DEB6FCAC94" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F8DF0E5F39249C1816E9059D9E5BA54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4FCF96C2D967477CA0ADBE3A20B4556F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5339FF33F5C34343837C4DEC217A3B89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53E15DC7C5C845848A3487B1A51BB491" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5512E64EF45F4822B6C8F3FCCA70AC74" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_56B6B2C6BBA9474A9900831ED83255F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_56D86C8CB0AD442B9E9D2E507B1880B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_578092D0F7874304A6369B7FE1AA04DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_57E1E4F277D94BBFB40DA7FD74536C5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59E336C3592041F2BCC96311BB23EF6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A4DE1832CFC41ED9B1C418C81D6F048" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5BBA913179C44D98A9A13509729399E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CD6FF73941D456B9EFE8E5E3A506524" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E07BCF1827F447DB3F19E67A5166369" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5EFD972DC08B4DB5B62160335CD2F02F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6105C68CABF64A1D85DA0E29293A4382" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_620C0CB1E6EA45119C1250C2D1776BE0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_666213A2C5734B6A9487EA322C7F8E8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_66B9AED9DF134F549522A1D04E222433" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_66F1DBCAA1E54D159EB29418C7FA6D9E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_66F9484F0F414A63A40B879951A9AC93" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67FE89D797EA48BBBF3F54CE62B65FA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_68AC1C2334424F2F81393617CB4BE15D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698E743E54D54B219FD7F5CAA2690286" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AA82759F8F24CFEBDB14C5282A9883E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAEFBB05C9B44A491E68C51C238845B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEBED54AC304A2692055D52E3360A1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AF141708BCE47CFBCAF87AB45854E73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B378751D34949348EE4913E69C4AB5A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BDA398CD62747BEBDBEC037D214E25F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6C6A7655C79F4BD8A3F45EAE68A7986A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6C6E964C7C22454484A9C0C9121BA4AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D40D790AEF14E798B663914810F8CD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6DAA8030ACAF45089867E5431C42F54B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_707EBC583C6F4989AAAD09FDC9741FB4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_711BEDC9790D4F74B9F7F0F6419D80BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7121407A0725468FA86D675E3237B403" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72FF1156DAD9443EBF57780DD602A5D4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_731BD40091814EA9B082A25623F44298" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7413F0FDB4984F69805F63745EFD03C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_74245B24DC224E8CB5BAE82F4189272A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7690C7560DEF4C399EB334AE44C55F86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7800DB0BCF4B4FD09C5517C70F88386B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_785F51483EC2457892E349D4178A8649" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7867C2114DD14559BF9B3D87E70E6D1C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78DBF46C30664E5DBEBAC88654D8DE8E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7984E0CF1B9A4916A9BFF5691D9B30ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79B2983C1BCF472FACFB5CC1282B6FB2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A5425686CD1478C8EDABA757E257C6D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9EFDEF3CD34C0EB464A27FCAA5CBB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7E2C697AF84593A4E089AB9C76C474" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D6A6899BE45438CB3E6CEEBE388FAB0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E5FA68AA68B496084066FCC2B7A1B7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F85C98019124A04A9A4F81C269651AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_844A8A4BE787469994FDFB22992BF077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85B90BB3EE1C49C1AEB30086F78DDAB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85D3FAAD264F494D9E44CABCF1B879D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_86D19BA832D14DA0A3F6791D806AAB67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_879884F48FE144CA919236CE4FA9FE19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87D7537E9C7A46A58D3ACC690DF0BEAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C6A4E3E4DA54A0C924B6E42CF66A68D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C82B39AA2704FD7952DED60F0D98BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CA8B4BF378D451CA0E7D52531F7AEA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8DE4268A772342A6A560AB77D9E8CF79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8F147F13C5894045A7C2A9E73FAA33A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8F2821FBD2F547A39E20885A416E1687" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_90D8DC0EEFBE4A2BAB5F4269B2C811FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_91B392BC03EE456DB54353C4EA62FF86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_91EB3AD25866499786C94A988E834A4C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_931941F76DAE4AB29EEEFCFB1DEA98FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_933AB93386644CC6B9672F679E1EF61F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_939D562D0EDE4CF992AB133625D355AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_947A23E7265D4FBBB756951413B8624B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9561E62E5AC74692983F902E8AA5C383" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95823044A3064F3A8BB42E3EBC5834BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95B982B92D0846BE8CAB35085000F7DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95CD410C3CF748AAB0219A2548D7B19C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_960F4CFE97EC48439D786FBED5E134C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9624E2926C8D4A9696E3B020356C708E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97C23218EC3C4A82B9FA5934711FD9D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98B355E08F044766AB08C1568AD858AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BA4071392104C3184D14B3EEAC9702F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BF2636CF0F94D7881241BDC56BFADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BF2F77D08FA4C7CBE6519CFDC6D2A09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C50874CA2ED4790B4239E52BD0BA654" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9CF11C75C6E04B898E56736723D03BB1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E6DB6F72473492E9981185A7086059B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1FA009E794546C2BAD2325D8A633E7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4846BE14986425F88EB2DA9B6D41135" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5479162EB884D018010FC3C67482E20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A57746D04F774557A2F35AD0FE54DD92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A77CE0870EA94F469D333053C06336C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7A4C6DA1AAB41A7B6C11884114D80DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8832EEBCA3D40CE9CA11093F068F33F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9196A7B7F2248DA86F5618A311ACD04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A986E66EA40F47A5BF55C7554BCD3DA5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98DEA32678841B0A785D0A9AACA472F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB621B8B657F41569B9F2C3AAF227D1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB8C03F719364825AE001A412193261E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ABBBE619E4D74A82BBD8CF11C60C4D0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AC0C7D1FAFFF44589AFD65227D55F92C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF6B3247AE8145A88D4BE3B346BBB517" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AFC4C018CACD41ABB4351212D69E83A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B009A5F425B741BFA26112A535579907" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B061A7A71E4E486C800D35AEC4CDDD76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B06E4B190451401B924FA0DD5D9D43FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B1A80A1C9B264063A7292D7D1F40EF08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B41E558930234686935A0FB8C196C542" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B45711A1D00C403E96C239B3B70F6FFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5B2EA612ADB4D75940C203F81F1A5F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B668F8AC5DA042379F856BFE64BF40DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B92D86D5C94E44FCB90F286C7A87281C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B99344BD74784EA7825DEA74E524C4CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA71E1BDD8BB47FEA1F82824E777AF34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BAA831AA40C947559AAC25E133D950C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BAF3C1E6F804426DB2F6703E0B6AB497" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BB3D7DBA6EF74C12BFD535E468102F1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA5C2452ED241238533E2AC5B8CA759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BCB03C7E7610424D8A8A088416BA2C5A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BCE962E85FEC408EB0B0017763BF5072" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD785FB59D9A4AD7AB853665C1BA4EE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDC2AF6837E84FE7AD2085778BCC92CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDE33C9C48D84441AC9522276AEC6CCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BEECD019506F46739F8BAF2C337931DA" - "OwnerKey" = "8:_DC49B93D011840AFA7E47FA1CAB0E9FF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF3657BC865940A689F606D62DCF1AEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C00BF72EE20A4B86B8BB3181653D38FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C044457AD26840249EFD64E198064BAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0AE1BBDD6684221BE7B77EFEF8DCAED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C227FD1F8E774F47BE063A4C4303F9EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C40A327FD93340F3BADAE25F052A02A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C62519C53F7747DBBB122749FB24F0DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9DA4EB11D614E72B124B73E0F04F2BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA98B6CB53D545EA9F3D1329820F03E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CADA2F6FA4184905B620A2DC19C9AFBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB344E80DDEE4B309028170A73BA435B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB6068B490834B4C96790C3E23E261CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD9B8D066BFF45AD917649D78C818DFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D04360BD89624340B57B43E0F07CBDAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0D0CC2C34724ED9A492A6DF4F801034" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D517006830964B5C873C93A0819CF738" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D65D8CB9E54B4FDFB32CD1E8D88AB2D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D713FAE3CCFF4EF790D5CF7F69349F57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D9E4BD7399F94F01BF468C51006B491E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DAB6C26DDE104EF39BE0181BE797B96D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBAF96727DD84B18BFC044BB6663BB25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBEC4E04B8564D1D90C8B17A8FCD5EAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBFEF10F4486420EA81DCA3393F67CBE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC03BFDF06A949098EA066372DF7CF9A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC43EA075832494F853635AB8D5280E2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC49B93D011840AFA7E47FA1CAB0E9FF" - "OwnerKey" = "8:_9E6DB6F72473492E9981185A7086059B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC892F14E81145969BF596383AEE0812" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E03B622F705A47A3BF5FB43CDDCCA0E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E06E444A05D64D47ADF6BA48D398D0C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0BA496D2AB942FC90C2F87E71764654" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E20BC48CFA9E407FACE1D093E9A166EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E30E293211B047ECA10BCEE51930DDCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F71BBFCDB04331954FE15D80947FFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4769BC1A4534FEB8A454FAC2641A64E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E48715EB23DF4536B5F49362E8D3B4C0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E52E9EBFF4824CF8AC7489D9207E81CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E5CC71A7E4A64023A347115082540A1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6A6E5EE52FC4EA79935CFC9C9ABF185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6C565576048443C9A8D345FD38A01F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8A546F6598D43C0A1109DFECA35F8A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED0FBFBA0F754E45BD9C4BED9ACDC546" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED58A3160D3346078B613392AF5C27A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE3FE0A8EE20443EB4E2F215D92A602E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF7901D259494DEE8179F0B090CE2973" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F16BD7EBBED049029808E755DA8DF194" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C22CB173AE404FAF4A55048BD72274" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F464E8D2C6C04D4A9C9A23C6C60BB38F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F72AA94C55634629A4126A5655B3774F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F7C142CE092C41919B880C946FCF222A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F847FD5FB2854778A29B130A431AAD4A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F98CD6AFD8C9481BA5A0D4D2EEA0C1CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FACED9B9BE734A3BB5D0B083F42B8766" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC71CA795A41401380540A762BBBBEF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD70F19C9C934B1581CA32168630EE59" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD878CEB952B46659609C97782388185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FDF3BFAEF6774436BDE9452BC1026FCE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE2A60C8EA6D4EB281D59D67DE8B0F1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE418F86FCC04889A02ADEB745D63670" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFFD8EA6EDCE4FA1AD026FDC36CBF0F5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\CanteraDebug_Debug.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5" - { - "Name" = "8:.NET Framework 3.5" - "ProductCode" = "8:Microsoft.Net.Framework.3.5" - } - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" - { - "Name" = "8:Windows Installer 3.1" - "ProductCode" = "8:Microsoft.Windows.Installer.3.1" - } - } - } - } - "DebugMDD" - { - "DisplayName" = "8:DebugMDD" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:DebugMDD\\CanteraDebug_DebugMDD.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5" - { - "Name" = "8:.NET Framework 3.5" - "ProductCode" = "8:Microsoft.Net.Framework.3.5" - } - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" - { - "Name" = "8:Windows Installer 3.1" - "ProductCode" = "8:Microsoft.Windows.Installer.3.1" - } - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\CanteraDebug_Release.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5" - { - "Name" = "8:.NET Framework 3.5" - "ProductCode" = "8:Microsoft.Net.Framework.3.5" - } - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" - { - "Name" = "8:Windows Installer 3.1" - "ProductCode" = "8:Microsoft.Windows.Installer.3.1" - } - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0043CEF4892147A79B11ADFA52A33062" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\speciesThermoTypes.h" - "TargetName" = "8:speciesThermoTypes.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0163DC5912C443CE897596D5CBC8E647" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MetalPhase.h" - "TargetName" = "8:MetalPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_021C20C556684F15B0BED1EC365111AA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_species_thermo.h" - "TargetName" = "8:vcs_species_thermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0356EF8C707E48C1AD5DDE466B7E0FF5" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FlowDevice.h" - "TargetName" = "8:FlowDevice.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_045EF98593D14ACCACFA4AEFB806D557" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_084F901A74914242ABD6D1A50E5EB0A4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0782E62EEC4148B15E9076506E24A2" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DBC9A18428C43128C18EA7340D7E32C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0E1A45BD74554B0D953E436448EAAB17" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Reaction.h" - "TargetName" = "8:Reaction.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0F054011DB2B41D493EF7CCC058E850F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0FC8682BF0F04FC3B72982B6402BAD66" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\mix_defs.h" - "TargetName" = "8:mix_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1005BC9331DC443F9462A97FCB6B85F6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ResidEval.h" - "TargetName" = "8:ResidEval.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_104910B4D9E847BDBE0C876D7F5C0142" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\StoichSubstance.h" - "TargetName" = "8:StoichSubstance.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_10DF05E3B44E4E97B1D0D2C00DBDC873" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ck2ct.h" - "TargetName" = "8:ck2ct.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14165AEF1F3243F1974C7793E4D77731" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Wall.h" - "TargetName" = "8:Wall.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1532D68C18F2463FB29B41A6A861221B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ThermoPhase.h" - "TargetName" = "8:ThermoPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_156511AFC9BA4058B0D95BEF5584C8EA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15E8DEE197F64FDCBD7089A03BE23511" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1722F0DD789942CB9AFDF8592C5D98CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_174A53664A92479DB734572FD98CA90E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3EBA50A1FB4E9595C00C512FCF7984" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Nasa9PolyMultiTempRegion.h" - "TargetName" = "8:Nasa9PolyMultiTempRegion.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A49A3A64A674823A82AB58C3053364F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IdealSolidSolnPhase.h" - "TargetName" = "8:IdealSolidSolnPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B4DDA3351364504866B9CA3B495DECF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B9BC314D6B546AFA1D23AC6D4664DBD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SurfPhase.h" - "TargetName" = "8:SurfPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C39DF7550E443579BC9FA96ECFF3138" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D6A3E458DF54D4D95818285C6E6D471" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS_HKFT.h" - "TargetName" = "8:PDSS_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1E3BFD93A7844560AB22C5953C267D00" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_internal.h" - "TargetName" = "8:vcs_internal.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6E2FF130754D63B30AB1E9494A720F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MultiTransport.h" - "TargetName" = "8:MultiTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_227533B7A3C94587A9E7F8973CB7B619" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IdealSolnGasVPSS.h" - "TargetName" = "8:IdealSolnGasVPSS.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22E98C71ED3D404495FA2F6B8E17ED06" - { - "SourcePath" = "8:..\\demos\\flamespeed.vcproj" - "TargetName" = "8:flamespeed.vcproj" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2328D794CF294D2CA674649DB6D17476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_234CBFB5D56140D8AA5B31A7E902D2AE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24667FBD46ED4A6B9BE6FF067A18EB63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed.cpp" - "TargetName" = "8:flamespeed.cpp" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2716D65547904F75A34FFF69998C9B8D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SpeciesThermoMgr.h" - "TargetName" = "8:SpeciesThermoMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_287AD5E69F9F4F938F7652D96CCA4339" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2953DD43B79546A4A263A37110CF89CA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\electrolytes.h" - "TargetName" = "8:electrolytes.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_297EC670566C4A7A8B90A5B73A03C832" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_MultiPhaseEquil.h" - "TargetName" = "8:vcs_MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29E97C27E9414BBE8DC81082673C3327" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FlowReactor.h" - "TargetName" = "8:FlowReactor.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A2448C262A4488F9AED44D3B37CFEF5" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MixTransport.h" - "TargetName" = "8:MixTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AC45927DF544FEEB8CD5E1AB03110EE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr.h" - "TargetName" = "8:VPSSMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D75C671D60540F495D438D332AFBE38" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E87522FB07847CB98A980AC8229EBBF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3039446FA28D4019937D780396178A92" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_315A3535FC634498A07F5F8EC32F6DCB" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\NasaPoly2.h" - "TargetName" = "8:NasaPoly2.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36A741C5BB6F4DAF9C92BE8E0ECC9E07" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37829FFE17524DAE91DD74D314365D40" - { - "SourcePath" = "8:..\\demos\\Rankine.vcproj" - "TargetName" = "8:Rankine.vcproj" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3786B9BDEAC44F21B08E7B2370CEA563" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_prob.h" - "TargetName" = "8:vcs_prob.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39E496E4A8AB4288902B70F42EC88DBE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A79F35AF0324A03AFB0B49D60D105DB" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D78E7C9130F4E1485FE013FE4432AD3" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\importKinetics.h" - "TargetName" = "8:importKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E6087F76EB04948A84F7E1E2CE9DD2A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E81324694AD4FDBB074EDB3AA7E44EA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LatticeSolidPhase.h" - "TargetName" = "8:LatticeSolidPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F590EA2FD854DCD866419A5DD71E295" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\AdsorbateThermo.h" - "TargetName" = "8:AdsorbateThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41106DEB1A91431BA7F3A095C3815785" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41D88BF518304047A6BB21068FD3B517" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgrFactory.h" - "TargetName" = "8:VPSSMgrFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4259632DC20942C1A4D327931FB52BEC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\TransportParams.h" - "TargetName" = "8:TransportParams.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4278650E97994590B40BC706B79390DA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C6F84923094999A5AD20C46C730163" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DustyGasTransport.h" - "TargetName" = "8:DustyGasTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44477B341E9349009794058488B8DF61" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47024511505D4CB089782A48F4D8EB69" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_471811FD415342599B778902DC554CD8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_479850EE099F41AC98ACFD46D0B310BE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_48C099169AAB432D8E2B2B67C885801B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS.h" - "TargetName" = "8:PDSS.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_48C86E81CE304EF7913D9DD6312E6F41" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\WaterSSTP.h" - "TargetName" = "8:WaterSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_49A5D64D38A5436C963D02FAD563434E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LogPrintCtrl.h" - "TargetName" = "8:LogPrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C4556147DDA476DB0A8282467B04F43" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E93803416DB48B6915B6C698F92C665" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4F00360381F24011A1CE42DEB6FCAC94" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4F8DF0E5F39249C1816E9059D9E5BA54" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FactoryBase.h" - "TargetName" = "8:FactoryBase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4FCF96C2D967477CA0ADBE3A20B4556F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5339FF33F5C34343837C4DEC217A3B89" - { - "SourcePath" = "8:..\\demos\\CanteraDemos.sln" - "TargetName" = "8:CanteraDemos.sln" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53E15DC7C5C845848A3487B1A51BB491" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5512E64EF45F4822B6C8F3FCCA70AC74" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_56B6B2C6BBA9474A9900831ED83255F4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_56D86C8CB0AD442B9E9D2E507B1880B7" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_578092D0F7874304A6369B7FE1AA04DB" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IdealMolalSoln.h" - "TargetName" = "8:IdealMolalSoln.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_57E1E4F277D94BBFB40DA7FD74536C5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor.cpp" - "TargetName" = "8:combustor.cpp" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59E336C3592041F2BCC96311BB23EF6B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\TransportFactory.h" - "TargetName" = "8:TransportFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A4DE1832CFC41ED9B1C418C81D6F048" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FtnTransport.h" - "TargetName" = "8:FtnTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5BBA913179C44D98A9A13509729399E9" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CD6FF73941D456B9EFE8E5E3A506524" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\WaterProps.h" - "TargetName" = "8:WaterProps.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E07BCF1827F447DB3F19E67A5166369" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\spectra.h" - "TargetName" = "8:spectra.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5EFD972DC08B4DB5B62160335CD2F02F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6105C68CABF64A1D85DA0E29293A4382" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_620C0CB1E6EA45119C1250C2D1776BE0" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_666213A2C5734B6A9487EA322C7F8E8C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Mu0Poly.h" - "TargetName" = "8:Mu0Poly.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_66B9AED9DF134F549522A1D04E222433" - { - "SourcePath" = "8:..\\demos\\ReadMe.txt" - "TargetName" = "8:ReadMe.txt" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_66F1DBCAA1E54D159EB29418C7FA6D9E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_66F9484F0F414A63A40B879951A9AC93" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\CKParser.h" - "TargetName" = "8:CKParser.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67FE89D797EA48BBBF3F54CE62B65FA2" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_68AC1C2334424F2F81393617CB4BE15D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698E743E54D54B219FD7F5CAA2690286" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\NasaPoly1.h" - "TargetName" = "8:NasaPoly1.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AA82759F8F24CFEBDB14C5282A9883E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_DoubleStarStar.h" - "TargetName" = "8:vcs_DoubleStarStar.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEBED54AC304A2692055D52E3360A1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AF141708BCE47CFBCAF87AB45854E73" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BDA398CD62747BEBDBEC037D214E25F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_types.h" - "TargetName" = "8:VPSSMgr_types.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6C6A7655C79F4BD8A3F45EAE68A7986A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ckr_utils.h" - "TargetName" = "8:ckr_utils.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6C6E964C7C22454484A9C0C9121BA4AA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D40D790AEF14E798B663914810F8CD1" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6DAA8030ACAF45089867E5431C42F54B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ImplicitChem.h" - "TargetName" = "8:ImplicitChem.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_707EBC583C6F4989AAAD09FDC9741FB4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ConstCpPoly.h" - "TargetName" = "8:ConstCpPoly.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_711BEDC9790D4F74B9F7F0F6419D80BF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SpeciesThermoFactory.h" - "TargetName" = "8:SpeciesThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7121407A0725468FA86D675E3237B403" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_731BD40091814EA9B082A25623F44298" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\State.h" - "TargetName" = "8:State.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7413F0FDB4984F69805F63745EFD03C6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactorFactory.h" - "TargetName" = "8:ReactorFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_74245B24DC224E8CB5BAE82F4189272A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7800DB0BCF4B4FD09C5517C70F88386B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\CKReader.h" - "TargetName" = "8:CKReader.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_785F51483EC2457892E349D4178A8649" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_IntStarStar.h" - "TargetName" = "8:vcs_IntStarStar.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7867C2114DD14559BF9B3D87E70E6D1C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Constituents.h" - "TargetName" = "8:Constituents.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78DBF46C30664E5DBEBAC88654D8DE8E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7984E0CF1B9A4916A9BFF5691D9B30ED" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PrintCtrl.h" - "TargetName" = "8:PrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79B2983C1BCF472FACFB5CC1282B6FB2" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9EFDEF3CD34C0EB464A27FCAA5CBB6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\NonlinearSolver.h" - "TargetName" = "8:NonlinearSolver.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7E2C697AF84593A4E089AB9C76C474" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D6A6899BE45438CB3E6CEEBE388FAB0" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\clockWC.h" - "TargetName" = "8:clockWC.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E5FA68AA68B496084066FCC2B7A1B7F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F85C98019124A04A9A4F81C269651AC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\NasaThermo.h" - "TargetName" = "8:NasaThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_844A8A4BE787469994FDFB22992BF077" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85B90BB3EE1C49C1AEB30086F78DDAB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed_blessed_0.csv" - "TargetName" = "8:flamespeed_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85D3FAAD264F494D9E44CABCF1B879D6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\GibbsExcessVPSSTP.h" - "TargetName" = "8:GibbsExcessVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_86D19BA832D14DA0A3F6791D806AAB67" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS_Water.h" - "TargetName" = "8:PDSS_Water.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_879884F48FE144CA919236CE4FA9FE19" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LatticePhase.h" - "TargetName" = "8:LatticePhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87D7537E9C7A46A58D3ACC690DF0BEAD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\WaterPropsIAPWSphi.h" - "TargetName" = "8:WaterPropsIAPWSphi.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C6A4E3E4DA54A0C924B6E42CF66A68D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C82B39AA2704FD7952DED60F0D98BCD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_Exception.h" - "TargetName" = "8:vcs_Exception.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CA8B4BF378D451CA0E7D52531F7AEA8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\mdp_allo.h" - "TargetName" = "8:mdp_allo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8DE4268A772342A6A560AB77D9E8CF79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8F147F13C5894045A7C2A9E73FAA33A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8F2821FBD2F547A39E20885A416E1687" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Phase.h" - "TargetName" = "8:Phase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_90D8DC0EEFBE4A2BAB5F4269B2C811FE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MMCollisionInt.h" - "TargetName" = "8:MMCollisionInt.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_91B392BC03EE456DB54353C4EA62FF86" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\winconfig.h" - "TargetName" = "8:winconfig.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_91EB3AD25866499786C94A988E834A4C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\electrolyteThermo.h" - "TargetName" = "8:electrolyteThermo.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_931941F76DAE4AB29EEEFCFB1DEA98FC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_Water_ConstVol.h" - "TargetName" = "8:VPSSMgr_Water_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_939D562D0EDE4CF992AB133625D355AF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_947A23E7265D4FBBB756951413B8624B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SpeciesThermo.h" - "TargetName" = "8:SpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9561E62E5AC74692983F902E8AA5C383" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DebyeHuckel.h" - "TargetName" = "8:DebyeHuckel.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95823044A3064F3A8BB42E3EBC5834BF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\L_matrix.h" - "TargetName" = "8:L_matrix.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95B982B92D0846BE8CAB35085000F7DC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SingleSpeciesTP.h" - "TargetName" = "8:SingleSpeciesTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95CD410C3CF748AAB0219A2548D7B19C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_Water_HKFT.h" - "TargetName" = "8:VPSSMgr_Water_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_960F4CFE97EC48439D786FBED5E134C8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_ConstVol.h" - "TargetName" = "8:VPSSMgr_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9624E2926C8D4A9696E3B020356C708E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed_blessed_0.csv" - "TargetName" = "8:flamespeed_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97C23218EC3C4A82B9FA5934711FD9D8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\HMWSoln.h" - "TargetName" = "8:HMWSoln.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98B355E08F044766AB08C1568AD858AC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9BA4071392104C3184D14B3EEAC9702F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9BF2636CF0F94D7881241BDC56BFADF8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SemiconductorPhase.h" - "TargetName" = "8:SemiconductorPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9BF2F77D08FA4C7CBE6519CFDC6D2A09" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\WaterPropsIAPWS.h" - "TargetName" = "8:WaterPropsIAPWS.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C50874CA2ED4790B4239E52BD0BA654" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Reactor.h" - "TargetName" = "8:Reactor.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1FA009E794546C2BAD2325D8A633E7F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PID_Controller.h" - "TargetName" = "8:PID_Controller.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4846BE14986425F88EB2DA9B6D41135" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\flowControllers.h" - "TargetName" = "8:flowControllers.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5479162EB884D018010FC3C67482E20" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\thermoFunctions.h" - "TargetName" = "8:thermoFunctions.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A57746D04F774557A2F35AD0FE54DD92" - { - "SourcePath" = "8:..\\demos\\NASA_coeffs.vcproj" - "TargetName" = "8:NASA_coeffs.vcproj" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A77CE0870EA94F469D333053C06336C6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\AqueousKinetics.h" - "TargetName" = "8:AqueousKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7A4C6DA1AAB41A7B6C11884114D80DF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SpeciesThermoInterpType.h" - "TargetName" = "8:SpeciesThermoInterpType.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8832EEBCA3D40CE9CA11093F068F33F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\GeneralSpeciesThermo.h" - "TargetName" = "8:GeneralSpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A9196A7B7F2248DA86F5618A311ACD04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A986E66EA40F47A5BF55C7554BCD3DA5" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB621B8B657F41569B9F2C3AAF227D1B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPStandardStateTP.h" - "TargetName" = "8:VPStandardStateTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB8C03F719364825AE001A412193261E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ABBBE619E4D74A82BBD8CF11C60C4D0E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Elements.h" - "TargetName" = "8:Elements.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AC0C7D1FAFFF44589AFD65227D55F92C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF6B3247AE8145A88D4BE3B346BBB517" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AFC4C018CACD41ABB4351212D69E83A9" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B009A5F425B741BFA26112A535579907" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B061A7A71E4E486C800D35AEC4CDDD76" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_solve.h" - "TargetName" = "8:vcs_solve.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B06E4B190451401B924FA0DD5D9D43FD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IdealGasPhase.h" - "TargetName" = "8:IdealGasPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B1A80A1C9B264063A7292D7D1F40EF08" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B41E558930234686935A0FB8C196C542" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ThermoFactory.h" - "TargetName" = "8:ThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B45711A1D00C403E96C239B3B70F6FFE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5B2EA612ADB4D75940C203F81F1A5F7" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ResidJacEval.h" - "TargetName" = "8:ResidJacEval.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B668F8AC5DA042379F856BFE64BF40DB" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS_ConstVol.h" - "TargetName" = "8:PDSS_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B92D86D5C94E44FCB90F286C7A87281C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ShomateThermo.h" - "TargetName" = "8:ShomateThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B99344BD74784EA7825DEA74E524C4CD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA71E1BDD8BB47FEA1F82824E777AF34" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BAF3C1E6F804426DB2F6703E0B6AB497" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ConstPressureReactor.h" - "TargetName" = "8:ConstPressureReactor.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BB3D7DBA6EF74C12BFD535E468102F1D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\writelog.h" - "TargetName" = "8:writelog.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA5C2452ED241238533E2AC5B8CA759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\Makefile.win" - "TargetName" = "8:Makefile.win" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BCB03C7E7610424D8A8A088416BA2C5A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BCE962E85FEC408EB0B0017763BF5072" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MineralEQ3.h" - "TargetName" = "8:MineralEQ3.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD785FB59D9A4AD7AB853665C1BA4EE9" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDC2AF6837E84FE7AD2085778BCC92CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDE33C9C48D84441AC9522276AEC6CCC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Constituent.h" - "TargetName" = "8:Constituent.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF3657BC865940A689F606D62DCF1AEC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_VolPhase.h" - "TargetName" = "8:vcs_VolPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C00BF72EE20A4B86B8BB3181653D38FC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_SpeciesProperties.h" - "TargetName" = "8:vcs_SpeciesProperties.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C044457AD26840249EFD64E198064BAA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\AqueousTransport.h" - "TargetName" = "8:AqueousTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0AE1BBDD6684221BE7B77EFEF8DCAED" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\radiation.h" - "TargetName" = "8:radiation.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C227FD1F8E774F47BE063A4C4303F9EF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C62519C53F7747DBBB122749FB24F0DA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Reservoir.h" - "TargetName" = "8:Reservoir.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CA98B6CB53D545EA9F3D1329820F03E8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\EdgePhase.h" - "TargetName" = "8:EdgePhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CADA2F6FA4184905B620A2DC19C9AFBD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB344E80DDEE4B309028170A73BA435B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactorBase.h" - "TargetName" = "8:ReactorBase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB6068B490834B4C96790C3E23E261CC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD9B8D066BFF45AD917649D78C818DFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D04360BD89624340B57B43E0F07CBDAD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\StoichSubstanceSSTP.h" - "TargetName" = "8:StoichSubstanceSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0D0CC2C34724ED9A492A6DF4F801034" - { - "SourcePath" = "8:..\\..\\..\\tools\\templates\\cxx\\demo.cpp" - "TargetName" = "8:demo.cpp" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D517006830964B5C873C93A0819CF738" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SimpleThermo.h" - "TargetName" = "8:SimpleThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D65D8CB9E54B4FDFB32CD1E8D88AB2D3" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Element.h" - "TargetName" = "8:Element.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D713FAE3CCFF4EF790D5CF7F69349F57" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_defs.h" - "TargetName" = "8:vcs_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D9E4BD7399F94F01BF468C51006B491E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DAB6C26DDE104EF39BE0181BE797B96D" - { - "SourcePath" = "8:..\\demos\\demo.vcproj" - "TargetName" = "8:demo.vcproj" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBAF96727DD84B18BFC044BB6663BB25" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBEC4E04B8564D1D90C8B17A8FCD5EAD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBFEF10F4486420EA81DCA3393F67CBE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\Makefile.win" - "TargetName" = "8:Makefile.win" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC03BFDF06A949098EA066372DF7CF9A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC43EA075832494F853635AB8D5280E2" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SolidTransport.h" - "TargetName" = "8:SolidTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E03B622F705A47A3BF5FB43CDDCCA0E7" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Crystal.h" - "TargetName" = "8:Crystal.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E06E444A05D64D47ADF6BA48D398D0C4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0BA496D2AB942FC90C2F87E71764654" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E20BC48CFA9E407FACE1D093E9A166EC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_General.h" - "TargetName" = "8:VPSSMgr_General.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E30E293211B047ECA10BCEE51930DDCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F71BBFCDB04331954FE15D80947FFD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4769BC1A4534FEB8A454FAC2641A64E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\solveSP.h" - "TargetName" = "8:solveSP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E52E9EBFF4824CF8AC7489D9207E81CC" - { - "SourcePath" = "8:..\\demos\\kinetics1.vcproj" - "TargetName" = "8:kinetics1.vcproj" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E5CC71A7E4A64023A347115082540A1D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LiquidTransport.h" - "TargetName" = "8:LiquidTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E6A6E5EE52FC4EA79935CFC9C9ABF185" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Nasa9Poly1.h" - "TargetName" = "8:Nasa9Poly1.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E6C565576048443C9A8D345FD38A01F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8A546F6598D43C0A1109DFECA35F8A1" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\TransportBase.h" - "TargetName" = "8:TransportBase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED0FBFBA0F754E45BD9C4BED9ACDC546" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MargulesVPSSTP.h" - "TargetName" = "8:MargulesVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED58A3160D3346078B613392AF5C27A9" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\RxnSpecies.h" - "TargetName" = "8:RxnSpecies.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EE3FE0A8EE20443EB4E2F215D92A602E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SquareMatrix.h" - "TargetName" = "8:SquareMatrix.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF7901D259494DEE8179F0B090CE2973" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PureFluidPhase.h" - "TargetName" = "8:PureFluidPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F16BD7EBBED049029808E755DA8DF194" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C22CB173AE404FAF4A55048BD72274" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F464E8D2C6C04D4A9C9A23C6C60BB38F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactorNet.h" - "TargetName" = "8:ReactorNet.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F72AA94C55634629A4126A5655B3774F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PseudoBinaryVPSSTP.h" - "TargetName" = "8:PseudoBinaryVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F7C142CE092C41919B880C946FCF222A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ckr_defs.h" - "TargetName" = "8:ckr_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F847FD5FB2854778A29B130A431AAD4A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F98CD6AFD8C9481BA5A0D4D2EEA0C1CC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS_IdealGas.h" - "TargetName" = "8:PDSS_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FACED9B9BE734A3BB5D0B083F42B8766" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LiquidTransportParams.h" - "TargetName" = "8:LiquidTransportParams.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FC71CA795A41401380540A762BBBBEF4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Species.h" - "TargetName" = "8:Species.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FD70F19C9C934B1581CA32168630EE59" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_IdealGas.h" - "TargetName" = "8:VPSSMgr_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FD878CEB952B46659609C97782388185" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FDF3BFAEF6774436BDE9452BC1026FCE" - { - "SourcePath" = "8:..\\demos\\combustor.vcproj" - "TargetName" = "8:combustor.vcproj" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FE418F86FCC04889A02ADEB745D63670" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodeInt.h" - "TargetName" = "8:CVodeInt.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFFD8EA6EDCE4FA1AD026FDC36CBF0F5" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MolalityVPSSTP.h" - "TargetName" = "8:MolalityVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_11DD5E629F5E4084B9B61A277885D234" - { - "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_13B3EB77E6AC45F7A1AC630A80D048BA" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_920497DD7C6F4C109C4CC733A029C196" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_18574D8A52DC48E194C4A2C741119B68" - { - "Name" = "8:templates" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A8AD3AF83D4646D19A8CF9EB6297EBDC" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_39366AF5E69E41ECBA0D0ED042C779B7" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F346318C5414913B5D6F6F5AA23CA4C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_63D74B836F3147E6B101C46DDDC5E86E" - { - "Name" = "8:matlab" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_512FD63DEB6440C08B2A2A9C4AB4BC90" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_BFFBE5301970442AB14B87865B1772F0" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_AD33A28ED7D0459394D4CF7C132683C7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_6BB681DE941248B8B7118A57B6D07F85" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_29BA44467CBA41D78CE58A6FCB8DD92D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_075C393DBD7B41FA918F7BEB19E5D85A" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D27EB0BBAF4C4A5581B80C6B329BC5C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4C043D76D93B4788BD0D2A022626D71F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5A1D98E87B8D463EB4E3DF91EC36C79A" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_342AFD57D7144FC2ADA15EF28C4BEAF3" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2DAB776414D842ADB9BC9089E2DD492D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_6DF4AD3E2DF348858B969C7B1705DED9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6FF3AA4C0FBA4AD48E45B899B31FBCDD" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_39DFE81298BC470AAA72EB1183EC11A5" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B82AA5EEF9924C38B7036F4FDB770C8D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3DF4C7EBCCB84158BA974CE32143C65F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_EB54003BD6E5428C82E6435B53281410" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5EFA888A12F94269A716F270346A42BC" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6BDC2823BF3B4FE28FC7C2E6FF64C101" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_7CAA95DCD3B641E8A8C06B555FB71012" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B17CEADB9ACB4832ACB47E58A26B20AD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_667E402CF895414990510B6DB98675D3" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_56505F90AA4E4091BF1E7A4648045383" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_7D5ABC73B9844AF78DD1FBCB453F34B1" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_993FDDD0A86B4C81A89708CF6C725F77" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_AD962D161AD74060A6D010F5CC298AC5" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_44B68FE49F89472C99342F4015182CF4" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_7E33FC2295664CD0BDC07A080B091CA1" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_659DF71551E540AE93961468CB216AB4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_ADF150DBB9EE4F0DABD75177122F1797" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E0B152385AD84B308DF501F30A4EA14E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_991EFAEE5F6E4940BCA4EC00332357E0" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_079FCB3FAE0F45EC81A5D6CB1073BA2C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EA1E534D55114BA1A5C83ACE6215B307" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A5EE13B25B8149E89CF25C36BDC8AC21" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_AEF2081719D7429BBD6E7A572E6B2263" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4BB41F98FAF74A4D8237E19B5C5064E5" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_9BE4839753C143EE8CF2EBF8DC4E587A" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2F4D6E484358441AAE11AA3FA9B52856" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B72C0565DEB14CE68F69953CF5E5DDA3" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BBDAF34EEF854A66A0F0ECBB3AA441EB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3110CA0C1CED4997A48073347CA65BB7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_44D3DCF97E364528BD4D8600571C7ACF" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BD11AF43C6E340FCBE008FEAA256CD1D" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7747E35378364B40845E32E1318DE490" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EA86EC1BEB2A484FB2483C633FBAD327" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F526E887F0FF4C0A9D42D303BFEACC52" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BD4AB35C33544AB2A9AC8B42AC2673E6" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_85145D5E636A43378A6358618BE5BD74" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_CBAAA5E692DD4444B9C044CDEC572925" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F38B6AFEE3664B3B841D38FBF4976739" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_DCCEDAD2F7434ED79EA5FC1EBBF67703" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D88CCFA9FB24455F935822C81A57BCC7" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F57CABBE120F4A25A9095CA577E9EBC8" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_036436B0CCA74AC688B895E240C7C038" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_2C6CFCB782BA42B09468BA7D95C5BCF5" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B04C7CD54CBC4C9693F2A7AA4C600571" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B34666715CC7479590B06D6D0BD23DB2" - { - "Name" = "8:data" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C994929FD4A54934A5AB8E219CF77767" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D1893F33A7A64BAC97CA715A72FF10A1" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F12BD1B66CB14847863C5483003B9E67" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_01600D0936434365A0C7280645FD3331" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_81576BD7FAA743838337CA646CFBDE44" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_25D6250BD5C54EAA96A425D305D996FC" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6FCA475061C44B368B8822BBEA8F9BFD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E29941E7E79A449BA0F7360E5C66EA59" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1655BE976A8C4340B46F0264B20166E9" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E8EA5B218BE04B9E94CF4ED03D78BD4F" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D57DDA3E54D645E1BCE4BAB2E6A4907B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_846B71A41B874C518807AD38B1EBD50C" - { - "Name" = "8:matlab" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D49B27481C944796BEE21AE6305DFB80" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_84CCDB341EB8428486AB85477FD37B3B" - { - "Name" = "8:python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_04BDBF2539E24C8399E54BC1F55633E8" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_EDBA80F1672545008CB6C058F06A21CA" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_36C452C47783491CB4895BB118F62CFD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_34AA3DB59F634462859C4F3682BD1B34" - { - "Name" = "8:flamespeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C886019A09B043FEAD3A8F0C3D11EAC3" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5ACECDF02820422C89CC9513CEDD2D73" - { - "Name" = "8:combustor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CA447C888E854A17BA735C8F7F0E846D" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0999D1851DD417C8C753B223DFB29B9" - { - "Name" = "8:NASA_coeffs" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5333D13831814F95B545D43F5E81093E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A824386A3142457784E5CF6B5A34A5C2" - { - "Name" = "8:kinetics1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_98F8E0E2AAF34DA2B3B5D82F91842AB1" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_FEC28EEE2004424CB46C8BC32A7FC9F2" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_97D333ECB48642C899EC80AF182C8A1A" - "Folders" - { - } - } - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_AB26FB810BD24B56A3BFF72906E39C74" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C7612000F6C74080BB6148E0CDFE8EF1" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - "RequiresElevation" = "11:FALSE" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:CanteraDebug" - "ProductCode" = "8:{0AC16DDB-FA0B-408E-9AC3-6DCB01319470}" - "PackageCode" = "8:{70B68C4B-9596-4176-BAA3-38C2F82788C3}" - "UpgradeCode" = "8:{5F38EC85-F90E-41A1-86AC-252681A8B761}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:FALSE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.8.0" - "Manufacturer" = "8:Sandia National Laboratories" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:" - "Title" = "8:CanteraDebug" - "Subject" = "8:" - "ARPCONTACT" = "8:Sandia National Laboratories" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C93B4E14247E452090787E94E6959821" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_323718C727BB4E2A8D28DE599C9EADA5" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_458234A0F3EF49DCA4CA49913CE33BE0" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_B2D41FC719B74F3BB80D8DDDB7D867C9" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_1093BA7E61EE4AADA6CD633E1028CDFB" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_3733006F394F42C78D059E2118E72802" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_95A5931DD1874DAE9BA0E4B454C7950F" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_56F29752B33B4E9A96535A893CF5E5D0" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_4A8E96B092C24A40BA138C19826B1B10" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_5E5692F8DAB04B77BBF3D237DCCCDDBB" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B3AAD97AC20247E99C6C7835874256DC" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_65C6766C173A436085214A40F5DC5C55" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3726AD2DF6D94AF19AB1FA4F8AEB73FE" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_EDFC12D482C84DBEA0952398D9E4DD43" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FFFEE4754782412B9EE9717F032E738A" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_9BC0651EED4541ECBFF8504B7502C115" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1B77D035CCDD4D89A8C5FD89D881C406" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7B71AADEB1D64CB19B1F87AC7F15321F" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_AFEF5AB7E8A84A2F8D6ED832FCAA5BD1" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_DB9BF7EA81E24EFC9A3AFED32F3CB5CE" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_428CF26166884630BED1FCFF1434E0EC" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_FCBB1C0C9FB247D599EEF81C0C2C8C4C" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_BEECD019506F46739F8BAF2C337931DA" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:microsoft_vc90_debugcrt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_DC49B93D011840AFA7E47FA1CAB0E9FF" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_9_0_Microsoft_VC90_DebugCRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_03AD241CF2AE4CABAEA018EF343320D4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_0C5CE42AA68E4BD8B249ADF610B8880D" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2102F49BD2E34F5B8AD84E24E3F634CB" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_288886B4E1C84B67822BDB93706A7E6C" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2A9E757A274545A28F0D13A66E72667D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\numerics_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_32150CD21ABB4D598AD8261BFA220B57" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_38B3245973354DF7B9AB4D98229EAD9D" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3C596DA0D7D742FD836DA7BFE8FFD89A" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_537148F485BC4ECFA28BD6A1EBECE0CA" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_57EF57BF34AC4233941AE8E816148811" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_642CC1BBA7FA4AA1AC11283DBF73BF37" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_6AAEFBB05C9B44A491E68C51C238845B" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_6B378751D34949348EE4913E69C4AB5A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\kinetics_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_6D65DFD69CEA4C569A845B3C945E7252" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_72FF1156DAD9443EBF57780DD602A5D4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\SUNDIALS_SHARED_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_7690C7560DEF4C399EB334AE44C55F86" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\converters_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_7A5425686CD1478C8EDABA757E257C6D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\NVEC_SER_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8B38BDDAC99040EC95E5B957E10B6874" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_933AB93386644CC6B9672F679E1EF61F" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_93856C74DB284F64837CBF6DFB731E39" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9BE16EBB1020491797235B3D20ABD30D" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9CF11C75C6E04B898E56736723D03BB1" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9E6DB6F72473492E9981185A7086059B" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti_d.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_39366AF5E69E41ECBA0D0ED042C779B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A98DEA32678841B0A785D0A9AACA472F" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B70E632A6BF14B428ED685671894436B" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_BAA831AA40C947559AAC25E133D950C2" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\base_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C40A327FD93340F3BADAE25F052A02A6" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\equil_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C9DA4EB11D614E72B124B73E0F04F2BC" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\thermo_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DC892F14E81145969BF596383AEE0812" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_E48715EB23DF4536B5F49362E8D3B4C0" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\CVODES_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F4325AF533BD43259F2FC9848B4348E8" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FA275F0035E84A97A418C4FD2D851D02" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FE2A60C8EA6D4EB281D59D67DE8B0F1D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FFB315EBEC1E40BEBDD8D7F55C471EB2" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - } -} diff --git a/win32/vc9/Sundials/CVODES/CVODES.vcproj b/win32/vc9/Sundials/CVODES/CVODES.vcproj deleted file mode 100755 index e4843dcab..000000000 --- a/win32/vc9/Sundials/CVODES/CVODES.vcproj +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/Sundials/NVEC_SER/NVEC_SER.vcproj b/win32/vc9/Sundials/NVEC_SER/NVEC_SER.vcproj deleted file mode 100755 index c15e52cca..000000000 --- a/win32/vc9/Sundials/NVEC_SER/NVEC_SER.vcproj +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj b/win32/vc9/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj deleted file mode 100755 index 9443a8f09..000000000 --- a/win32/vc9/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/Sundials/SUNDIALS_SHARED/docopy.cmd b/win32/vc9/Sundials/SUNDIALS_SHARED/docopy.cmd deleted file mode 100755 index 866040701..000000000 --- a/win32/vc9/Sundials/SUNDIALS_SHARED/docopy.cmd +++ /dev/null @@ -1,15 +0,0 @@ -echo on - -set ccwwdd=%CD% -cd ..\..\..\..\.. - -cd sundials\include\sundials - -if exist sundials_config.h exit 0 - -cd %ccwwdd% - -copy sundials_config.h ..\..\..\..\..\sundials\include\sundials - -echo ok -echo off diff --git a/win32/vc9/Sundials/SUNDIALS_SHARED/sundials_config.h b/win32/vc9/Sundials/SUNDIALS_SHARED/sundials_config.h deleted file mode 100644 index 5c01366ae..000000000 --- a/win32/vc9/Sundials/SUNDIALS_SHARED/sundials_config.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * ----------------------------------------------------------------- - * $Revision: 1.1 $ - * $Date: 2009/07/20 20:44:03 $ - * ----------------------------------------------------------------- - * Programmer(s): Aaron Collier @ LLNL - * ----------------------------------------------------------------- - * Copyright (c) 2005, The Regents of the University of California. - * Produced at the Lawrence Livermore National Laboratory. - * All rights reserved. - * For details, see the LICENSE file. - *------------------------------------------------------------------ - * SUNDIALS configuration header file - *------------------------------------------------------------------ - */ - -/* Define SUNDIALS version number */ -#define SUNDIALS_PACKAGE_VERSION "2.3.0" - -/* FCMIX: Define Fortran name-mangling macro */ -#define F77_FUNC(name,NAME) name ## _ -#define F77_FUNC_(name,NAME) name ## _ - -/* FCMIX: Define case of function names */ -#define SUNDIALS_CASE_LOWER 1 - -/* FCMIX: Define number of underscores to append to function names */ -#define SUNDIALS_UNDERSCORE_ONE 1 - -/* Define precision of SUNDIALS data type 'realtype' */ -#define SUNDIALS_DOUBLE_PRECISION 1 - -/* Use generic math functions */ -#define SUNDIALS_USE_GENERIC_MATH 1 - -/* FNVECTOR: Allow user to specify different MPI communicator */ - diff --git a/win32/vc9/base/base.vcproj b/win32/vc9/base/base.vcproj deleted file mode 100755 index 717991e3c..000000000 --- a/win32/vc9/base/base.vcproj +++ /dev/null @@ -1,358 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/base/docopy.cmd b/win32/vc9/base/docopy.cmd deleted file mode 100755 index fafe3c483..000000000 --- a/win32/vc9/base/docopy.cmd +++ /dev/null @@ -1,30 +0,0 @@ -cd ..\..\.. - -echo on -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\base - -copy Array.h ..\..\..\build\include\cantera\kernel -copy FactoryBase.h ..\..\..\build\include\cantera\kernel -copy LogPrintCtrl.h ..\..\..\build\include\cantera\kernel -copy PrintCtrl.h ..\..\..\build\include\cantera\kernel -copy XML_Writer.h ..\..\..\build\include\cantera\kernel -copy clockWC.h ..\..\..\build\include\cantera\kernel -copy config.h ..\..\..\build\include\cantera\kernel -copy ct_defs.h ..\..\..\build\include\cantera\kernel -copy ctexceptions.h ..\..\..\build\include\cantera\kernel -copy ctml.h ..\..\..\build\include\cantera\kernel -copy global.h ..\..\..\build\include\cantera\kernel -copy logger.h ..\..\..\build\include\cantera\kernel -copy mdp_allo.h ..\..\..\build\include\cantera\kernel -copy plots.h ..\..\..\build\include\cantera\kernel -copy stringUtils.h ..\..\..\build\include\cantera\kernel -copy units.h ..\..\..\build\include\cantera\kernel -copy utilities.h ..\..\..\build\include\cantera\kernel -copy vec_functions.h ..\..\..\build\include\cantera\kernel -copy xml.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\base -echo off -echo 'ok' diff --git a/win32/vc9/cantera.sln b/win32/vc9/cantera.sln deleted file mode 100755 index 7b5909771..000000000 --- a/win32/vc9/cantera.sln +++ /dev/null @@ -1,378 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - {ED939A01-860D-4E92-A892-E195CB311AB7} = {ED939A01-860D-4E92-A892-E195CB311AB7} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {98EFB8B3-7795-444C-BBC0-B1F399BEB029} = {98EFB8B3-7795-444C-BBC0-B1F399BEB029} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9} = {AF888A7A-C325-4312-9BE0-CDA1B1E540E9} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {98EFB8B3-7795-444C-BBC0-B1F399BEB029} = {98EFB8B3-7795-444C-BBC0-B1F399BEB029} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0} = {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0} - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NVEC_SER", "Sundials\NVEC_SER\NVEC_SER.vcproj", "{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - ProjectSection(ProjectDependencies) = postProject - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SUNDIALS_SHARED", "Sundials\SUNDIALS_SHARED\SUNDIALS_SHARED.vcproj", "{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CVODES", "Sundials\CVODES\CVODES.vcproj", "{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base\base.vcproj", "{D76CE458-2A16-42DD-AE25-E282886C358F}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "numerics", "numerics\numerics.vcproj", "{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "thermo", "thermo\thermo.vcproj", "{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics", "kinetics\kinetics.vcproj", "{8CB43708-231A-4F80-B777-5F0A90CDB604}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "equil", "equil\equil.vcproj", "{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clibstatic", "clibstatic\clibstatic.vcproj", "{98EFB8B3-7795-444C-BBC0-B1F399BEB029}" - ProjectSection(ProjectDependencies) = postProject - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraDebug", "SetupCanteraDebug\SetupCanteraDebug.vdproj", "{58191424-3B9D-4571-BC76-98D05A1CA424}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolnFolder", "SolnFolder", "{01747726-ACD9-4CA0-8809-BEA24CFF4E2E}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - DebugMDD|Win32 = DebugMDD|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug|Win32.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug|Win32.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release|Win32.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release|Win32.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug|Win32.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug|Win32.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release|Win32.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release|Win32.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug|Win32.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug|Win32.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release|Win32.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release|Win32.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug|Win32.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug|Win32.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release|Win32.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release|Win32.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug|Win32.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug|Win32.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release|Win32.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release|Win32.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug|Win32.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug|Win32.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release|Win32.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release|Win32.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug|Win32.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug|Win32.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release|Win32.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release|Win32.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug|Win32.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug|Win32.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release|Win32.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release|Win32.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug|Win32.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug|Win32.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release|Win32.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release|Win32.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug|Win32.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug|Win32.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release|Win32.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release|Win32.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug|Win32.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug|Win32.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release|Win32.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release|Win32.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug|Win32.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug|Win32.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release|Win32.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release|Win32.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug|Win32.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.DebugMDD|Win32.ActiveCfg = DebugMDD - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release|Win32.ActiveCfg = Release - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release|Win32.Build.0 = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug|Win32.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug|Win32.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release|Win32.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release|Win32.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug|Win32.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug|Win32.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release|Win32.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release|Win32.Build.0 = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug|Win32.ActiveCfg = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug|Win32.Build.0 = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release|Win32.ActiveCfg = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release|Win32.Build.0 = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug|Win32.ActiveCfg = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug|Win32.Build.0 = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release|Win32.ActiveCfg = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release|Win32.Build.0 = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug|Win32.ActiveCfg = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug|Win32.Build.0 = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release|Win32.ActiveCfg = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release|Win32.Build.0 = Release|Win32 - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug|Win32.ActiveCfg = Debug - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.DebugMDD|Win32.ActiveCfg = DebugMDD - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Release|Win32.ActiveCfg = Release - {D76CE458-2A16-42DD-AE25-E282886C358F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Debug|Win32.Build.0 = Debug|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Release|Win32.ActiveCfg = Release|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Release|Win32.Build.0 = Release|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Debug|Win32.ActiveCfg = Debug|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Debug|Win32.Build.0 = Debug|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Release|Win32.ActiveCfg = Release|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Release|Win32.Build.0 = Release|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Debug|Win32.ActiveCfg = Debug|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Debug|Win32.Build.0 = Debug|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Release|Win32.ActiveCfg = Release|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Release|Win32.Build.0 = Release|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Debug|Win32.ActiveCfg = Debug|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Debug|Win32.Build.0 = Debug|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Release|Win32.ActiveCfg = Release|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Release|Win32.Build.0 = Release|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Debug|Win32.ActiveCfg = Debug|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Debug|Win32.Build.0 = Debug|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Release|Win32.ActiveCfg = Release|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Release|Win32.Build.0 = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.ActiveCfg = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.Build.0 = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.ActiveCfg = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.Build.0 = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.ActiveCfg = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.Build.0 = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.ActiveCfg = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.Build.0 = Release|Win32 - {98EFB8B3-7795-444C-BBC0-B1F399BEB029}.Debug|Win32.ActiveCfg = Debug|Win32 - {98EFB8B3-7795-444C-BBC0-B1F399BEB029}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {98EFB8B3-7795-444C-BBC0-B1F399BEB029}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {98EFB8B3-7795-444C-BBC0-B1F399BEB029}.Release|Win32.ActiveCfg = Release|Win32 - {58191424-3B9D-4571-BC76-98D05A1CA424}.Debug|Win32.ActiveCfg = Debug - {58191424-3B9D-4571-BC76-98D05A1CA424}.DebugMDD|Win32.ActiveCfg = DebugMDD - {58191424-3B9D-4571-BC76-98D05A1CA424}.DebugMDD|Win32.Build.0 = DebugMDD - {58191424-3B9D-4571-BC76-98D05A1CA424}.Release|Win32.ActiveCfg = Release - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc9/cantera_examples.sln b/win32/vc9/cantera_examples.sln deleted file mode 100755 index b6a7533ce..000000000 --- a/win32/vc9/cantera_examples.sln +++ /dev/null @@ -1,37 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "diamondSurf", "diamondSurf\diamondSurf.vcproj", "{D600ECB2-D432-4E4D-9D70-BF94AEF31485}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "silane_equil", "silane_equil\silane_equil.vcproj", "{290DC5E5-0016-4CCF-84D5-6B997DD3664A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin\surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cxx_examples", "cxx_examples\cxx_examples.vcproj", "{0E635864-A310-4468-9D97-9CE67B078C97}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug|Win32.ActiveCfg = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug|Win32.Build.0 = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release|Win32.ActiveCfg = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release|Win32.Build.0 = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug|Win32.ActiveCfg = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug|Win32.Build.0 = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release|Win32.ActiveCfg = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release|Win32.Build.0 = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.Build.0 = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.ActiveCfg = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.Build.0 = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug|Win32.Build.0 = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release|Win32.ActiveCfg = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc9/cantera_no_sundials.sln b/win32/vc9/cantera_no_sundials.sln deleted file mode 100755 index 650a0169a..000000000 --- a/win32/vc9/cantera_no_sundials.sln +++ /dev/null @@ -1,180 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cvode", "cvode\cvode.vcproj", "{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} = {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{F7607AF2-705A-4046-B7EC-067DEE3BB79F}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.ActiveCfg = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.Build.0 = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.ActiveCfg = Release|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.Build.0 = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32 - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Debug.ActiveCfg = Debug - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Release.ActiveCfg = Release - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc9/ck2cti/ck2cti.vcproj b/win32/vc9/ck2cti/ck2cti.vcproj deleted file mode 100755 index b891b0bdd..000000000 --- a/win32/vc9/ck2cti/ck2cti.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/clib/clib.vcproj b/win32/vc9/clib/clib.vcproj deleted file mode 100755 index fa7698465..000000000 --- a/win32/vc9/clib/clib.vcproj +++ /dev/null @@ -1,374 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/clibstatic/clibstatic.vcproj b/win32/vc9/clibstatic/clibstatic.vcproj deleted file mode 100755 index 94e446bf4..000000000 --- a/win32/vc9/clibstatic/clibstatic.vcproj +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/config_h/config_h.vcproj b/win32/vc9/config_h/config_h.vcproj deleted file mode 100755 index a52681f47..000000000 --- a/win32/vc9/config_h/config_h.vcproj +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/config_h/docopy.cmd b/win32/vc9/config_h/docopy.cmd deleted file mode 100755 index b762577d1..000000000 --- a/win32/vc9/config_h/docopy.cmd +++ /dev/null @@ -1,48 +0,0 @@ -echo on -cd ..\..\.. -copy winconfig.h config.h - -cd ext\f2c_libs -copy arith.hwin32 arith.h -copy sysdep1.h0 sysdep1.h -copy signal1.h0 signal1.h -cd ..\.. - -if not exist build\include\cantera mkdir build\include\cantera -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel -if not exist build\bin\i686-pc-win32 mkdir build\bin\i686-pc-win32 -if not exist build\lib\i686-pc-win32 mkdir build\lib\i686-pc-win32 - -copy config.h build\include\cantera -copy config.h build\include\cantera\winconfig.h - -cd Cantera\cxx\include - -copy Cantera.h ..\..\..\build\include\cantera -copy Edge.h ..\..\..\build\include\cantera -copy electrolyteThermo.h ..\..\..\build\include\cantera -copy equilibrium.h ..\..\..\build\include\cantera -copy GRI30.h ..\..\..\build\include\cantera -copy IdealGasMix.h ..\..\..\build\include\cantera -copy importPhase.h ..\..\..\build\include\cantera -copy IncompressibleSolid.h ..\..\..\build\include\cantera -copy integrators.h ..\..\..\build\include\cantera -copy Interface.h ..\..\..\build\include\cantera -copy kinetics.h ..\..\..\build\include\cantera -copy Metal.h ..\..\..\build\include\cantera -copy numerics.h ..\..\..\build\include\cantera -copy onedim.h ..\..\..\build\include\cantera -copy PureFluid.h ..\..\..\build\include\cantera -copy radiation.h ..\..\..\build\include\cantera -copy reactionpaths.h ..\..\..\build\include\cantera -copy spectra.h ..\..\..\build\include\cantera -copy surface.h ..\..\..\build\include\cantera -copy thermo.h ..\..\..\build\include\cantera -copy transport.h ..\..\..\build\include\cantera -copy zerodim.h ..\..\..\build\include\cantera - -cd ..\..\.. - -cd win32\vc9\config_h -echo ok -echo off diff --git a/win32/vc9/converters/converters.vcproj b/win32/vc9/converters/converters.vcproj deleted file mode 100755 index c643aed1b..000000000 --- a/win32/vc9/converters/converters.vcproj +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/converters/docopy.cmd b/win32/vc9/converters/docopy.cmd deleted file mode 100755 index fbcb9b9a7..000000000 --- a/win32/vc9/converters/docopy.cmd +++ /dev/null @@ -1,21 +0,0 @@ -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\conver~1 - -copy ck2ct.h ..\..\..\build\include\cantera\kernel -copy CKParser.h ..\..\..\build\include\cantera\kernel -copy ckr_defs.h ..\..\..\build\include\cantera\kernel -copy ckr_utils.h ..\..\..\build\include\cantera\kernel -copy CKReader.h ..\..\..\build\include\cantera\kernel -copy Constituent.h ..\..\..\build\include\cantera\kernel -copy Element.h ..\..\..\build\include\cantera\kernel -copy Reaction.h ..\..\..\build\include\cantera\kernel -copy RxnSpecies.h ..\..\..\build\include\cantera\kernel -copy Species.h ..\..\..\build\include\cantera\kernel -copy thermoFunctions.h ..\..\..\build\include\cantera\kernel -copy writelog.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\conver~1 -echo 'ok' diff --git a/win32/vc9/csvdiff/csvdiff.vcproj b/win32/vc9/csvdiff/csvdiff.vcproj deleted file mode 100755 index 8cebdff49..000000000 --- a/win32/vc9/csvdiff/csvdiff.vcproj +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/cti2ctml/cti2ctml.vcproj b/win32/vc9/cti2ctml/cti2ctml.vcproj deleted file mode 100755 index c395de28b..000000000 --- a/win32/vc9/cti2ctml/cti2ctml.vcproj +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/ctmatlab/buildmlab.cmd b/win32/vc9/ctmatlab/buildmlab.cmd deleted file mode 100755 index 6249ad792..000000000 --- a/win32/vc9/ctmatlab/buildmlab.cmd +++ /dev/null @@ -1,3 +0,0 @@ -cd ..\..\..\Cantera\matlab -%PYTHON_CMD% setup_winmatlab.py build - diff --git a/win32/vc9/ctmatlab/buildmlab_d.cmd b/win32/vc9/ctmatlab/buildmlab_d.cmd deleted file mode 100755 index 3919da07a..000000000 --- a/win32/vc9/ctmatlab/buildmlab_d.cmd +++ /dev/null @@ -1,3 +0,0 @@ -cd ..\..\..\Cantera\matlab -%PYTHON_CMD% setup_winmatlab_d.py build - diff --git a/win32/vc9/ctmatlab/ctmatlab.vcproj b/win32/vc9/ctmatlab/ctmatlab.vcproj deleted file mode 100755 index f89669137..000000000 --- a/win32/vc9/ctmatlab/ctmatlab.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/ctmatlab/runmlab.cmd b/win32/vc9/ctmatlab/runmlab.cmd deleted file mode 100755 index d2b774ba2..000000000 --- a/win32/vc9/ctmatlab/runmlab.cmd +++ /dev/null @@ -1,7 +0,0 @@ -cd ..\..\..\Cantera\matlab -"%MATLAB_CMD%" -nodisplay -nosplash -nojvm -r setup - -echo 'ok' > status - -more - diff --git a/win32/vc9/ctpython/ctpython.vcproj b/win32/vc9/ctpython/ctpython.vcproj deleted file mode 100755 index 9215c0e44..000000000 --- a/win32/vc9/ctpython/ctpython.vcproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/ctpython/runpython.cmd b/win32/vc9/ctpython/runpython.cmd deleted file mode 100755 index b31917435..000000000 --- a/win32/vc9/ctpython/runpython.cmd +++ /dev/null @@ -1,8 +0,0 @@ -cd ..\..\..\Cantera\python -%PYTHON_CMD% winsetup.py build -copy ..\..\build\lib\i686-pc-win32\clib.dll build\lib.win32-2.6\Cantera -copy ..\..\build\lib\i686-pc-win32\clib.exp build\lib.win32-2.6\Cantera -copy ..\..\build\lib\i686-pc-win32\clib.lib build\lib.win32-2.6\Cantera -%PYTHON_CMD% winsetup.py bdist_wininst -%PYTHON_CMD% winsetup.py install -echo 'ok' > status diff --git a/win32/vc9/ctpython/runpython_d.cmd b/win32/vc9/ctpython/runpython_d.cmd deleted file mode 100755 index a10deeddf..000000000 --- a/win32/vc9/ctpython/runpython_d.cmd +++ /dev/null @@ -1,8 +0,0 @@ -cd ..\..\..\Cantera\python -%PYTHON_CMD% winsetup.py build -copy ..\..\build\lib\i686-pc-win32\clib_d.dll build\lib.win32-2.6\Cantera -copy ..\..\build\lib\i686-pc-win32\clib_d.exp build\lib.win32-2.6\Cantera -copy ..\..\build\lib\i686-pc-win32\clib_d.lib build\lib.win32-2.6\Cantera -%PYTHON_CMD% winsetup_d.py bdist_wininst -%PYTHON_CMD% winsetup_d.py install -echo 'ok' > status diff --git a/win32/vc9/cvode/cvode.vcproj b/win32/vc9/cvode/cvode.vcproj deleted file mode 100755 index 543629dcc..000000000 --- a/win32/vc9/cvode/cvode.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/cxx_examples/cxx_examples.vcproj b/win32/vc9/cxx_examples/cxx_examples.vcproj deleted file mode 100755 index 2eacc6767..000000000 --- a/win32/vc9/cxx_examples/cxx_examples.vcproj +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/cxxutils/cxxutils.vcproj b/win32/vc9/cxxutils/cxxutils.vcproj deleted file mode 100755 index ee8cdc3c4..000000000 --- a/win32/vc9/cxxutils/cxxutils.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/cxxutils/docopy.cmd b/win32/vc9/cxxutils/docopy.cmd deleted file mode 100755 index 60c8e8d4d..000000000 --- a/win32/vc9/cxxutils/docopy.cmd +++ /dev/null @@ -1,21 +0,0 @@ -cd ..\..\..\Cantera\cxx\include - -copy Cantera.h ..\..\..\build\include\cantera -copy Edge.h ..\..\..\build\include\cantera -copy equilibrium.h ..\..\..\build\include\cantera -copy GRI30.h ..\..\..\build\include\cantera -copy IdealGasMix.h ..\..\..\build\include\cantera -copy IncompressibleSolid.h ..\..\..\build\include\cantera -copy integrators.h ..\..\..\build\include\cantera -copy Interface.h ..\..\..\build\include\cantera -copy kinetics.h ..\..\..\build\include\cantera -copy Metal.h ..\..\..\build\include\cantera -copy numerics.h ..\..\..\build\include\cantera -copy onedim.h ..\..\..\build\include\cantera -copy reactionpaths.h ..\..\..\build\include\cantera -copy surface.h ..\..\..\build\include\cantera -copy transport.h ..\..\..\build\include\cantera -copy zerodim.h ..\..\..\build\include\cantera - -cd ..\..\..\win32\vc9\cxxutils -echo 'ok' > status diff --git a/win32/vc9/demos/CanteraDemos.sln b/win32/vc9/demos/CanteraDemos.sln deleted file mode 100755 index dc746232b..000000000 --- a/win32/vc9/demos/CanteraDemos.sln +++ /dev/null @@ -1,51 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "demo", "demo.vcproj", "{F0FBA57E-6E65-46E6-9DDD-2625E7082189}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{66D3DEAE-36EE-4A5C-B8C3-4A8286DA6599}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "combustor", "combustor\combustor.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flamespeed", "flamespeed\flamespeed.vcproj", "{A839E4E1-9080-4236-BAB5-F1D0F700B806}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics1", "kinetics1\kinetics1.vcproj", "{207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NASA_coeffs", "NASA_coeffs\NASA_coeffs.vcproj", "{4CC37329-C8ED-489E-A79B-5CF6B8570328}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rankine", "rankine\Rankine.vcproj", "{02089181-7A2D-4933-9847-C9C687D3C99D}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug|Win32.Build.0 = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release|Win32.ActiveCfg = Release|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release|Win32.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug|Win32.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug|Win32.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release|Win32.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release|Win32.Build.0 = Release|Win32 - {A839E4E1-9080-4236-BAB5-F1D0F700B806}.Debug|Win32.ActiveCfg = Debug|Win32 - {A839E4E1-9080-4236-BAB5-F1D0F700B806}.Debug|Win32.Build.0 = Debug|Win32 - {A839E4E1-9080-4236-BAB5-F1D0F700B806}.Release|Win32.ActiveCfg = Release|Win32 - {A839E4E1-9080-4236-BAB5-F1D0F700B806}.Release|Win32.Build.0 = Release|Win32 - {207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}.Debug|Win32.ActiveCfg = Debug|Win32 - {207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}.Debug|Win32.Build.0 = Debug|Win32 - {207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}.Release|Win32.ActiveCfg = Release|Win32 - {207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}.Release|Win32.Build.0 = Release|Win32 - {4CC37329-C8ED-489E-A79B-5CF6B8570328}.Debug|Win32.ActiveCfg = Debug|Win32 - {4CC37329-C8ED-489E-A79B-5CF6B8570328}.Debug|Win32.Build.0 = Debug|Win32 - {4CC37329-C8ED-489E-A79B-5CF6B8570328}.Release|Win32.ActiveCfg = Release|Win32 - {4CC37329-C8ED-489E-A79B-5CF6B8570328}.Release|Win32.Build.0 = Release|Win32 - {02089181-7A2D-4933-9847-C9C687D3C99D}.Debug|Win32.ActiveCfg = Debug|Win32 - {02089181-7A2D-4933-9847-C9C687D3C99D}.Debug|Win32.Build.0 = Debug|Win32 - {02089181-7A2D-4933-9847-C9C687D3C99D}.Release|Win32.ActiveCfg = Release|Win32 - {02089181-7A2D-4933-9847-C9C687D3C99D}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc9/demos/NASA_coeffs.vcproj b/win32/vc9/demos/NASA_coeffs.vcproj deleted file mode 100755 index bbc374f10..000000000 --- a/win32/vc9/demos/NASA_coeffs.vcproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/Rankine.vcproj b/win32/vc9/demos/Rankine.vcproj deleted file mode 100755 index bdf03e525..000000000 --- a/win32/vc9/demos/Rankine.vcproj +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/ReadMe.txt b/win32/vc9/demos/ReadMe.txt deleted file mode 100755 index 8004e4508..000000000 --- a/win32/vc9/demos/ReadMe.txt +++ /dev/null @@ -1,9 +0,0 @@ -The project setttings assume Cantera is installed in the directory above this one. -If this is not the case, edit the project properties before building. -The project settings that differ from the defaults are: -1) use of multithreaded DLL system libraries -2) specification of the Cantera libraries as additional - input for the linker -3) Specification of the Cantera include and lib directories. - These changes to the default project settings need to be made whenever - you create a new project that you want to link to Cantera. \ No newline at end of file diff --git a/win32/vc9/demos/combustor.vcproj b/win32/vc9/demos/combustor.vcproj deleted file mode 100755 index 9448ccac4..000000000 --- a/win32/vc9/demos/combustor.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/demo.vcproj b/win32/vc9/demos/demo.vcproj deleted file mode 100755 index 333727f5a..000000000 --- a/win32/vc9/demos/demo.vcproj +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/flamespeed.vcproj b/win32/vc9/demos/flamespeed.vcproj deleted file mode 100755 index 51e92e2c2..000000000 --- a/win32/vc9/demos/flamespeed.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/kinetics1.vcproj b/win32/vc9/demos/kinetics1.vcproj deleted file mode 100755 index 6ec1162f1..000000000 --- a/win32/vc9/demos/kinetics1.vcproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/diamondSurf/diamondSurf.vcproj b/win32/vc9/diamondSurf/diamondSurf.vcproj deleted file mode 100755 index 6000f4ecd..000000000 --- a/win32/vc9/diamondSurf/diamondSurf.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/equil/docopy.cmd b/win32/vc9/equil/docopy.cmd deleted file mode 100755 index e52802430..000000000 --- a/win32/vc9/equil/docopy.cmd +++ /dev/null @@ -1,26 +0,0 @@ -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\equil - -copy ChemEquil.h ..\..\..\build\include\cantera\kernel -copy equil.h ..\..\..\build\include\cantera\kernel -copy MultiPhase.h ..\..\..\build\include\cantera\kernel -copy MultiPhaseEquil.h ..\..\..\build\include\cantera\kernel -copy PropertyCalculator.h ..\..\..\build\include\cantera\kernel -copy vcs_defs.h ..\..\..\build\include\cantera\kernel -copy vcs_DoubleStarStar.h ..\..\..\build\include\cantera\kernel -copy vcs_Exception.h ..\..\..\build\include\cantera\kernel -copy vcs_internal.h ..\..\..\build\include\cantera\kernel -copy vcs_IntStarStar.h ..\..\..\build\include\cantera\kernel -copy vcs_MultiPhaseEquil.h ..\..\..\build\include\cantera\kernel -copy vcs_nasa_poly.h ..\..\..\build\include\cantera\kernel -copy vcs_prob.h ..\..\..\build\include\cantera\kernel -copy vcs_solve.h ..\..\..\build\include\cantera\kernel -copy vcs_species_thermo.h ..\..\..\build\include\cantera\kernel -copy vcs_SpeciesProperties.h ..\..\..\build\include\cantera\kernel -copy vcs_VolPhase.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\equil -echo 'ok' diff --git a/win32/vc9/equil/equil.vcproj b/win32/vc9/equil/equil.vcproj deleted file mode 100755 index 3a748494e..000000000 --- a/win32/vc9/equil/equil.vcproj +++ /dev/null @@ -1,460 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/f2c_blas/f2c_blas.vcproj b/win32/vc9/f2c_blas/f2c_blas.vcproj deleted file mode 100755 index 900e0e059..000000000 --- a/win32/vc9/f2c_blas/f2c_blas.vcproj +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/f2c_lapack/f2c_lapack.vcproj b/win32/vc9/f2c_lapack/f2c_lapack.vcproj deleted file mode 100755 index 23ededf35..000000000 --- a/win32/vc9/f2c_lapack/f2c_lapack.vcproj +++ /dev/null @@ -1,508 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/f2c_libs/f2c_libs.vcproj b/win32/vc9/f2c_libs/f2c_libs.vcproj deleted file mode 100755 index c4e0dc810..000000000 --- a/win32/vc9/f2c_libs/f2c_libs.vcproj +++ /dev/null @@ -1,888 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/f2c_math/f2c_math.vcproj b/win32/vc9/f2c_math/f2c_math.vcproj deleted file mode 100755 index 3e569d640..000000000 --- a/win32/vc9/f2c_math/f2c_math.vcproj +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/kinetics/docopy.cmd b/win32/vc9/kinetics/docopy.cmd deleted file mode 100755 index d03e3af6f..000000000 --- a/win32/vc9/kinetics/docopy.cmd +++ /dev/null @@ -1,35 +0,0 @@ -echo on -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\kinetics - -copy AqueousKinetics.h ..\..\..\build\include\cantera\kernel -copy EdgeKinetics.h ..\..\..\build\include\cantera\kernel -copy Enhanced3BConc.h ..\..\..\build\include\cantera\kernel -copy FalloffFactory.h ..\..\..\build\include\cantera\kernel -copy FalloffMgr.h ..\..\..\build\include\cantera\kernel -copy GasKinetics.h ..\..\..\build\include\cantera\kernel -copy GRI_30_Kinetics.h ..\..\..\build\include\cantera\kernel -copy Group.h ..\..\..\build\include\cantera\kernel -copy ImplicitChem.h ..\..\..\build\include\cantera\kernel -copy ImplicitSurfChem.h ..\..\..\build\include\cantera\kernel -copy importKinetics.h ..\..\..\build\include\cantera\kernel -copy InterfaceKinetics.h ..\..\..\build\include\cantera\kernel -copy Kinetics.h ..\..\..\build\include\cantera\kernel -copy KineticsFactory.h ..\..\..\build\include\cantera\kernel -copy RateCoeffMgr.h ..\..\..\build\include\cantera\kernel -copy reaction_defs.h ..\..\..\build\include\cantera\kernel -copy ReactionData.h ..\..\..\build\include\cantera\kernel -copy ReactionPath.h ..\..\..\build\include\cantera\kernel -copy ReactionStoichMgr.h ..\..\..\build\include\cantera\kernel -copy RxnRates.h ..\..\..\build\include\cantera\kernel -copy solveSP.h ..\..\..\build\include\cantera\kernel -copy StoichManager.h ..\..\..\build\include\cantera\kernel -copy ThirdBodyMgr.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\kinetics - -echo off -echo 'ok' diff --git a/win32/vc9/kinetics/kinetics.vcproj b/win32/vc9/kinetics/kinetics.vcproj deleted file mode 100755 index 5f253d8b8..000000000 --- a/win32/vc9/kinetics/kinetics.vcproj +++ /dev/null @@ -1,389 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/numerics/docopy.cmd b/win32/vc9/numerics/docopy.cmd deleted file mode 100755 index bd81c1faf..000000000 --- a/win32/vc9/numerics/docopy.cmd +++ /dev/null @@ -1,29 +0,0 @@ -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\numerics - -copy ArrayViewer.h ..\..\..\build\include\cantera\kernel -copy BandMatrix.h ..\..\..\build\include\cantera\kernel -copy ctlapack.h ..\..\..\build\include\cantera\kernel -copy CVode.h ..\..\..\build\include\cantera\kernel -copy CVodesIntegrator.h ..\..\..\build\include\cantera\kernel -copy DAE_Solver.h ..\..\..\build\include\cantera\kernel -copy DASPK.h ..\..\..\build\include\cantera\kernel -copy DenseMatrix.h ..\..\..\build\include\cantera\kernel -copy Func1.h ..\..\..\build\include\cantera\kernel -copy FuncEval.h ..\..\..\build\include\cantera\kernel -copy funcs.h ..\..\..\build\include\cantera\kernel -copy IDA_Solver.h ..\..\..\build\include\cantera\kernel -copy Integrator.h ..\..\..\build\include\cantera\kernel -copy lapack.h ..\..\..\build\include\cantera\kernel -copy NonlinearSolver.h ..\..\..\build\include\cantera\kernel -copy polyfit.h ..\..\..\build\include\cantera\kernel -copy ResidEval.h ..\..\..\build\include\cantera\kernel -copy ResidJacEval.h ..\..\..\build\include\cantera\kernel -copy sort.h ..\..\..\build\include\cantera\kernel -copy SquareMatrix.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\numerics -echo 'ok' > status diff --git a/win32/vc9/numerics/numerics.vcproj b/win32/vc9/numerics/numerics.vcproj deleted file mode 100755 index 7913ce1d3..000000000 --- a/win32/vc9/numerics/numerics.vcproj +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/oneD/docopy.cmd b/win32/vc9/oneD/docopy.cmd deleted file mode 100755 index 399accdd6..000000000 --- a/win32/vc9/oneD/docopy.cmd +++ /dev/null @@ -1,22 +0,0 @@ -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\oneD - -echo on -copy Domain1D.h ..\..\..\build\include\cantera\kernel -copy Inlet1D.h ..\..\..\build\include\cantera\kernel -copy MultiJac.h ..\..\..\build\include\cantera\kernel -copy MultiNewton.h ..\..\..\build\include\cantera\kernel -copy OneDim.h ..\..\..\build\include\cantera\kernel -copy refine.h ..\..\..\build\include\cantera\kernel -copy Resid1D.h ..\..\..\build\include\cantera\kernel -copy Sim1D.h ..\..\..\build\include\cantera\kernel -copy Solid1D.h ..\..\..\build\include\cantera\kernel -copy StFlow.h ..\..\..\build\include\cantera\kernel -copy Surf1D.h ..\..\..\build\include\cantera\kernel -echo off - -cd ..\..\..\win32\vc9\oneD -echo 'ok' > status.tmp diff --git a/win32/vc9/oneD/oneD.vcproj b/win32/vc9/oneD/oneD.vcproj deleted file mode 100755 index 4b33cc0f9..000000000 --- a/win32/vc9/oneD/oneD.vcproj +++ /dev/null @@ -1,326 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/prepreconfig.vc++ b/win32/vc9/prepreconfig.vc++ deleted file mode 100755 index e0a39471c..000000000 --- a/win32/vc9/prepreconfig.vc++ +++ /dev/null @@ -1,102 +0,0 @@ -#!/bin/sh -# -# -# Sample bourne shell wrapper around Cantera's configure -# shell command, used for building and installing Cantera -# using MS VC++, without fortran support. -# Copy this file to the top directory of the Cantera distribution. -# Edit a few directory locations indicated below. Then execute it -# after autoconf is run. -# -# Tell Cantera you will be using a VC++ compiler to compile and link -# all of the programs -# -USE_VISUAL_STUDIO="y" -export USE_VISUAL_STUDIO -# -# Specify the root directory: Will need adjusting -# -CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop" -export CANTERA_ROOT -# -# Specify the install directory: Will need adjusting -# -CANTERA_INSTALL_DIR="C:/vc_env/Cantera" -export CANTERA_INSTALL_DIR -# -# -# PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -PYTHON_CMD="c:/python26/python.exe" -export PYTHON_CMD -# -# WIN_PYTHON_CMD: This is the default location that Python26 -# puts its files. -# -WIN_PYTHON_CMD='C:/Python26/python' -export WIN_PYTHON_CMD -# -# These 2 next lines tells Cantera and Python where to install -# the Cantera python modules. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR -# -PYTHON_SITE_PACKAGE_TOPDIR="C:/Python26" -export PYTHON_SITE_PACKAGE_TOPDIR -# -# No matlab toolbox in this script. However, if you have matlab -# on your machine, you can change the "n" to a "y". -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX -# -# Indicate that you will be using the clib.dll -# -USE_DLL="y" -export USE_DLL -# -# HKM -> note config chokes on cl.exe . It can't interpret the -# needed command line arguments. -#CXX="cl.exe" -#export CXX -#CC="cl.exe" -#export CC -# -CXXFLAGS="-g" -export CXXFLAGS -# -# -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME='/cygdrive/c/vc_env/sundials' -export SUNDIALS_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR='c:\python26\lib\site-packages\numpy\core\include' -export NUMPY_INC_DIR - -# -# Call the configure command at the top of the Cantera distribution -# in a cygwin shell -# -./preconfig -# diff --git a/win32/vc9/silane_equil/silane_equil.vcproj b/win32/vc9/silane_equil/silane_equil.vcproj deleted file mode 100755 index daa32b843..000000000 --- a/win32/vc9/silane_equil/silane_equil.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/spectra/spectra.vcproj b/win32/vc9/spectra/spectra.vcproj deleted file mode 100755 index f00a36d33..000000000 --- a/win32/vc9/spectra/spectra.vcproj +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/surfkin/surfkin.sln b/win32/vc9/surfkin/surfkin.sln deleted file mode 100755 index dbcb8ecab..000000000 --- a/win32/vc9/surfkin/surfkin.sln +++ /dev/null @@ -1,20 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.Build.0 = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.ActiveCfg = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc9/surfkin/surfkin.vcproj b/win32/vc9/surfkin/surfkin.vcproj deleted file mode 100755 index a717169e2..000000000 --- a/win32/vc9/surfkin/surfkin.vcproj +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/thermo/docopy.cmd b/win32/vc9/thermo/docopy.cmd deleted file mode 100755 index ac58dfa5b..000000000 --- a/win32/vc9/thermo/docopy.cmd +++ /dev/null @@ -1,76 +0,0 @@ -echo on -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\thermo - - -copy AdsorbateThermo.h ..\..\..\build\include\cantera\kernel -copy ConstCpPoly.h ..\..\..\build\include\cantera\kernel -copy Constituents.h ..\..\..\build\include\cantera\kernel -copy Crystal.h ..\..\..\build\include\cantera\kernel -copy DebyeHuckel.h ..\..\..\build\include\cantera\kernel -copy EdgePhase.h ..\..\..\build\include\cantera\kernel -copy electrolytes.h ..\..\..\build\include\cantera\kernel -copy Elements.h ..\..\..\build\include\cantera\kernel -copy GeneralSpeciesThermo.h ..\..\..\build\include\cantera\kernel -copy GibbsExcessVPSSTP.h ..\..\..\build\include\cantera\kernel -copy HMWSoln.h ..\..\..\build\include\cantera\kernel -copy IdealGasPhase.h ..\..\..\build\include\cantera\kernel -copy IdealMolalSoln.h ..\..\..\build\include\cantera\kernel -copy IdealSolidSolnPhase.h ..\..\..\build\include\cantera\kernel -copy IdealSolnGasVPSS.h ..\..\..\build\include\cantera\kernel -copy LatticePhase.h ..\..\..\build\include\cantera\kernel -copy LatticeSolidPhase.h ..\..\..\build\include\cantera\kernel -copy MargulesVPSSTP.h ..\..\..\build\include\cantera\kernel -copy MetalPhase.h ..\..\..\build\include\cantera\kernel -copy MineralEQ3.h ..\..\..\build\include\cantera\kernel -copy mix_defs.h ..\..\..\build\include\cantera\kernel -copy MolalityVPSSTP.h ..\..\..\build\include\cantera\kernel -copy Mu0Poly.h ..\..\..\build\include\cantera\kernel -copy Nasa9Poly1.h ..\..\..\build\include\cantera\kernel -copy Nasa9PolyMultiTempRegion.h ..\..\..\build\include\cantera\kernel -copy NasaPoly1.h ..\..\..\build\include\cantera\kernel -copy NasaPoly2.h ..\..\..\build\include\cantera\kernel -copy NasaThermo.h ..\..\..\build\include\cantera\kernel -copy PDSS.h ..\..\..\build\include\cantera\kernel -copy PDSS_ConstVol.h ..\..\..\build\include\cantera\kernel -copy PDSS_HKFT.h ..\..\..\build\include\cantera\kernel -copy PDSS_IdealGas.h ..\..\..\build\include\cantera\kernel -copy PDSS_Water.h ..\..\..\build\include\cantera\kernel -copy Phase.h ..\..\..\build\include\cantera\kernel -copy PseudoBinaryVPSSTP.h ..\..\..\build\include\cantera\kernel -copy PureFluidPhase.h ..\..\..\build\include\cantera\kernel -copy SemiconductorPhase.h ..\..\..\build\include\cantera\kernel -copy ShomateThermo.h ..\..\..\build\include\cantera\kernel -copy SimpleThermo.h ..\..\..\build\include\cantera\kernel -copy SingleSPeciesTP.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermo.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermoFactory.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermoInterpType.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermoMgr.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermoTypes.h ..\..\..\build\include\cantera\kernel -copy State.h ..\..\..\build\include\cantera\kernel -copy StoichSubstance.h ..\..\..\build\include\cantera\kernel -copy StoichSubstanceSSTP.h ..\..\..\build\include\cantera\kernel -copy SurfPhase.h ..\..\..\build\include\cantera\kernel -copy ThermoFactory.h ..\..\..\build\include\cantera\kernel -copy ThermoPhase.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr.h ..\..\..\build\include\cantera\kernel -copy VPSSMGr_ConstVol.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_General.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_IdealGas.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_types.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_Water_ConstVol.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_Water_HKFT.h ..\..\..\build\include\cantera\kernel -copy VPSSMgrFactory.h ..\..\..\build\include\cantera\kernel -copy VPStandardStateTP.h ..\..\..\build\include\cantera\kernel -copy WaterProps.h ..\..\..\build\include\cantera\kernel -copy WaterPropsIAPWS.h ..\..\..\build\include\cantera\kernel -copy WaterPropsIAPWSphi.h ..\..\..\build\include\cantera\kernel -copy WaterSSTP.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\thermo -echo off -echo 'ok' > status.tmp diff --git a/win32/vc9/thermo/thermo.vcproj b/win32/vc9/thermo/thermo.vcproj deleted file mode 100755 index 844cb1086..000000000 --- a/win32/vc9/thermo/thermo.vcproj +++ /dev/null @@ -1,718 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/tpx/tpx.vcproj b/win32/vc9/tpx/tpx.vcproj deleted file mode 100755 index fd3b6595b..000000000 --- a/win32/vc9/tpx/tpx.vcproj +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/transport/docopy.cmd b/win32/vc9/transport/docopy.cmd deleted file mode 100755 index c2f621c2d..000000000 --- a/win32/vc9/transport/docopy.cmd +++ /dev/null @@ -1,24 +0,0 @@ -echo on -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\transp~1 - -copy AqueousTransport.h ..\..\..\build\include\cantera\kernel -copy DustyGasTransport.h ..\..\..\build\include\cantera\kernel -copy FtnTransport.h ..\..\..\build\include\cantera\kernel -copy L_matrix.h ..\..\..\build\include\cantera\kernel -copy LiquidTransport.h ..\..\..\build\include\cantera\kernel -copy LiquidTransportParams.h ..\..\..\build\include\cantera\kernel -copy MixTransport.h ..\..\..\build\include\cantera\kernel -copy MMCollisionInt.h ..\..\..\build\include\cantera\kernel -copy MultiTransport.h ..\..\..\build\include\cantera\kernel -copy SolidTransport.h ..\..\..\build\include\cantera\kernel -copy TransportBase.h ..\..\..\build\include\cantera\kernel -copy TransportFactory.h ..\..\..\build\include\cantera\kernel -copy TransportParams.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\transp~1 -echo off -echo 'ok' > status diff --git a/win32/vc9/transport/transport.vcproj b/win32/vc9/transport/transport.vcproj deleted file mode 100755 index af5a80505..000000000 --- a/win32/vc9/transport/transport.vcproj +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/zeroD/docopy.cmd b/win32/vc9/zeroD/docopy.cmd deleted file mode 100755 index 71e78dcf7..000000000 --- a/win32/vc9/zeroD/docopy.cmd +++ /dev/null @@ -1,22 +0,0 @@ -REM echo on -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\zeroD - -copy ConstPressureReactor.h ..\..\..\build\include\cantera\kernel -copy flowControllers.h ..\..\..\build\include\cantera\kernel -copy FlowDevice.h ..\..\..\build\include\cantera\kernel -copy FlowReactor.h ..\..\..\build\include\cantera\kernel -copy PID_Controller.h ..\..\..\build\include\cantera\kernel -copy Reactor.h ..\..\..\build\include\cantera\kernel -copy ReactorBase.h ..\..\..\build\include\cantera\kernel -copy ReactorFactory.h ..\..\..\build\include\cantera\kernel -copy ReactorNet.h ..\..\..\build\include\cantera\kernel -copy Reservoir.h ..\..\..\build\include\cantera\kernel -copy Wall.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\zeroD -REM echo off -echo 'ok' diff --git a/win32/vc9/zeroD/zeroD.vcproj b/win32/vc9/zeroD/zeroD.vcproj deleted file mode 100755 index 97c27ec26..000000000 --- a/win32/vc9/zeroD/zeroD.vcproj +++ /dev/null @@ -1,325 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/winconfig.h b/winconfig.h deleted file mode 100644 index f0afd2e8e..000000000 --- a/winconfig.h +++ /dev/null @@ -1,192 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -// -// Run the 'preconfig' script to generate 'config.h' from this input file. -// -#ifndef CT_CONFIG_H -#define CT_CONFIG_H - - -//---------------------------- Version Flags ------------------// -// Cantera version -> this will be a double-quoted string value -// refering to branch number within svn -#define CANTERA_VERSION "1.8.x" - -// Integer for major number of Cantera -#define CANTERA_VERSION_MAJORNUMBER 18 -// Flag indicating it's part of major version 18 -#define CANTERA_VERSION_18 1 -// Flag indicating it's a development version -#define CANTERA_VERSION_18_XXX 1 - - -//------------------------ Development flags ------------------// -// -// Compile in additional debug printing where available. -// Note, the printing may need to be turned on via a switch. -// This just compiles in the code. -/* #undef DEBUG_MODE */ - -// Compiling with PURIFY instrumentation -/* #undef PURIFY_MODE */ - -//------------------------ Fortran settings -------------------// - - -// define types doublereal, integer, and ftnlen to match the -// corresponding Fortran data types on your system. The defaults -// are OK for most systems - -typedef double doublereal; // Fortran double precision -typedef int integer; // Fortran integer -typedef int ftnlen; // Fortran hidden string length type - - - -// Fortran compilers pass character strings in argument lists by -// adding a hidden argement with the length of the string. Some -// compilers add the hidden length argument immediately after the -// CHARACTER variable being passed, while others put all of the hidden -// length arguments at the end of the argument list. Define this if -// the lengths are at the end of the argument list. This is usually the -// case for most unix Fortran compilers, but is (by default) false for -// Visual Fortran under Windows. -#define STRING_LEN_AT_END - - -// Define this if Fortran adds a trailing underscore to names in object files. -// For linux and most unix systems, this is the case. -#define FTN_TRAILING_UNDERSCORE 1 - - -#define HAS_SUNDIALS 1 -/* #undef SUNDIALS_VERSION_22 */ -#define SUNDIALS_VERSION_23 1 - -//-------- LAPACK / BLAS --------- - -#define LAPACK_FTN_STRING_LEN_AT_END 1 -#define LAPACK_NAMES_LOWERCASE 1 -#define LAPACK_FTN_TRAILING_UNDERSCORE 1 - - -//--------- operating system -------------------------------------- - -// The configure script defines this if the operatiing system is Mac -// OS X, This used to add some Mac-specific directories to the default -// data file search path. -/* #undef DARWIN */ -#define HAS_SSTREAM 1 - - -// Identify whether the operating system is cygwin's overlay of -// windows, with gcc being used as the compiler. -/* #undef CYGWIN */ - -// Identify whether the operating system is windows based, with -// microsoft vc++ being used as the compiler -#define WINMSVC 1 - -// Identify whether the operating system is solaris -// with a native compiler -/* #undef SOLARIS */ - -//--------- Fonts for reaction path diagrams ---------------------- -#define RXNPATH_FONT "Helvetica" - -//---------- C++ Compiler Variations ------------------------------ - -// This define is needed to account for the variability for how -// static variables in templated classes are defined. Right now -// this is only turned on for the SunPro compiler on solaris. -// in that system , you need to declare the static storage variable. -// with the following line in the include file -// -// template Cabinet* Cabinet::__storage; -// -// Note, on other systems that declaration is treated as a definition -// and this leads to multiple defines at link time -/* #undef NEEDS_GENERIC_TEMPL_STATIC_DECL */ - -//--------------------- Python ------------------------------------ -// This path to the python executable is created during -// Cantera's setup. It identifies the python executable -// used to run Python to process .cti files. Note that this is only -// used if environment variable PYTHON_CMD is not set. -#define PYTHON_EXE "c:/python26/python.exe" - -// If this is defined, the Cantera Python interface will use the -// Numeric package -/* #undef HAS_NUMERIC */ - -// If this is defined, the Cantera Python interface will use the -// numarray package -/* #undef HAS_NUMARRAY */ - -// If this is defined, the Cantera Python interface will use the -// numpy package -#define HAS_NUMPY 1 - -// If this is defined, then python will not be assumed to be -// present to support conversions -/* #undef HAS_NO_PYTHON */ - -//--------------------- Cantera ----------------------------------- -// This is the data pathway used to locate the top of the -// build directory. -/* #undef CANTERA_ROOT */ - -// This data pathway is used to locate a directory where datafiles -// are to be found. Note, the local directory is always searched -// as well. -#define CANTERA_DATA "C:/cygwin/usr/local/cantera/data" - - -#define WITH_HTML_LOGS 1 - -// define STORE_MOLE_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mole fractions. Usually -// the best choice. -#define STORE_MOLE_FRACTIONS - -// define STORE_MASS_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mass fractions. Usually -// results in slightly worse performance, but may not in all cases. -//#define STORE_MASS_FRACTIONS -/* #undef STORE_MASS_FRACTIONS */ - -//--------------------- compile options ---------------------------- -/* #undef USE_PCH */ - -/* #undef THREAD_SAFE_CANTERA */ - -//--------------------- optional phase models ---------------------- -// This define indicates the enabling of the inclusion of -// accurate liquid/vapor equations -// of state for several fluids, including water, nitrogen, hydrogen, -// oxygen, methane, andd HFC-134a. -#define INCL_PURE_FLUIDS 1 -#define WITH_PURE_FLUIDS 1 - -#define WITH_LATTICE_SOLID 1 -#define WITH_METAL 1 -#define WITH_STOICH_SUBSTANCE 1 -// Enable expanded thermodynamic capabilities, adding -// ideal solid solutions -#define WITH_IDEAL_SOLUTIONS 1 -// Enable expanded electrochemistry capabilities, include thermo -// models for electrolyte solutions. -#define WITH_ELECTROLYTES 1 - -/* #undef WITH_PRIME */ - -// Enable the VCS NonIdeal equilibrium solver. This is -// accessed by specifying the solver=2 option -#define WITH_VCSNONIDEAL 1 - -//-------------- Optional Cantera Capabilities ---------------------- - -// Enable sensitivity analysis via changing H298 directly -// for species -/* #undef H298MODIFY_CAPABILITY */ - -#endif