diff --git a/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/ConvertDatabase12400.cs b/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/ConvertDatabase12400.cs
new file mode 100644
index 0000000000..22282e852a
--- /dev/null
+++ b/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/ConvertDatabase12400.cs
@@ -0,0 +1,37 @@
+////////////////////////////////
+//
+// Copyright 2024 Battelle Energy Alliance, LLC
+//
+//
+////////////////////////////////
+using System;
+using Microsoft.Data.SqlClient;
+using System.IO;
+namespace UpgradeLibrary.Upgrade
+{
+ internal class ConvertDatabase12400 : ConvertSqlDatabase
+ {
+ public ConvertDatabase12400(string path) : base(path)
+ {
+ myVersion = new Version("12.4.0.0");
+ }
+
+ ///
+ /// Runs the database update script
+ ///
+ /// F
+ public override void Execute(SqlConnection conn)
+ {
+ try
+ {
+ RunFile(Path.Combine(this.applicationPath, "VersionUpgrader", "SQL", "12310_to_12400.sql"), conn);
+ RunFile(Path.Combine(this.applicationPath, "VersionUpgrader", "SQL", "12310_to_12400_data.sql"), conn);
+ this.UpgradeToVersionLocalDB(conn, myVersion);
+ }
+ catch (Exception e)
+ {
+ throw new DatabaseUpgradeException("Error in upgrading database version 12.3.1.0 to 12.4.0.0: " + e.Message);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/SQL/12310_to_12400.sql b/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/SQL/12310_to_12400.sql
new file mode 100644
index 0000000000..b13edab280
--- /dev/null
+++ b/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/SQL/12310_to_12400.sql
@@ -0,0 +1,168 @@
+/*
+Run this script on:
+
+ (localdb)\INLLocalDB2022.CSETWeb12310 - This database will be modified
+
+to synchronize it with:
+
+ (localdb)\INLLocalDB2022.CSETWeb12400
+
+You are recommended to back up your database before running this script
+
+Script created by SQL Compare version 14.10.9.22680 from Red Gate Software Ltd at 2/19/2025 10:43:13 AM
+
+*/
+SET NUMERIC_ROUNDABORT OFF
+GO
+SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, QUOTED_IDENTIFIER, ANSI_NULLS ON
+GO
+SET XACT_ABORT ON
+GO
+SET TRANSACTION ISOLATION LEVEL Serializable
+GO
+BEGIN TRANSACTION
+GO
+IF @@ERROR <> 0 SET NOEXEC ON
+GO
+PRINT N'Altering [dbo].[usp_getStandardsResultsByCategory]'
+GO
+
+-- =============================================
+-- Author: hansbk
+-- Create date: 8/1/2018
+-- Description: Stub needs completed
+-- =============================================
+ALTER PROCEDURE [dbo].[usp_getStandardsResultsByCategory]
+ @assessment_id int
+AS
+BEGIN
+ -- SET NOCOUNT ON added to prevent extra result sets from
+ -- interfering with SELECT statements.
+ SET NOCOUNT ON;
+ /*
+TODO this needs to take into account requirements vs questions
+get the question set then for all the questions take the total risk (in this set only)
+then calculate the total risk in each question_group_heading(category)
+then calculate the actual percentage of the total risk in each category
+order by the total
+*/
+declare @applicationMode nvarchar(50)
+
+exec dbo.GetApplicationModeDefault @assessment_id, @ApplicationMode output
+
+
+declare @maxRank int
+if(@ApplicationMode = 'Questions Based')
+begin
+ IF OBJECT_ID('tempdb..#Temp') IS NOT NULL DROP TABLE #Temp
+ IF OBJECT_ID('tempdb..#TempAnswered') IS NOT NULL DROP TABLE #TempAnswered
+
+ SELECT s.Set_Name, Question_Group_Heading, Question_Group_Heading_Id, isnull(count(c.question_id),0) qc into #temp
+ FROM Answer_Questions a
+ join NEW_QUESTION c on a.Question_Or_Requirement_Id=c.Question_Id
+ join vQuestion_Headings h on c.Heading_Pair_Id=h.heading_pair_Id
+ join NEW_QUESTION_SETS s on c.Question_Id = s.Question_Id
+ join AVAILABLE_STANDARDS v on s.Set_Name = v.Set_Name
+ join NEW_QUESTION_LEVELS l on s.New_Question_Set_Id = l.New_Question_Set_Id
+ join STANDARD_SELECTION ss on v.Assessment_Id = ss.Assessment_Id
+ join UNIVERSAL_SAL_LEVEL ul on ss.Selected_Sal_Level = ul.Full_Name_Sal
+ where a.Assessment_Id = @assessment_id and a.Answer_Text != 'NA' and v.Selected = 1 and v.Assessment_Id = @assessment_id and l.Universal_Sal_Level = ul.Universal_Sal_Level
+ group by s.Set_Name, Question_Group_Heading, Question_Group_Heading_Id
+
+ insert into #temp (Set_Name, Question_Group_Heading, QC)
+ select a.Set_name,a.Question_Group_Heading, qc=0 from
+ (select * from (select distinct question_group_heading from #temp) a, (select distinct set_name from #temp) b) a
+ left join #temp on a.question_group_heading=#temp.question_group_heading and a.set_name = #temp.set_name
+ where #temp.set_name is null
+
+ SELECT s.Set_Name, Question_Group_Heading, Question_Group_Heading_Id, isnull(count(c.question_id),0) qc into #tempAnswered
+ FROM Answer_Questions a
+ join NEW_QUESTION c on a.Question_Or_Requirement_Id=c.Question_Id
+ join vQuestion_Headings h on c.Heading_Pair_Id=h.heading_pair_Id
+ join NEW_QUESTION_SETS s on c.Question_Id = s.Question_Id
+ join AVAILABLE_STANDARDS v on s.Set_Name = v.Set_Name
+ join NEW_QUESTION_LEVELS l on s.New_Question_Set_Id = l.New_Question_Set_Id
+ join STANDARD_SELECTION ss on v.Assessment_Id = ss.Assessment_Id
+ join UNIVERSAL_SAL_LEVEL ul on ss.Selected_Sal_Level = ul.Full_Name_Sal
+ where a.Assessment_Id = @assessment_id and a.Answer_Text in ('Y','A') and v.Selected = 1 and v.Assessment_Id = @assessment_id and l.Universal_Sal_Level = ul.Universal_Sal_Level
+ group by s.Set_Name, Question_Group_Heading, question_group_Heading_Id
+
+ select t.Set_Name,
+ s.Short_Name,
+ t.Question_Group_Heading,
+ t.Question_Group_Heading_Id as [QGH_Id],
+ isnull(a.qc,0) yaCount,
+ isnull(t.qc,0) Actualcr,
+ round(isnull(cast(a.qc as decimal(18,3))/t.qc,0),5) * 100 [prc]
+ from #temp t left join #tempAnswered a on t.Set_Name = a.Set_Name and t.Question_Group_Heading = a.Question_Group_Heading
+ join [SETS] s on t.Set_Name = s.Set_Name
+ order by Question_Group_Heading desc
+end
+else
+begin
+
+ IF OBJECT_ID('tempdb..#TempR') IS NOT NULL DROP TABLE #TempR
+ IF OBJECT_ID('tempdb..#TempRAnswer') IS NOT NULL DROP TABLE #TempRAnswer
+
+ SELECT s.set_name, c.standard_category, isnull(count(c.Requirement_Id),0) qc into #tempR
+ FROM Answer_Requirements a
+ join NEW_REQUIREMENT c on a.Question_Or_Requirement_Id=c.Requirement_Id
+ join REQUIREMENT_SETS s on c.Requirement_Id = s.Requirement_Id
+ join AVAILABLE_STANDARDS v on s.Set_Name = v.Set_Name
+ where a.Assessment_Id = @assessment_id and v.Assessment_Id = a.Assessment_Id and v.Selected = 1 and a.Answer_Text <> 'NA'
+ group by s.set_name, standard_category
+
+
+ insert into #tempR (Set_Name,standard_category, QC)
+ select a.Set_name,a.standard_category, qc=0 from
+ (select * from (select distinct standard_category from #tempR) a, (select distinct set_name from #tempR) b) a
+ left join #tempR on a.standard_category=#tempR.standard_category and a.set_name = #tempR.set_name
+ where #tempR.set_name is null
+
+ SELECT s.set_name, c.standard_category, count(c.Requirement_Id) qc into #tempRAnswer
+ FROM Answer_Requirements a
+ join NEW_REQUIREMENT c on a.Question_Or_Requirement_Id=c.Requirement_Id
+ join REQUIREMENT_SETS s on c.Requirement_Id = s.Requirement_Id
+ join AVAILABLE_STANDARDS v on s.Set_Name = v.Set_Name
+ where a.Assessment_Id = @assessment_id and v.Assessment_Id = a.Assessment_Id and v.Selected = 1 and a.Answer_Text in ('Y','A')
+ group by s.set_name, standard_category
+
+ select t.Set_Name,
+ s.Short_Name,
+ t.standard_category as [question_group_heading],
+ 0 as [QGH_Id],
+ isnull(a.qc,0) yaCount,
+ isnull(t.qc,0) Actualcr,
+ round(isnull(cast(a.qc as decimal(18,3))/t.qc,0),5) * 100 [prc]
+ from #tempR t
+ left join #tempRAnswer a on t.Set_Name = a.Set_Name and t.Standard_Category = a.Standard_Category
+ join [SETS] s on t.Set_Name = s.Set_Name
+ order by t.standard_category desc
+
+end
+END
+GO
+IF @@ERROR <> 0 SET NOEXEC ON
+GO
+COMMIT TRANSACTION
+GO
+IF @@ERROR <> 0 SET NOEXEC ON
+GO
+-- This statement writes to the SQL Server Log so SQL Monitor can show this deployment.
+IF HAS_PERMS_BY_NAME(N'sys.xp_logevent', N'OBJECT', N'EXECUTE') = 1
+BEGIN
+ DECLARE @databaseName AS nvarchar(2048), @eventMessage AS nvarchar(2048)
+ SET @databaseName = REPLACE(REPLACE(DB_NAME(), N'\', N'\\'), N'"', N'\"')
+ SET @eventMessage = N'Redgate SQL Compare: { "deployment": { "description": "Redgate SQL Compare deployed to ' + @databaseName + N'", "database": "' + @databaseName + N'" }}'
+ EXECUTE sys.xp_logevent 55000, @eventMessage
+END
+GO
+DECLARE @Success AS BIT
+SET @Success = 1
+SET NOEXEC OFF
+IF (@Success = 1) PRINT 'The database update succeeded'
+ELSE BEGIN
+ IF @@TRANCOUNT > 0 ROLLBACK TRANSACTION
+ PRINT 'The database update failed'
+END
+GO
diff --git a/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/SQL/12310_to_12400_data.sql b/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/SQL/12310_to_12400_data.sql
new file mode 100644
index 0000000000..76de96be68
--- /dev/null
+++ b/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/SQL/12310_to_12400_data.sql
@@ -0,0 +1,20525 @@
+/*
+Run this script on:
+
+(localdb)\INLLocalDB2022.CSETWeb12310 - This database will be modified
+
+to synchronize it with:
+
+(localdb)\INLLocalDB2022.CSETWeb12400
+
+You are recommended to back up your database before running this script
+
+Script created by SQL Data Compare version 14.10.9.22680 from Red Gate Software Ltd at 2/18/2025 5:55:56 PM
+
+*/
+
+SET NUMERIC_ROUNDABORT OFF
+GO
+SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, QUOTED_IDENTIFIER, ANSI_NULLS, NOCOUNT ON
+GO
+SET DATEFORMAT YMD
+GO
+SET XACT_ABORT ON
+GO
+SET TRANSACTION ISOLATION LEVEL Serializable
+GO
+BEGIN TRANSACTION
+
+PRINT(N'Drop constraints from [dbo].[REQUIREMENT_SETS]')
+ALTER TABLE [dbo].[REQUIREMENT_SETS] NOCHECK CONSTRAINT [FK_QUESTION_SETS_SETS]
+ALTER TABLE [dbo].[REQUIREMENT_SETS] NOCHECK CONSTRAINT [FK_REQUIREMENT_SETS_NEW_REQUIREMENT]
+
+PRINT(N'Drop constraints from [dbo].[PARAMETER_REQUIREMENTS]')
+ALTER TABLE [dbo].[PARAMETER_REQUIREMENTS] NOCHECK CONSTRAINT [FK_Parameter_Requirements_NEW_REQUIREMENT]
+ALTER TABLE [dbo].[PARAMETER_REQUIREMENTS] NOCHECK CONSTRAINT [FK_Parameter_Requirements_Parameters]
+
+PRINT(N'Drop constraints from [dbo].[NEW_REQUIREMENT]')
+ALTER TABLE [dbo].[NEW_REQUIREMENT] NOCHECK CONSTRAINT [FK_NEW_REQUIREMENT_NCSF_Category]
+ALTER TABLE [dbo].[NEW_REQUIREMENT] NOCHECK CONSTRAINT [FK_NEW_REQUIREMENT_QUESTION_GROUP_HEADING]
+ALTER TABLE [dbo].[NEW_REQUIREMENT] NOCHECK CONSTRAINT [FK_NEW_REQUIREMENT_SETS]
+ALTER TABLE [dbo].[NEW_REQUIREMENT] NOCHECK CONSTRAINT [FK_NEW_REQUIREMENT_STANDARD_CATEGORY]
+
+PRINT(N'Drop constraint FK_FINANCIAL_REQUIREMENTS_NEW_REQUIREMENT from [dbo].[FINANCIAL_REQUIREMENTS]')
+ALTER TABLE [dbo].[FINANCIAL_REQUIREMENTS] NOCHECK CONSTRAINT [FK_FINANCIAL_REQUIREMENTS_NEW_REQUIREMENT]
+
+PRINT(N'Drop constraint FK_NERC_RISK_RANKING_NEW_REQUIREMENT from [dbo].[NERC_RISK_RANKING]')
+ALTER TABLE [dbo].[NERC_RISK_RANKING] NOCHECK CONSTRAINT [FK_NERC_RISK_RANKING_NEW_REQUIREMENT]
+
+PRINT(N'Drop constraint FK_REQUIREMENT_LEVELS_NEW_REQUIREMENT from [dbo].[REQUIREMENT_LEVELS]')
+ALTER TABLE [dbo].[REQUIREMENT_LEVELS] NOCHECK CONSTRAINT [FK_REQUIREMENT_LEVELS_NEW_REQUIREMENT]
+
+PRINT(N'Drop constraint FK_REQUIREMENT_QUESTIONS_SETS_NEW_REQUIREMENT from [dbo].[REQUIREMENT_QUESTIONS_SETS]')
+ALTER TABLE [dbo].[REQUIREMENT_QUESTIONS_SETS] NOCHECK CONSTRAINT [FK_REQUIREMENT_QUESTIONS_SETS_NEW_REQUIREMENT]
+
+PRINT(N'Drop constraint FK_REQUIREMENT_REFERENCE_TEXT_NEW_REQUIREMENT from [dbo].[REQUIREMENT_REFERENCE_TEXT]')
+ALTER TABLE [dbo].[REQUIREMENT_REFERENCE_TEXT] NOCHECK CONSTRAINT [FK_REQUIREMENT_REFERENCE_TEXT_NEW_REQUIREMENT]
+
+PRINT(N'Drop constraint FK_REQUIREMENT_REFERENCES_NEW_REQUIREMENT from [dbo].[REQUIREMENT_REFERENCES]')
+ALTER TABLE [dbo].[REQUIREMENT_REFERENCES] NOCHECK CONSTRAINT [FK_REQUIREMENT_REFERENCES_NEW_REQUIREMENT]
+
+PRINT(N'Drop constraints from [dbo].[MATURITY_REFERENCES]')
+ALTER TABLE [dbo].[MATURITY_REFERENCES] NOCHECK CONSTRAINT [FK_MATURITY_REFERENCES_GEN_FILE]
+ALTER TABLE [dbo].[MATURITY_REFERENCES] NOCHECK CONSTRAINT [FK_MATURITY_REFERENCES_MATURITY_QUESTIONS]
+
+PRINT(N'Drop constraints from [dbo].[ISE_ACTIONS]')
+ALTER TABLE [dbo].[ISE_ACTIONS] NOCHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MAT_QUESTION_ID]
+
+PRINT(N'Drop constraints from [dbo].[GEN_FILE_LIB_PATH_CORL]')
+ALTER TABLE [dbo].[GEN_FILE_LIB_PATH_CORL] NOCHECK CONSTRAINT [FK_GEN_FILE_LIB_PATH_CORL_GEN_FILE]
+ALTER TABLE [dbo].[GEN_FILE_LIB_PATH_CORL] NOCHECK CONSTRAINT [FK_GEN_FILE_LIB_PATH_CORL_REF_LIBRARY_PATH]
+
+PRINT(N'Drop constraints from [dbo].[GALLERY_GROUP_DETAILS]')
+ALTER TABLE [dbo].[GALLERY_GROUP_DETAILS] NOCHECK CONSTRAINT [FK_GALLERY_GROUP_DETAILS_GALLERY_GROUP]
+ALTER TABLE [dbo].[GALLERY_GROUP_DETAILS] NOCHECK CONSTRAINT [FK_GALLERY_GROUP_DETAILS_GALLERY_ITEM]
+
+PRINT(N'Drop constraints from [dbo].[FILE_KEYWORDS]')
+ALTER TABLE [dbo].[FILE_KEYWORDS] NOCHECK CONSTRAINT [FILE_KEYWORDS_GEN_FILE_FK]
+
+PRINT(N'Drop constraints from [dbo].[SETS]')
+ALTER TABLE [dbo].[SETS] NOCHECK CONSTRAINT [FK_SETS_Sets_Category]
+
+PRINT(N'Drop constraint FK_AVAILABLE_STANDARDS_SETS from [dbo].[AVAILABLE_STANDARDS]')
+ALTER TABLE [dbo].[AVAILABLE_STANDARDS] NOCHECK CONSTRAINT [FK_AVAILABLE_STANDARDS_SETS]
+
+PRINT(N'Drop constraint FK_CUSTOM_STANDARD_BASE_STANDARD_SETS from [dbo].[CUSTOM_STANDARD_BASE_STANDARD]')
+ALTER TABLE [dbo].[CUSTOM_STANDARD_BASE_STANDARD] NOCHECK CONSTRAINT [FK_CUSTOM_STANDARD_BASE_STANDARD_SETS]
+
+PRINT(N'Drop constraint FK_CUSTOM_STANDARD_BASE_STANDARD_SETS1 from [dbo].[CUSTOM_STANDARD_BASE_STANDARD]')
+ALTER TABLE [dbo].[CUSTOM_STANDARD_BASE_STANDARD] NOCHECK CONSTRAINT [FK_CUSTOM_STANDARD_BASE_STANDARD_SETS1]
+
+PRINT(N'Drop constraint FK_MODES_MATURITY_MODELS_SETS from [dbo].[MODES_SETS_MATURITY_MODELS]')
+ALTER TABLE [dbo].[MODES_SETS_MATURITY_MODELS] NOCHECK CONSTRAINT [FK_MODES_MATURITY_MODELS_SETS]
+
+PRINT(N'Drop constraint FK_NEW_QUESTION_SETS_SETS from [dbo].[NEW_QUESTION_SETS]')
+ALTER TABLE [dbo].[NEW_QUESTION_SETS] NOCHECK CONSTRAINT [FK_NEW_QUESTION_SETS_SETS]
+
+PRINT(N'Drop constraint FK_REPORT_STANDARDS_SELECTION_SETS from [dbo].[REPORT_STANDARDS_SELECTION]')
+ALTER TABLE [dbo].[REPORT_STANDARDS_SELECTION] NOCHECK CONSTRAINT [FK_REPORT_STANDARDS_SELECTION_SETS]
+
+PRINT(N'Drop constraint FK_REQUIREMENT_QUESTIONS_SETS_SETS from [dbo].[REQUIREMENT_QUESTIONS_SETS]')
+ALTER TABLE [dbo].[REQUIREMENT_QUESTIONS_SETS] NOCHECK CONSTRAINT [FK_REQUIREMENT_QUESTIONS_SETS_SETS]
+
+PRINT(N'Drop constraint FK_SECTOR_STANDARD_RECOMMENDATIONS_SETS from [dbo].[SECTOR_STANDARD_RECOMMENDATIONS]')
+ALTER TABLE [dbo].[SECTOR_STANDARD_RECOMMENDATIONS] NOCHECK CONSTRAINT [FK_SECTOR_STANDARD_RECOMMENDATIONS_SETS]
+
+PRINT(N'Drop constraint FK_SET_FILES_SETS from [dbo].[SET_FILES]')
+ALTER TABLE [dbo].[SET_FILES] NOCHECK CONSTRAINT [FK_SET_FILES_SETS]
+
+PRINT(N'Drop constraint FK_STANDARD_CATEGORY_SEQUENCE_SETS from [dbo].[STANDARD_CATEGORY_SEQUENCE]')
+ALTER TABLE [dbo].[STANDARD_CATEGORY_SEQUENCE] NOCHECK CONSTRAINT [FK_STANDARD_CATEGORY_SEQUENCE_SETS]
+
+PRINT(N'Drop constraint FK_Standard_Source_File_SETS from [dbo].[STANDARD_SOURCE_FILE]')
+ALTER TABLE [dbo].[STANDARD_SOURCE_FILE] NOCHECK CONSTRAINT [FK_Standard_Source_File_SETS]
+
+PRINT(N'Drop constraint FK_UNIVERSAL_SUB_CATEGORY_HEADINGS_SETS from [dbo].[UNIVERSAL_SUB_CATEGORY_HEADINGS]')
+ALTER TABLE [dbo].[UNIVERSAL_SUB_CATEGORY_HEADINGS] NOCHECK CONSTRAINT [FK_UNIVERSAL_SUB_CATEGORY_HEADINGS_SETS]
+
+PRINT(N'Drop constraint FK_ASSESSMENT_PARAMETERS_PARAMETERS from [dbo].[PARAMETER_ASSESSMENT]')
+ALTER TABLE [dbo].[PARAMETER_ASSESSMENT] NOCHECK CONSTRAINT [FK_ASSESSMENT_PARAMETERS_PARAMETERS]
+
+PRINT(N'Drop constraint FK_PARAMETER_VALUES_PARAMETERS from [dbo].[PARAMETER_VALUES]')
+ALTER TABLE [dbo].[PARAMETER_VALUES] NOCHECK CONSTRAINT [FK_PARAMETER_VALUES_PARAMETERS]
+
+PRINT(N'Drop constraints from [dbo].[MATURITY_QUESTIONS]')
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] NOCHECK CONSTRAINT [FK__MATURITY___Matur__5B638405]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] NOCHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_GROUPINGS]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] NOCHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_LEVELS]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] NOCHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_MODELS]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] NOCHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_OPTIONS]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] NOCHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_QUESTION_TYPES]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] NOCHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_QUESTIONS]
+
+PRINT(N'Drop constraint FK__HYDRO_DAT__Mat_Q__38652BE2 from [dbo].[HYDRO_DATA]')
+ALTER TABLE [dbo].[HYDRO_DATA] NOCHECK CONSTRAINT [FK__HYDRO_DAT__Mat_Q__38652BE2]
+
+PRINT(N'Drop constraint FK_MATURITY_ANSWER_OPTIONS_MATURITY_QUESTIONS1 from [dbo].[MATURITY_ANSWER_OPTIONS]')
+ALTER TABLE [dbo].[MATURITY_ANSWER_OPTIONS] NOCHECK CONSTRAINT [FK_MATURITY_ANSWER_OPTIONS_MATURITY_QUESTIONS1]
+
+PRINT(N'Drop constraint fk_mat_questions from [dbo].[MATURITY_EXTRA]')
+ALTER TABLE [dbo].[MATURITY_EXTRA] NOCHECK CONSTRAINT [fk_mat_questions]
+
+PRINT(N'Drop constraint FK_MATURITY_QUESTION_PROPS_MATURITY_QUESTIONS from [dbo].[MATURITY_QUESTION_PROPS]')
+ALTER TABLE [dbo].[MATURITY_QUESTION_PROPS] NOCHECK CONSTRAINT [FK_MATURITY_QUESTION_PROPS_MATURITY_QUESTIONS]
+
+PRINT(N'Drop constraint FK_MATURITY_REFERENCE_TEXT_MATURITY_QUESTIONS from [dbo].[MATURITY_REFERENCE_TEXT]')
+ALTER TABLE [dbo].[MATURITY_REFERENCE_TEXT] NOCHECK CONSTRAINT [FK_MATURITY_REFERENCE_TEXT_MATURITY_QUESTIONS]
+
+PRINT(N'Drop constraint FK_MATURITY_SUB_MODEL_QUESTIONS_MATURITY_QUESTIONS from [dbo].[MATURITY_SUB_MODEL_QUESTIONS]')
+ALTER TABLE [dbo].[MATURITY_SUB_MODEL_QUESTIONS] NOCHECK CONSTRAINT [FK_MATURITY_SUB_MODEL_QUESTIONS_MATURITY_QUESTIONS]
+
+PRINT(N'Drop constraint FK_TTP_MAT_QUESTION_MATURITY_QUESTIONS from [dbo].[TTP_MAT_QUESTION]')
+ALTER TABLE [dbo].[TTP_MAT_QUESTION] NOCHECK CONSTRAINT [FK_TTP_MAT_QUESTION_MATURITY_QUESTIONS]
+
+PRINT(N'Drop constraints from [dbo].[GEN_FILE]')
+ALTER TABLE [dbo].[GEN_FILE] NOCHECK CONSTRAINT [FK_GEN_FILE_FILE_REF_KEYS]
+ALTER TABLE [dbo].[GEN_FILE] NOCHECK CONSTRAINT [FK_GEN_FILE_FILE_TYPE]
+
+PRINT(N'Drop constraint FK_REQUIREMENT_REFERENCES_GEN_FILE from [dbo].[REQUIREMENT_REFERENCES]')
+ALTER TABLE [dbo].[REQUIREMENT_REFERENCES] NOCHECK CONSTRAINT [FK_REQUIREMENT_REFERENCES_GEN_FILE]
+
+PRINT(N'Drop constraint FK_SET_FILES_GEN_FILE from [dbo].[SET_FILES]')
+ALTER TABLE [dbo].[SET_FILES] NOCHECK CONSTRAINT [FK_SET_FILES_GEN_FILE]
+
+PRINT(N'Drop constraint FK_ASSESSMENTS_GALLERY_ITEM from [dbo].[ASSESSMENTS]')
+ALTER TABLE [dbo].[ASSESSMENTS] NOCHECK CONSTRAINT [FK_ASSESSMENTS_GALLERY_ITEM]
+
+PRINT(N'Delete rows from [dbo].[MATURITY_REFERENCES]')
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 172 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 172 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 174 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 177 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 178 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 178 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 181 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 183 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 183 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 185 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 190 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 199 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 200 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 200 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 203 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 204 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 205 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 209 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 214 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 215 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 217 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 218 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 218 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 219 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 219 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 221 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 223 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 224 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 236 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 246 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 250 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 253 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 253 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 254 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 254 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 279 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 283 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 284 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 290 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 292 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 294 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 295 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 295 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 299 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 304 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 313 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 314 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 325 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 326 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 332 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 343 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 347 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 358 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 358 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 362 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 364 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 364 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 370 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 371 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 376 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 376 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 377 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 389 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 390 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 391 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 392 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 393 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 394 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 395 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 398 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-7' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 399 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 399 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 399 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 401 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 402 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 403 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 403 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 404 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 406 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 412 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 420 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 427 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 432 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 434 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 435 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 436 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 441 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 445 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 448 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 454 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 455 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 462 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-8' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 462 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 466 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 471 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 488 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 493 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 494 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 495 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-7' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 496 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 498 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 499 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 500 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 523 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 528 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 529 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 532 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 534 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 535 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 535 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 540 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 549 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 559 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 560 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 563 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 579 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 579 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 588 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 588 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 588 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 597 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 601 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 602 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 605 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 606 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 611 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 623 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 623 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 625 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 625 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 625 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 626 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 626 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.RP-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 627 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 629 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 629 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 632 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 632 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 635 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 635 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 635 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 635 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 635 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 635 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 641 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 643 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 644 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 646 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 651 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 651 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 653 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 655 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 656 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 656 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 656 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 662 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-1' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 7586 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'I, B, b' AND [Source] = 1
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 7589 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'I, B, 2, b' AND [Source] = 1
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 7643 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'I, B, b' AND [Source] = 1
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 7656 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'I, B, 2, b' AND [Source] = 1
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 9918 AND [Gen_File_Id] = 6112 AND [Section_Ref] = N'(b)(2)' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 9918 AND [Gen_File_Id] = 6112 AND [Section_Ref] = N'(c)(1)' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 9919 AND [Gen_File_Id] = 6112 AND [Section_Ref] = N'(c)' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 9920 AND [Gen_File_Id] = 6112 AND [Section_Ref] = N'(c)' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 9922 AND [Gen_File_Id] = 6112 AND [Section_Ref] = N'(b)(2)' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 9923 AND [Gen_File_Id] = 6112 AND [Section_Ref] = N'(c)(1)' AND [Source] = 0
+DELETE FROM [dbo].[MATURITY_REFERENCES] WHERE [Mat_Question_Id] = 9924 AND [Gen_File_Id] = 6112 AND [Section_Ref] = N'(c)(1)' AND [Source] = 0
+PRINT(N'Operation applied to 171 rows out of 171')
+
+PRINT(N'Delete row from [dbo].[GALLERY_GROUP_DETAILS]')
+DELETE FROM [dbo].[GALLERY_GROUP_DETAILS] WHERE [Group_Detail_Id] = 99
+
+PRINT(N'Delete rows from [dbo].[ASSESSMENT_DETAIL_FILTER_DATA]')
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11477'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12354'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12527'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14081'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14196'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14421'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14792'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15240'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15263'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15614'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15779'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16209'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16453'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17415'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18454'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19158'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20719'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22581'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24273'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24585'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24830'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3313'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3653'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4233'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6072'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61634'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61696'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61791'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62659'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62799'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63340'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63672'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65168'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65664'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65932'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65955'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66406'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66444'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66880'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6690'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67490'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67796'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68726'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7772'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7927'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95015'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96787'
+PRINT(N'Operation applied to 51 rows out of 51')
+
+PRINT(N'Update rows in [dbo].[NEW_REQUIREMENT]')
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36409
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36417
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36419
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36429
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36439
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36442
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36444
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36445
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36479
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36484
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36487
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36491
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36494
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36497
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Original_Set_Name]=N'Florida_NCSF_V2' WHERE [Requirement_Id] = 36503
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+OT Systems Only:
+The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems. OT access by vendors and maintenance staff can occur over a very large facility footprint or geographic area and into unobserved spaces such as mechanical/electrical rooms, ceilings, floors, field substations, switch and valve vaults, and pump stations.
[OT Systems Only: Implementation Statement]
+
+Related Controls: IA-1, PM-9, PM-24, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems. OT access by vendors and maintenance staff can occur over a large facility footprint or geographic area and into unobserved spaces, such as mechanical or electrical rooms, ceilings, floors, field substations, switch and valve vaults, and pump stations.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Access Control Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
+
+1. [Selection (one or more): Organization-level; Mission/business process-level; System level] access control policy that:
+(a) Addresses purpose, scope, roles, responsibilities, management commitment,
+coordination among organizational entities, and compliance; and
+(b) Is consistent with applicable laws, executive orders, directives, regulations, policies,
+standards, and guidelines; and
+
+2. Procedures to facilitate the implementation of the access control policy and the
+associated access controls;
+b. Designate an [Assignment: organization-defined official] to manage the development,
+documentation, and dissemination of the access control policy and procedures; and
+c. Review and update the current access control:
+1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
+2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
+
Discussion:Access control policy and procedures address the controls in the AC family that are
implemented within systems and organizations. The risk management strategy is an important
factor in establishing such policies and procedures. Policies and procedures contribute to security
and privacy assurance. Therefore, it is important that security and privacy programs collaborate
on the development of access control policy and procedures. Security and privacy program
policies and procedures at the organization level are preferable, in general, and may obviate the
need for mission- or system-specific policies and procedures. The policy can be included as part
of the general security and privacy policy or be represented by multiple policies reflecting the
complex nature of organizations. Procedures can be established for security and privacy
programs, for mission or business processes, and for systems, if needed. Procedures describe
how the policies or controls are implemented and can be directed at the individual or role that is
the object of the procedure. Procedures can be documented in system security and privacy plans
or in one or more separate documents. Events that may precipitate an update to access control
policy and procedures include assessment or audit findings, security incidents or breaches, or
changes in laws, executive orders, directives, regulations, policies, standards, and guidelines.
Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37523
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Limit the number of concurrent sessions for each system account and/or account type to one session for both general and privileged users, unless documented in the SSP and approved by the AO.
[Implementation Statement]
+
+OT Systems Only:
+The number, account type, and privileges of concurrent sessions considers the roles and responsibilities of the affected individuals. Example compensating controls include providing increased auditing measures.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SC-23
+
+NIST 800-82 Rev 3:
+OT Discussion: The number, account type, and privileges of concurrent sessions consider the roles and responsibilities of the affected individuals. Example compensating controls include providing increased auditing measures.
[NIST 800-82 Rev 3: Implementation Statement]
', [Supplemental_Info]=N'Concurrent Session Control
Limit the number of concurrent sessions for each [Assignment: organization-defined account and/or account type] to [Assignment: organization-defined number].
Discussion:Organizations may define the maximum number of concurrent sessions for system accounts globally, by account type, by account, or any combination thereof. For example, organizations may limit the number of concurrent sessions for system administrators or other individuals working in particularly sensitive domains or mission-critical applications. Concurrent session control addresses concurrent sessions for system accounts. It does not, however, address concurrent sessions by single users via multiple system accounts.' WHERE [Requirement_Id] = 37524
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Prevent further access to the system by automatically initiating a device lock after 15 minutes of inactivity.
[a: Implementation Statement]
+b. Retain the device lock until the user reestablishes access using established identification and authentication procedures.
[b: Implementation Statement]
+
+OT Systems Only:
+This control assumes a staffed environment where users interact with system displays. This control may be tailored appropriately where systems do not have displays configured, systems are placed in an access-controlled facility or locked enclosure, or immediate operator response is required in emergency situations. Example compensating controls include locating the display in an area with physical access controls that limit access to individuals with permission and need-to-know for the displayed information.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-7, IA-11, PL-4
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: This control assumes a staffed environment where users interact with system displays. This control may be tailored appropriately where systems do not have displays configured, systems are placed in an access-controlled facility or locked enclosure, or immediate operator response is required in emergency situations. Example compensating controls include locating the display in an area with physical access controls that limit access to individuals with permission and need-to-know for the displayed information.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Device Lock
a. Prevent further access to the system by [Selection (one or more): initiating a device lock after [Assignment: organization-defined time period] of inactivity; requiring the user to initiate a device lock before leaving the system unattended]; and
b. Retain the device lock until the user reestablishes access using established identification and authentication procedures.
Discussion:Device locks are temporary actions taken to prevent logical access to organizational systems when users stop work and move away from the immediate vicinity of those systems but do not want to log out because of the temporary nature of their absences. Device locks can be implemented at the operating system level or at the application level. A proximity lock may be used to initiate the device lock (e.g., via a Bluetooth-enabled device or dongle). User-initiated device locking is behavior or policy-based and, as such, requires users to take physical action to initiate the device lock. Device locks are not an acceptable substitute for logging out of systems, such as when organizations require users to log out at the end of workdays.' WHERE [Requirement_Id] = 37525
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Conceal, via the device lock, information previously visible on the display with a publicly viewable image.
[Implementation Statement]
+
+OT Systems Only:
+Physical protection may be employed to prevent access to a display or prevent attachment of a display. In situations where the OT cannot conceal displayed information, the organization employs nonautomated mechanisms or procedures as compensating controls in accordance with the general tailoring guidance.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Physical protection may be employed to prevent access to a display or the attachment of a display. When the OT cannot conceal displayed information, the organization employs nonautomated mechanisms or procedures as compensating controls in accordance with the general tailoring guidance.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Device Lock | Pattern-hiding Displays
Conceal, via the device lock, information previously visible on the display with a publicly viewable image.
Discussion:The pattern-hiding display can include static or dynamic images, such as patterns used with screen savers, photographic images, solid colors, clock, battery life indicator, or a blank screen with the caveat that controlled unclassified information is not displayed.' WHERE [Requirement_Id] = 37526
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Automatically terminate a user session when it has been idle for more than 15 minutes, as a result of a targeted response to certain types of incidents, or time-of-day restrictions on system use as documented in the SSP.
[Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include providing increased auditing measures or limiting remote access privileges to key personnel.
[OT Systems Only: Implementation Statement]
+
+Related Controls: MA-4, SC-10, SC-23
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include providing increased auditing measures or limiting remote access privileges to key personnel.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Session Termination
Automatically terminate a user session after [Assignment: organization-defined conditions or trigger events requiring session disconnect].
Discussion:Session termination addresses the termination of user-initiated logical sessions (in contrast to SC-10, which addresses the termination of network connections associated with communications sessions (i.e., network disconnect)). A logical session (for local, network, and remote access) is initiated whenever a user (or process acting on behalf of a user) accesses an organizational system. Such user sessions can be terminated without terminating network sessions. Session termination ends all processes associated with a user’s logical session except for those processes that are specifically created by the user (i.e., session owner) to continue after the session is terminated. Conditions or trigger events that require automatic termination of the session include organization-defined periods of user inactivity, targeted responses to certain types of incidents, or time-of-day restrictions on system use.' WHERE [Requirement_Id] = 37527
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Actions permitted within information systems or networks that do not require identification and authentication are:
[a: Implementation Statement]
+ i) General user and general public access to public websites or other publicly accessible WMATA systems, not otherwise protected by security controls; or
[a.i: Implementation Statement]
+ ii) Other defined and approved use cases.
[a.ii: Implementation Statement]
+b. System/business owners must identify and provide justification in the Account Management Plan user actions that can be performed on systems not requiring identification and authentication. Justification must specify the following:
[b: Implementation Statement]
+ i) Actions that can be performed on the information system without identification and authentication limited to the extent necessary to accomplish Mission/Business Objectives;
[b.i: Implementation Statement]
+ ii) Identification of the responsible entity for ensuring access control and monitoring is conducted;
[b.ii: Implementation Statement]
+ iii) Supporting rationale for not requiring identification and authentication; and
[b.iii: Implementation Statement]
+ iv) Identification of compensating security controls at the directory and file level for all application specific and system accounts which do not require authentication. Implement only using least privilege, with access given only to necessary directories and files.
[b.iv: Implementation Statement]
+
+Related Controls: AC-8, IA-2, PL-2
+
+
+', [Supplemental_Info]=N'Permitted Actions Without Identification or Authentication
a. Identify [Assignment: organization-defined user actions] that can be performed on the system without identification or authentication consistent with organizational mission and business functions; and
b. Document and provide supporting rationale in the security plan for the system, user actions not requiring identification or authentication.
Discussion:Specific user actions may be permitted without identification or authentication if organizations determine that identification and authentication are not required for the specified user actions. Organizations may allow a limited number of user actions without identification or authentication, including when individuals access public websites or other publicly accessible federal systems, when individuals use mobile phones to receive calls, or when facsimiles are received. Organizations identify actions that normally require identification or authentication but may, under certain circumstances, allow identification or authentication mechanisms to be bypassed. Such bypasses may occur, for example, via a software-readable physical switch that commands bypass of the logon functionality and is protected from accidental or unmonitored use. Permitting actions without identification or authentication does not apply to situations where identification and authentication have already occurred and are not repeated but rather to situations where identification and authentication have not yet occurred. Organizations may decide that there are no user actions that can be performed on organizational systems without identification and authentication, and therefore, the value for the assignment operation can be “none.”' WHERE [Requirement_Id] = 37528
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish and document usage restrictions, configuration/connection requirements, and implementation guidance for each type of remote access allowed; and
[a: Implementation Statement]
+b. Authorize each type of remote access to the system prior to allowing such connections. Such connections shall include, but are not limited to:
[b: Implementation Statement]
+ i) For access to the WMATA network, users shall leverage Secure Socket Layer (SSL) VPN, IPSec VPN, or an alternate Virtual Infrastructure as approved by the AO under the following use cases:
[b.i: Implementation Statement]
+ (1) Third-party vendors who require access to WMATA systems and networks;
[b.i.1: Implementation Statement]
+ (2) Personnel or systems requiring secure Site-to-site connection;
[b.i.2: Implementation Statement]
+ (3) Users not using WMATA corporate systems; and
[b.i.3: Implementation Statement]
+ (4) Privileged remote access users
[b.i.4: Implementation Statement]
+ ii) Multi-factor Authentication (MFA) is required for remote access.
[b.ii: Implementation Statement]
+ iii) Data shall not be transferred from Virtual Infrastructure to a local device.
[b.iii: Implementation Statement]
+
+OT Systems Only:
+In situations where the OT cannot implement any or all of the components of this control, the organization employs other mechanisms or procedures as compensating controls in accordance with the general tailoring practice.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-4, AC-18, AC-19, AC-20, CA-3, CM-10, IA-2, IA-3, IA-8, MA-4, PE-17, PL-2, PL-4, SC-10, SC-12, SC-13, SI-4
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: When the OT cannot implement any or all of the components of this control, the organization employs other mechanisms or procedures as compensating controls in accordance with the general tailoring guidance.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Remote Access
a. Establish and document usage restrictions, configuration/connection requirements, and implementation guidance for each type of remote access allowed; and
b. Authorize each type of remote access to the system prior to allowing such connections.
Discussion:Remote access is access to organizational systems (or processes acting on behalf of users) that communicate through external networks such as the Internet. Types of remote access include dial-up, broadband, and wireless. Organizations use encrypted virtual private networks (VPNs) to enhance confidentiality and integrity for remote connections. The use of encrypted VPNs provides sufficient assurance to the organization that it can effectively treat such connections as internal networks if the cryptographic mechanisms used are implemented in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Still, VPN connections traverse external networks, and the encrypted VPN does not enhance the availability of remote connections. VPNs with encrypted tunnels can also affect the ability to adequately monitor network communications traffic for malicious code. Remote access controls apply to systems other than public web servers or systems designed for public access. Authorization of each remote access type addresses authorization prior to allowing remote access without specifying the specific formats for such authorization. While organizations may use information exchange and system connection security agreements to manage remote access connections to other systems, such agreements are addressed as part of CA-3. Enforcing access restrictions for remote access is addressed via AC-3.' WHERE [Requirement_Id] = 37529
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ automated mechanisms to monitor and control remote access methods.
[Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include employing nonautomated mechanisms or procedures as compensating controls. Compensating controls could include limiting remote access to a specified period of time or placing a call from the OT site to the authenticated remote entity.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-2, AU-6, AU-12
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include employing nonautomated mechanisms or procedures as compensating controls. Compensating controls could include limiting remote access to a specified period of time or placing a call from the OT site to the authenticated remote entity.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Remote Access | Monitoring and Control
Employ automated mechanisms to monitor and control remote access methods.
Discussion:Monitoring and control of remote access methods allows organizations to detect attacks and help ensure compliance with remote access policies by auditing the connection activities of remote users on a variety of system components, including servers, notebook computers, workstations, smart phones, and tablets. Audit logging for remote access is enforced by AU-2. Audit events are defined in AU-2a.' WHERE [Requirement_Id] = 37530
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement [Assignment: organization-defined mechanisms] to authenticate [Assignment: organization-defined remote commands].
[Implementation Statement]
+
+Related Controls: SC-12, SC-13, SC-23
+
+NIST 800-82 Rev 3:
+Rationale for adding AC-17 (10) to MOD and HIGH baselines: The ability to authenticate remote commands is important to prevent unauthorized commands that may have immediate or serious consequences, such as injury, death, property damage, the loss of high-value assets, the failure of mission or business functions, or compromise of sensitive information.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Remote Access | Authenticate Remote Commands
Implement [Assignment: organization-defined mechanisms] to authenticate [Assignment: organization-defined remote commands].
Discussion:Authenticating remote commands protects against unauthorized commands and the replay of authorized commands. The ability to authenticate remote commands is important for remote systems for which loss, malfunction, misdirection, or exploitation would have immediate or serious consequences, such as injury, death, property damage, loss of high value assets, failure of mission or business functions, or compromise of classified or controlled unclassified information. Authentication mechanisms for remote commands ensure that systems accept and execute commands in the order intended, execute only authorized commands, and reject unauthorized commands. Cryptographic mechanisms can be used, for example, to authenticate remote commands.' WHERE [Requirement_Id] = 37531
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement cryptographic mechanisms to protect the confidentiality and integrity of remote access sessions.
[Implementation Statement]
+
+OT Systems Only:
+Encryption-based technologies should be used to support the confidentiality and integrity of remote access sessions. While OT devices often lack the ability to support modern encryption, additional devices (e.g., VPNs) can be added to support these features.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SC-8, SC-12, SC-13
+
+NIST 800-82 Rev 3:
+OT Discussion: Encryption-based technologies should be used to support the confidentiality and integrity of remote access sessions. While OT devices often lack the ability to support modern encryption, additional devices (e.g., VPNs) can be added to support these features. This control should not be confused with SC-8 – Transmission Confidentiality and Integrity, which discusses confidentiality and integrity requirements for general communications, including between OT devices.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Remote Access | Protection of Confidentiality and Integrity Using Encryption
Implement cryptographic mechanisms to protect the confidentiality and integrity of remote access sessions.
Discussion:Virtual private networks can be used to protect the confidentiality and integrity of remote access sessions. Transport Layer Security (TLS) is an example of a cryptographic protocol that provides end-to-end communications security over networks and is used for Internet communications and online transactions.' WHERE [Requirement_Id] = 37532
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Route remote accesses through authorized and managed network access control points.
[Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include connection-specific manual authentication of the remote entity.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SC-7
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include connection-specific manual authentication of the remote entity.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Remote Access | Managed Access Control Points
Route remote accesses through authorized and managed network access control points.
Discussion:Organizations consider the Trusted Internet Connections (TIC) initiative [DHS TIC] requirements for external network connections since limiting the number of access control points for remote access reduces attack surfaces.' WHERE [Requirement_Id] = 37533
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Authorize the execution of privileged commands and access to security-relevant information via remote access only in a format that provides assessable evidence and for the following needs:
[Implementation Statement]
+
+(1) Administrators (security or system) managing devices in a secure zone via an AO- approved dedicated host (e.g., Virtual Desktop Infrastructure (VDI), jump server, or bastion host); and
[1: Implementation Statement]
+(2) Document the rationale for remote access in the security plan for the system.
[2: Implementation Statement]
+
+Related Controls: AC-6, SC-12, SC-13
+
+
+
+', [Supplemental_Info]=N' Privileged Commands and Access
(a) Authorize the execution of privileged commands and access to security-relevant information via remote access only in a format that provides assessable evidence and for the following needs: [Assignment: organization-defined needs]; and
(b) Document the rationale for remote access in the security plan for the system.
Discussion:Remote access to systems represents a significant potential vulnerability that can be exploited by adversaries. As such, restricting the execution of privileged commands and access to security-relevant information via remote access reduces the exposure of the organization and the susceptibility to threats by adversaries to the remote access capability.' WHERE [Requirement_Id] = 37534
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide the capability to disconnect or disable remote access to the system within [Assignment: organization-defined time period].
[Implementation Statement]
+
+OT Systems Only:
+Implementation of the remote access disconnect should not impact OT operations. OT personnel should be trained on how to use the remote access disconnect.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Implementation of the remote access disconnect should not impact OT operations. OT personnel should be trained on how to use the remote access disconnect.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding AC-17 (9) to LOW, MOD, and HIGH baselines: As more OT systems become accessible remotely, the capability to disconnect or disable remote access is critical to managing risk and may be required to provide stable and safe operations.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Remote Access | Disconnect or Disable Access
Provide the capability to disconnect or disable remote access to the system within [Assignment: organization-defined time period].
Discussion:The speed of system disconnect or disablement varies based on the criticality of missions or business functions and the need to eliminate immediate or future remote access to systems.' WHERE [Requirement_Id] = 37535
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish and document configuration requirements, connection requirements, and implementation guidance for each type of wireless access; and
[a: Implementation Statement]
+b. The AO shall authorize each type of wireless access to the system prior to allowing such connections.
[b: Implementation Statement]
+c. The following wireless technologies are prohibited in the WMATA environment unless otherwise authorized by the CISO:
[c: Implementation Statement]
+ i) Microwave;
[c.i: Implementation Statement]
+ ii) Packet radio (ultra-high frequency, very high frequency, satellite communications, and Internet of Things (IoT) wireless radio frequency);
[c.ii: Implementation Statement]
+ iii) 802.11 technologies;
[c.iii: Implementation Statement]
+ iv) Bluetooth in accordance with NIST SP 800-121 Rev. 2, Guide to Bluetooth Security; and
[c.iv: Implementation Statement]
+ v) Cellular
[c.v: Implementation Statement]
+d. No other forms of hotspots (e.g., Windows 10 as a hotspot) shall be permitted.
[d: Implementation Statement]
+e. Tethering shall only be permitted between WMATA issued devices. Devices with network access used for tethering shall be on the WMATA corporate network.
[e: Implementation Statement]
+f. In addition, the following requirements shall be met in the deployment, configuration, administration of wireless networks:
[f: Implementation Statement]
+ i) Wireless network design and implementation must incorporate WIPS.
[f.i: Implementation Statement]
+ ii) Only wireless access points authorized by the AO shall be connected to an internal WMATA network.
[f.ii: Implementation Statement]
+ iii) Only WMATA-owned or leased equipment with installed authentication certificates shall be permitted access to an internal WLAN. Systems and devices without approved authentication certificates shall be restricted to the WMATA guest network.
[f.iii: Implementation Statement]
+ iv) With the exception of public and guest wireless access, all wireless networks shall use authentication protocols that provide authenticator protection and mutual authentication.
[f.iv: Implementation Statement]
+ v) Contractors, vendors and visitors to WMATA facilities permitted to use personal or non- WMATA issued devices shall be restricted to the WMATA guest network.
[f.v: Implementation Statement]
+ vi) All system configurations shall be hardened using DISA STIGs as specified in Control 3.4 Configuration Management, Section 6, “CM-6 Configuration Settings.”
[f.iv: Implementation Statement]
+
+OT Systems Only:
+In situations where OT cannot implement any or all of the components of this control, the organization employs other mechanisms or procedures as compensating controls in accordance with eh the general tailoring guidance.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-17, AC-19, CA-9, CM-6, CM-7, IA-2, IA-3, IA-8, PL-4, SI-4
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: When OT cannot implement any or all of the components of this control, the organization employs other mechanisms or procedures as compensating controls in accordance with the general tailoring guidance.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Wireless Access
a. Establish configuration requirements, connection requirements, and implementation guidance for each type of wireless access; and
b. Authorize each type of wireless access to the system prior to allowing such connections.
Discussion:Wireless technologies include microwave, packet radio (ultra-high frequency or very high frequency), 802.11x, and Bluetooth. Wireless networks use authentication protocols that provide authenticator protection and mutual authentication.' WHERE [Requirement_Id] = 37536
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Protect wireless access to the system using authentication of devices leveraging requirements in accordance with Control 3.17 System and Communications Protection, Section 10, “SC-13 Cryptographic Protection”; and
[1: Implementation Statement]
+(2) Enhance the protection of wireless access to the system using authentication of users if deemed necessary by the AO
[2: Implementation Statement]
+
+OT Systems Only:
+Implementation of authentication and encryption is driven by the OT environment. There are some scenarios where devices and users cannot all be authenticated and encrypted due to operational or technology constraints. In such scenarios, compensating controls include providing increased auditing for wireless access, limiting wireless access privileges to key personnel, or using AC-18 (5) to reduce the boundary of wireless access.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SC-8, SC-12, SC-13
+
+NIST 800-82 Rev 3:
+OT Discussion: The implementation of authentication and encryption is driven by the OT environment. If devices and users cannot all be authenticated and encrypted due to operational or technology constraints, compensating controls include providing increased auditing for wireless access, limiting wireless access privileges to key personnel, or using AC-18 (5) to reduce the boundary of wireless access.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Wireless Access | Authentication and Encryption
Protect wireless access to the system using authentication of [Selection (one or more): users; devices] and encryption.
Discussion:Wireless networking capabilities represent a significant potential vulnerability that can be exploited by adversaries. To protect systems with wireless access points, strong authentication of users and devices along with strong encryption can reduce susceptibility to threats by adversaries involving wireless technologies.' WHERE [Requirement_Id] = 37537
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Disable, when not intended for use, wireless networking capabilities embedded within system components prior to issuance and deployment.
[Implementation Statement]
+
+
+
+
+', [Supplemental_Info]=N' Disable Wireless Networking
Disable, when not intended for use, wireless networking capabilities embedded within system components prior to issuance and deployment.
Discussion:Disable, when not intended for use, wireless networking capabilities embedded within system components prior to issuance and deployment.' WHERE [Requirement_Id] = 37538
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Identify and explicitly authorize users allowed to independently configure wireless networking capabilities.
[Implementation Statement]
+
+Related Controls: SC-7, SC-15
+
+
+', [Supplemental_Info]=N' Restrict Configurations by Users
Identify and explicitly authorize users allowed to independently configure wireless networking capabilities.
Discussion:Organizational authorizations to allow selected users to configure wireless networking capabilities are enforced, in part, by the access enforcement mechanisms employed within organizational systems.' WHERE [Requirement_Id] = 37539
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Select radio antennas and calibrate transmission power levels to reduce the probability that signals from wireless access points can be received outside of organization-controlled boundaries.
[Implementation Statement]
+
+OT Systems Only:
+Availability and interference for wireless signals may be a concern within OT environments. Antennas and power levels should be designated to overcome and achieve availability goals. Where confidentiality is concerned, antennas and power levels can also be designed to minimize signal exposure outside of the facility.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Availability and interference for wireless signals may be a concern within OT environments. Antennas and power levels should be designed to overcome and achieve availability goals. Where confidentiality is concerned, antennas and power levels can also be designed to minimize signal exposure outside of the facility.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Wireless Access | Antennas and Transmission Power Levels
Select radio antennas and calibrate transmission power levels to reduce the probability that signals from wireless access points can be received outside of organization-controlled boundaries.
Discussion:Actions that may be taken to limit unauthorized use of wireless communications outside of organization-controlled boundaries include reducing the power of wireless transmissions so that the transmissions are less likely to emit a signal that can be captured outside of the physical perimeters of the organization, employing measures such as emissions security to control wireless emanations, and using directional or beamforming antennas that reduce the likelihood that unintended receivers will be able to intercept signals. Prior to taking such mitigating actions, organizations can conduct periodic wireless surveys to understand the radio frequency profile of organizational systems as well as other systems that may be operating in the area.' WHERE [Requirement_Id] = 37540
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish configuration requirements, connection requirements, and implementation guidance for organization-controlled mobile devices, to include when such devices are outside of controlled areas;
[a: Implementation Statement]
+ i) All mobile devices shall receive updates minimally every 30 days, or more frequently based on the risk profile of the system as determined by the AO.
[a.i: Implementation Statement]
+ ii) Emergency updates may require a system to connect or be capable of connecting in advance of scheduled updates.
[a.ii: Implementation Statement]
+ iii) All mobile devices must connect to the WMATA network via VPN, direct connection, or must have updates managed by an approved Mobile Device Management (MDM) solution.
[a.iii: Implementation Statement]
+b. Authorize the connection of mobile devices to organizational systems;
[b: Implementation Statement]
+c. All mobile devices shall be configured with a secure baseline in accordance with Control 3.4 Configuration Management, Section 6, “CM-6 Configuration Settings”;
[c: Implementation Statement]
+d. Enable wireless connectivity in compliance with Control 3.1 Access Control, Section 14, “AC- 18 Wireless Access”;
[d: Implementation Statement]
+e. All mobile devices shall have a screen lock and/or timeout set in accordance with Control 3.1 Access Control, Section 11, “AC-12 Session Termination”; and
[e: Implementation Statement]
+f. Purge or wipe information from mobile devices remotely if systems or components are lost or obtained by unauthorized individuals.
[f: Implementation Statement]
+
+Related Controls: AC-3, AC-4, AC-7, AC-11, AC-12, AC-17, AC-18, AC-20, CA-9, CM-2, CM-6, IA-2, IA-3, MP-2, MP-4, MP-5, MP-7, PL-4, SC-7, SI-3, SI-4
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Access Control for Mobile Devices
a. Establish configuration requirements, connection requirements, and implementation guidance for organization-controlled mobile devices, to include when such devices are outside of controlled areas; and
b. Authorize the connection of mobile devices to organizational systems.
Discussion:A mobile device is a computing device that has a small form factor such that it can easily be carried by a single individual; is designed to operate without a physical connection; possesses local, non-removable or removable data storage; and includes a self-contained power source. Mobile device functionality may also include voice communication capabilities, on-board sensors that allow the device to capture information, and/or built-in features for synchronizing local data with remote locations. Examples include smart phones and tablets. Mobile devices are typically associated with a single individual. The processing, storage, and transmission capability of the mobile device may be comparable to or merely a subset of notebook/desktop systems, depending on the nature and intended purpose of the device. Protection and control of mobile devices is behavior or policy-based and requires users to take physical action to protect and control such devices when outside of controlled areas. Controlled areas are spaces for which organizations provide physical or procedural controls to meet the requirements established for protecting information and systems.Due to the large variety of mobile devices with different characteristics and capabilities, organizational restrictions may vary for the different classes or types of such devices. Usage restrictions and specific implementation guidance for mobile devices include configuration management, device identification and authentication, implementation of mandatory protective software, scanning devices for malicious code, updating virus protection software, scanning for critical software updates and patches, conducting primary operating system (and possibly other resident software) integrity checks, and disabling unnecessary hardware.
Usage restrictions and authorization to connect may vary among organizational systems. For example, the organization may authorize the connection of mobile devices to its network and impose a set of usage restrictions, while a system owner may withhold authorization for mobile device connection to specific applications or impose additional usage restrictions before allowing mobile device connections to a system. Adequate security for mobile devices goes beyond the requirements specified in AC-19. Many safeguards for mobile devices are reflected in other controls. AC-20 addresses mobile devices that are not organization-controlled.
' WHERE [Requirement_Id] = 37541
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Employ full-device encryption or container-based encryption to protect the confidentiality and integrity of information on all devices (e.g., laptops, desktops, servers, mobile devices, tablets, thumb drives, etc.) which are authorized to process and store WMATA data, specifically:
[1: Implementation Statement]
+ (a) Devices leveraging Microsoft Windows shall employ full disk encryption via BitLocker;
[1.a: Implementation Statement]
+ (b) Devices leveraging non-Windows operating systems shall leverage full disk encryption as approved by the AO;
[1.b: Implementation Statement]
+ (c) Personal or WMATA owned mobile devices shall leverage container-based encryption using an MDM solution. Container configuration shall consider access to, processing, storage and transmission capabilities of WMATA data (e.g., email, text, pictures, documents, downloads, on-board sensors that allow the device to capture information, and/or built-in features for synchronizing local data with remote locations). Container based solutions shall include functionality for the remote wiping, purging, or disablement of the container and all contents therein.
[1.c: Implementation Statement]
+(2) When available, systems shall employ products on the NIST Cryptographic Module Validation Program, WMATA Approved Product List, and as defined in WMATA policy.
[2: Implementation Statement]
+
+Related Controls: SC-12, SC-13, SC-28
+
+
+', [Supplemental_Info]=N' Full Device or Container-based Encryption
Employ [Selection: full-device encryption; container-based encryption] to protect the confidentiality and integrity of information on [Assignment: organization-defined mobile devices].
Discussion:Container-based encryption provides a more fine-grained approach to data and information encryption on mobile devices, including encrypting selected data structures such as files, records, or fields.' WHERE [Requirement_Id] = 37542
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Define and document the types of accounts allowed and specifically prohibited for use within the system;
[a: Implementation Statement]
+b. Assign account managers;
[b: Implementation Statement]
+c. Require approval and role-based training for group and role membership;
[c: Implementation Statement]
+d. Specify:
[d: Implementation Statement]
+ i) Authorized users of the system;
[d.i: Implementation Statement]
+ ii) Group and role membership; and
[d.ii: Implementation Statement]
+ iii) Access authorizations (i.e., privileges and entitlements) and account attributes for each account when applicable.
[d.iii: Implementation Statement]
+e. Require approvals by required stakeholders with access control responsibilities of the accreditation boundary for requests to create accounts;
[e: Implementation Statement]
+f. Create, enable, modify, disable, and remove accounts in accordance with:
[f: Implementation Statement]
+ i) Control 3.1 Access Control, Section 5, “AC-5 Separation of Duties” and Section 6, “AC- 6 Least Privilege”;
[f.i: Implementation Statement]
+ ii) Standard Operating Procedures (SOP) and Work Instructions (WI); and
[f.ii: Implementation Statement]
+ iii) Security Configuration Checklists to include Defense Information Systems Agency (DISA) Security Technical Implementation Guides (STIGs) and Center for Internet Security (CIS) Benchmarks;
[f.iii: Implementation Statement]
+g. Monitor the use of accounts;
[g: Implementation Statement]
+h. Notify account managers, other required stakeholders, and designated organizational personnel with access control responsibilities of the accreditation boundary immediately, but no later than twenty-four hours when:
[h: Implementation Statement]
+ i) accounts are no longer required;
[h.i: Implementation Statement]
+ ii) users are terminated or transferred; and
[h.ii: Implementation Statement]
+ iii) system usage or need-to-know changes for an individual;
[h.iii: Implementation Statement]
+i. Authorize access to the system based on the following:
[i: Implementation Statement]
+ i) A valid access authorization;
[i.i: Implementation Statement]
+ ii) Intended system usage (i.e., based on role, type of account, time of day, day of week, and point of origin); and
[i.ii: Implementation Statement]
+ iii) Control 3.1 Access Control, Section 5, “AC-5 Separation of Duties” and Section 6, “AC- 6 Least Privilege”.
[i.iii: Implementation Statement]
+j. Review accounts for compliance with account management requirements:
[j: Implementation Statement]
+ i) Annual recertification is required for all user accounts; and
[j.i: Implementation Statement]
+ ii) Quarterly recertification is required for all privileged user accounts in accordance with Control 3.1 Access Control, Section 6, “AC-6 Least Privilege”.
[ j.ii: Implementation Statement]
+k. Establish and implement a process for changing shared or group account authenticators (if deployed) when individuals are removed from the group in accordance with Control 3.9 Identification and Authentication, Section 5, “IA-5 Authenticator Management”; and
[k: Implementation Statement]
+l. Align account management processes with personnel termination and transfer processes.
[l: Implementation Statement]
+
+OT Systems Only:
+In OT systems, physical security, personnel security, intrusion detection, or auditing measures may assist in supporting this control objective.
[OT Systems Only 1: Implementation Statement]
+
+OT Systems Only:
+OT systems may assist in supporting this control objective through physical security, personnel security, intrusion detection, or auditing.
[OT Systems Only 2: Implementation Statement]
+
+Related Controls : AC-3, AC-5, AC-6, AC-17, AC-18, AC-20, AU-2, AU-12, CM-5, IA-2, IA-4, IA-5, IA-8, MA-3, MA-5, PE-2, PL-4, PS-2, PS-4, PS-5, PS-7, PT-2, PT-3, SC-7, SC-12, SC-13
+
+m. Security Controls Enhancement(s):
[m: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: In OT systems, physical security, personnel security, intrusion detection, or auditing measures may support this control objective.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.4. Enforcement of standards that limit the availability and use of shared accounts to those that are critical for operations, and then only if absolutely necessary. When the Owner/Operator uses shared accounts for operational purposes, the policies and procedures must ensure— (p.7);
[C.4: Implementation Statement]
+
+C.4.a. Access to shared accounts is limited through account management that uses principles of least privilege and separation of duties; and (p.7);
[C.4.a: Implementation Statement]
+
+C.4.b. Individuals who no longer need access do not have knowledge of the password necessary to access the shared accounts. (p.7);
[C.4.b: Implementation Statement]
+', [Supplemental_Info]=N'Account Management
a. Define and document the types of accounts allowed and specifically prohibited for use within the system;
b. Assign account managers;
c. Require [Assignment: organization-defined prerequisites and criteria] for group and role membership;
d. Specify:
1. Authorized users of the system;
2. Group and role membership; and
3. Access authorizations (i.e., privileges) and [Assignment: organization-defined attributes (as required)] for each account;
e. Require approvals by [Assignment: organization-defined personnel or roles] for requests to create accounts;
f. Create, enable, modify, disable, and remove accounts in accordance with [Assignment: organization-defined policy, procedures, prerequisites, and criteria];
g. Monitor the use of accounts;
h. Notify account managers and [Assignment: organization-defined personnel or roles] within:
1. [Assignment: organization-defined time period] when accounts are no longer required;
2. [Assignment: organization-defined time period] when users are terminated or transferred; and
3. [Assignment: organization-defined time period] when system usage or need-to-know changes for an individual;
i. Authorize access to the system based on:
1. A valid access authorization;
2. Intended system usage; and
3. [Assignment: organization-defined attributes (as required)];
j. Review accounts for compliance with account management requirements [Assignment: organization-defined frequency];
k. Establish and implement a process for changing shared or group account authenticators (if deployed) when individuals are removed from the group; and
l. Align account management processes with personnel termination and transfer processes.
Discussion:Examples of system account types include individual, shared, group, system, guest, anonymous, emergency, developer, temporary, and service. Identification of authorized system users and the specification of access privileges reflect the requirements in other controls in the security plan. Users requiring administrative privileges on system accounts receive additional scrutiny by organizational personnel responsible for approving such accounts and privileged access, including system owner, mission or business owner, senior agency information security officer, or senior agency official for privacy. Types of accounts that organizations may wish to prohibit due to increased risk include shared, group, emergency, anonymous, temporary, and guest accounts.
Where access involves personally identifiable information, security programs collaborate with the senior agency official for privacy to establish the specific conditions for group and role membership; specify authorized users, group and role membership, and access authorizations for each account; and create, adjust, or remove system accounts in accordance with organizational policies. Policies can include such information as account expiration dates or other factors that trigger the disabling of accounts. Organizations may choose to define access privileges or other attributes by account, type of account, or a combination of the two. Examples of other attributes required for authorizing access include restrictions on time of day, day of week, and point of origin. In defining other system account attributes, organizations consider system-related requirements and mission/business requirements. Failure to consider these factors could affect system availability.
Temporary and emergency accounts are intended for short-term use. Organizations establish temporary accounts as part of normal account activation procedures when there is a need for short-term accounts without the demand for immediacy in account activation. Organizations establish emergency accounts in response to crisis situations and with the need for rapid account activation. Therefore, emergency account activation may bypass normal account authorization processes. Emergency and temporary accounts are not to be confused with infrequently used accounts, including local logon accounts used for special tasks or when network resources are unavailable (may also be known as accounts of last resort). Such accounts remain available and are not subject to automatic disabling or removal dates. Conditions for disabling or deactivating accounts include when shared/group, emergency, or temporary accounts are no longer required and when individuals are transferred or terminated. Changing shared/group authenticators when members leave the group is intended to ensure that former group members do not retain access to the shared or group account. Some types of system accounts may require specialized training.
' WHERE [Requirement_Id] = 37543
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Automate the management of system accounts.
[Implementation Statement]
+
+
+
+', [Supplemental_Info]=N' Automated System Account Management
Support the management of system accounts using [Assignment: organization-defined automated mechanisms].
Discussion:Automated system account management includes using automated mechanisms to create, enable, modify, disable, and remove accounts; notify account managers when an account is created, enabled, modified, disabled, or removed, or when users are terminated or transferred; monitor system account usage; and report atypical system account usage. Automated mechanisms can include internal system functions and email, telephonic, and text messaging notifications.' WHERE [Requirement_Id] = 37544
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Enforce only authorized access as specified in Control 3.1 Access Control, Section 2, “AC-2 Account Management”, for all accounts.
[1: Implementation Statement]
+(2) No users of WMATA systems have an inherent right to WMATA electronic access, and such access is at the discretion of executive and senior leadership.
[2: Implementation Statement]
+(3) Information technology equipment availability and/or limitations may preclude an employee or contractor from having electronic access.
[3: Implementation Statement]
+(4) Use of WMATA electronic access for non-WMATA purposes may be revoked or limited at any time by appropriate WMATA department heads/office directors.
[4: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Usage Conditions
Enforce [Assignment: organization-defined circumstances and/or usage conditions] for [Assignment: organization-defined system accounts].
Discussion:Specifying and enforcing usage conditions helps to enforce the principle of least privilege, increase user accountability, and enable effective account monitoring. Account monitoring includes alerts generated if the account is used in violation of organizational parameters. Organizations can describe specific conditions or circumstances under which system accounts can be used, such as by restricting usage to certain days of the week, time of day, or specific durations of time.' WHERE [Requirement_Id] = 37545
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Monitor all accounts for atypical or suspicious usage; and
[1: Implementation Statement]
+(2) Report atypical usage of accounts to required stakeholders.
[2: Implementation Statement]
+
+Related Controls: AU-6, AU-7, CA-7, IR-8, SI-4
+
+
+', [Supplemental_Info]=N' Account Monitoring for Atypical Usage
(a) Monitor system accounts for [Assignment: organization-defined atypical usage]; and
(b) Report atypical usage of system accounts to [Assignment: organization-defined personnel or roles].
Discussion:Atypical usage includes accessing systems at certain times of the day or from locations that are not consistent with the normal usage patterns of individuals. Monitoring for atypical usage may reveal rogue behavior by individuals or an attack in progress. Account monitoring may inadvertently create privacy risks since data collected to identify atypical usage may reveal previously unknown information about the behavior of individuals. Organizations assess and document privacy risks from monitoring accounts for atypical usage in their privacy impact assessment and make determinations that are in alignment with their privacy program plan.' WHERE [Requirement_Id] = 37546
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Disable accounts of individuals as referenced in Control 3.1 Access Control, Section 2, “AC-2 (3) Disable Accounts."
[Implementation Statement]
+
+OT Systems Only:
+Close coordination occurs between OT, Human Resources (HR), IT, and Physical Security personnel to ensure timely removal of high-risk individuals.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-6, SI-4
+
+NIST 800-82 Rev 3:
+OT Discussion: Close coordination occurs between OT, HR, IT, and physical security personnel to ensure the timely removal of high-risk individuals.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Disable Accounts for High-risk Individuals
Disable accounts of individuals within [Assignment: organization-defined time period] of discovery of [Assignment: organization-defined significant risks].
Discussion:Users who pose a significant security and/or privacy risk include individuals for whom reliable evidence indicates either the intention to use authorized access to systems to cause harm or through whom adversaries will cause harm. Such harm includes adverse impacts to organizational operations, organizational assets, individuals, other organizations, or the Nation. Close coordination among system administrators, legal staff, human resource managers, and authorizing officials is essential when disabling system accounts for high-risk individuals.' WHERE [Requirement_Id] = 37547
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Under normal usage temporary or emergency accounts are not authorized except where approved by the CISO. The removal or disabling of such accounts shall be automatic after a predefined time period.
[Implementation Statement]
+
+OT Systems Only:
+ In situations where the OT (e.g., field devices) cannot support temporary or emergency accounts, this enhancement does not apply. Example compensating controls include employing nonautomated mechanisms or procedures.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: When the OT (e.g., field devices) cannot support temporary or emergency accounts, this enhancement does not apply. Example compensating controls include employing nonautomated mechanisms or procedures.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Automated Temporary and Emergency Account Management
Automatically [Selection: remove; disable] temporary and emergency accounts after [Assignment: organization-defined time period for each type of account].
Discussion:Management of temporary and emergency accounts includes the removal or disabling of such accounts automatically after a predefined time period rather than at the convenience of the system administrator. Automatic removal or disabling of accounts provides a more consistent implementation.' WHERE [Requirement_Id] = 37548
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Accounts will be disabled when they:
[1: Implementation Statement]
+ (a) Have expired;
[1.a: Implementation Statement]
+ (b) Are no longer associated with a user or individual; or
[1.b: Implementation Statement]
+ (c) Are in violation of organizational policy.
[1.c: Implementation Statement]
+(2) Accounts shall be disabled within designated timeframes based on the following:
[2: Implementation Statement]
+ (a) For high categorized systems, high-risk individuals and privileged accounts, access shall be disabled within 30 minutes.
[2.a: Implementation Statement]
+ (b) For systems categorized as moderate, access shall be disabled within 60 minutes.
[2.b: Implementation Statement]
+ (c) For all other systems, access shall be disabled no later than 24 hours.
[2.c: Implementation Statement]
+(3) Inactive accounts shall be disabled:
[3: Implementation Statement]
+ (a) For general users, not to exceed 90 days of inactivity; and
[3.a: Implementation Statement]
+ (b) For privileged users, 90 days or less of inactivity, based on the categorization of the system, individual risk levels, and account type.
[3.b: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.4.b. Individuals who no longer need access do not have knowledge of the password necessary to access the shared accounts. (p.7)
[C.4.b: Implementation Statement]
+', [Supplemental_Info]=N' Disable Accounts
Disable accounts within [Assignment: organization-defined time period] when the accounts:
(a) Have expired;
(b) Are no longer associated with a user or individual;
(c) Are in violation of organizational policy; or
(d) Have been inactive for [Assignment: organization-defined time period].
Discussion:Disabling expired, inactive, or otherwise anomalous accounts supports the concepts of least privilege and least functionality which reduce the attack surface of the system.' WHERE [Requirement_Id] = 37549
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Information systems shall automatically audit account creation, modification, enabling, disabling, and removal actions, and notify the appropriate personnel of these events.
[Implementation Statement]
+
+Related Controls: AU-2, AU-6
+
+
+', [Supplemental_Info]=N' Automated Audit Actions
Automatically audit account creation, modification, enabling, disabling, and removal actions.
Discussion:Account management audit records are defined in accordance with AU-2 and reviewed, analyzed, and reported in accordance with AU-6.' WHERE [Requirement_Id] = 37550
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require that users are logged out when the session inactivity time has exceeded the designated threshold as established by the AO. At a minimum, users are required to log out after 24 hours.
[Implementation Statement]
+
+OT Systems Only:
+This control enhancement defines situations or timeframes in which users log out of accounts in policy; automatic enforcement is not addressed by this control enhancement. Organizations determine if this control enhancement is appropriate for the mission and/or functions of the OT system and define the timeframe or scenarios. If no timeframe or scenario(s) apply, the organization-defined parameter reflects as such.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-11
+
+NIST 800-82 Rev 3:
+OT Discussion: This control enhancement defines situations or timeframes in which users log out of accounts in the policy. Automatic enforcement is not addressed by this control enhancement. Organizations determine whether this control enhancement is appropriate for the mission and/or functions of the OT system and define the timeframe or scenarios. If no timeframe or scenarios apply, the organization-defined parameter reflects as much.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N'Inactivity Logout
Require that users log out when [Assignment: organization-defined time period of expected inactivity or description of when to log out].
Discussion:Inactivity logout is behavior- or policy-based and requires users to take physical action to log out when they are expecting inactivity longer than the defined period. Automatic enforcement of inactivity logout is addressed by AC-11.' WHERE [Requirement_Id] = 37551
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish terms, conditions, and controls that shall be implemented on external systems, consistent with the trust relationships established with other organizations owning, operating, and/or maintaining external systems, allowing authorized individuals to:
[a: Implementation Statement]
+ i) Access the system from external systems; and a.i)
[a.i: Implementation Statement]
+ ii) Process, store, or transmit organization-controlled information using external systems; or a.ii)
[a.ii: Implementation Statement]
+b. Prohibit the use of unauthorized systems and devices.
[b: Implementation Statement]
+
+OT Systems Only:
+Organizations refine the definition of “external” to reflect lines of authority and responsibility; granularity of organization entity; and their relationships. An organization may consider a system to be external if that system performs different functions, implements different policies, falls under different management authorities, or does not provide sufficient visibility into the implementation of controls to allow the establishment of a satisfactory trust relationship. For example, an OT system and a business data processing system may be considered external to each other depending on the organization’s system boundaries.
[OT Systems Only 1: Implementation Statement]
+
+Access to an OT for support by a business partner, such as a vendor or support contractor, is another common example. The definition and trustworthiness of external systems is reexamined with respect to OT functions, purposes, technology, and limitations to establish a clearly documented technical or business case for use and acceptance of the risk inherent in the use of an external system.
[OT Systems Only 2: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-17, AC-19, CA-3, PL-2, PL-4, SA-9, SC-7
+
+c. Security Controls Enhancement(s):
[Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations refine the definition of “external” to reflect lines of authority and responsibility, the granularity of an organization entity, and their relationships. An organization may consider a system to be external if that system performs different functions, implements different policies, falls under different management authorities, or does not provide sufficient visibility into the implementation of controls to allow the establishment of a satisfactory trust relationship. For example, an OT system and a business data processing system may be considered external to each other depending on the organization’s system boundaries.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Access to an OT for support by a business partner, such as a vendor or support contractor, is another common example. The definition and trustworthiness of external systems is reexamined with respect to OT functions, purposes, technology, and limitations to establish a clearly documented technical or business case for use and an acceptance of the risk inherent in the use of an external system.
[NIST 800-82 Rev 3_Access to OT: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Use of External Systems
a. [Selection (one or more): Establish [Assignment: organization-defined terms and conditions]; Identify [Assignment: organization-defined controls asserted to be implemented on external systems]], consistent with the trust relationships established with other organizations owning, operating, and/or maintaining external systems, allowing authorized individuals to:
1. Access the system from external systems; and
2. Process, store, or transmit organization-controlled information using external systems; or
b. Prohibit the use of [Assignment: organizationally-defined types of external systems].
Discussion:External systems are systems that are used by but not part of organizational systems, and for which the organization has no direct control over the implementation of required controls or the assessment of control effectiveness. External systems include personally owned systems, components, or devices; privately owned computing and communications devices in commercial or public facilities; systems owned or controlled by nonfederal organizations; systems managed by contractors; and federal information systems that are not owned by, operated by, or under the direct supervision or authority of the organization. External systems also include systems owned or operated by other components within the same organization and systems within the organization with different authorization boundaries. Organizations have the option to prohibit the use of any type of external system or prohibit the use of specified types of external systems, (e.g., prohibit the use of any external system that is not organizationally owned or prohibit the use of personally-owned systems).
For some external systems (i.e., systems operated by other organizations), the trust relationships that have been established between those organizations and the originating organization may be such that no explicit terms and conditions are required. Systems within these organizations may not be considered external. These situations occur when, for example, there are pre-existing information exchange agreements (either implicit or explicit) established between organizations or components or when such agreements are specified by applicable laws, executive orders, directives, regulations, policies, or standards. Authorized individuals include organizational personnel, contractors, or other individuals with authorized access to organizational systems and over which organizations have the authority to impose specific rules of behavior regarding system access. Restrictions that organizations impose on authorized individuals need not be uniform, as the restrictions may vary depending on trust relationships between organizations. Therefore, organizations may choose to impose different security restrictions on contractors than on state, local, or tribal governments.
External systems used to access public interfaces to organizational systems are outside the scope of AC-20. Organizations establish specific terms and conditions for the use of external systems in accordance with organizational security policies and procedures. At a minimum, terms and conditions address the specific types of applications that can be accessed on organizational systems from external systems and the highest security category of information that can be processed, stored, or transmitted on external systems. If the terms and conditions with the owners of the external systems cannot be established, organizations may impose restrictions on organizational personnel using those external systems.
' WHERE [Requirement_Id] = 37552
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Permit authorized individuals to use an external system to access the system or to process, store, or transmit organization-controlled information only after:
[1: Implementation Statement]
+ (a) Verification of the implementation of controls on the external system as specified in the organization’s security and privacy policies and security and privacy plans; or
[1.a: Implementation Statement]
+ (b) Retention of approved system connection or processing agreements with the organizational entity hosting the external system.
[1.b: Implementation Statement]
+
+Related Controls: CA-2
+
+
+', [Supplemental_Info]=N' Limits on Authorized Use
Permit authorized individuals to use an external system to access the system or to process, store, or transmit organization-controlled information only after:
(a) Verification of the implementation of controls on the external system as specified in the organization’s security and privacy policies and security and privacy plans; or
(b) Retention of approved system connection or processing agreements with the organizational entity hosting the external system.
Discussion:Limiting authorized use recognizes circumstances where individuals using external systems may need to access organizational systems. Organizations need assurance that the external systems contain the necessary controls so as not to compromise, damage, or otherwise harm organizational systems. Verification that the required controls have been implemented can be achieved by external, independent assessments, attestations, or other means, depending on the confidence level required by organizations.' WHERE [Requirement_Id] = 37553
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Restrict the use of organization-controlled portable storage devices on external systems using encryption.
[1: Implementation Statement]
+
+Related Controls: MP-7, SC-41
+
+
+', [Supplemental_Info]=N' Portable Storage Devices — Restricted Use
Restrict the use of organization-controlled portable storage devices by authorized individuals on external systems using [Assignment: organization-defined restrictions].
Discussion:Limits on the use of organization-controlled portable storage devices in external systems include restrictions on how the devices may be used and under what conditions the devices may be used.' WHERE [Requirement_Id] = 37554
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Enable authorized users to determine whether access authorizations assigned to a sharing partner match the information’s access and use restrictions for information sharing circumstances; and
[a: Implementation Statement]
+b. Employ automated mechanisms when possible, to assist users in making information sharing and collaboration decisions.
[b: Implementation Statement]
+c. Information sharing shall apply to information that may be restricted in some manner based on formal or administrative determination. Examples of such information include, contract- sensitive information, Health Insurance Portability and Accountability Act (HIPAA) information, Payment card industry (PCI) information, privileged information, proprietary information, and personally identifiable information.
[c: Implementation Statement]
+d. Organizational data and systems approved for sharing with external partners must have written agreements regarding the responsibilities of the external partner that address the business, security and technical requirements regarding the use and custodial responsibilities of the data and systems.
[d: Implementation Statement]
+e. If the sharing of data or systems with external partners is a component of a service, and not otherwise governed by legal requirements, the organizations may choose to use a Service Level Agreement (SLA) that clearly defines the responsibilities, services, priorities and performance metrics of the services to be provided.
[e: Implementation Statement]
+f. Organization software or information systems that allow the sharing of files and data containing restricted and/or highly restricted information shall be used to share data only if the appropriate security controls, as documented in the SSP, are properly configured and implemented. Appropriate security controls shall include the following:
[f: Implementation Statement]
+ i) Authentication controls to ensure that authorized users are identified.
[f.i: Implementation Statement]
+ ii) Access controls to limit an individual’s access to only the restricted and/or highly restricted data necessary for that person to perform his/her role.
[f.ii: Implementation Statement]
+ iii) Authorization controls to enforce version control and record retention requirements such that only designated individuals are able to modify or delete sensitive or critical records.
[f.iii: Implementation Statement]
+ iv) Audit controls that record individual actions on files and records, such as file fication.
[f.iv: Implementation Statement]
+ v) Audit logs shall be retained in accordance with the Audit and Accountability control.
[f.v: Implementation Statement]
+
+Related Controls: AC-3, AC-4, PT-2, PT-7, RA-3, SC-15
+
+
+', [Supplemental_Info]=N'Information Sharing
a. Enable authorized users to determine whether access authorizations assigned to a sharing partner match the information’s access and use restrictions for [Assignment: organization-defined information sharing circumstances where user discretion is required]; and
b. Employ [Assignment: organization-defined automated mechanisms or manual processes] to assist users in making information sharing and collaboration decisions.
Discussion:Information sharing applies to information that may be restricted in some manner based on some formal or administrative determination. Examples of such information include, contract-sensitive information, classified information related to special access programs or compartments, privileged information, proprietary information, and personally identifiable information. Security and privacy risk assessments as well as applicable laws, regulations, and policies can provide useful inputs to these determinations. Depending on the circumstances, sharing partners may be defined at the individual, group, or organizational level. Information may be defined by content, type, security category, or special access program or compartment. Access restrictions may include non-disclosure agreements (NDA). Information flow techniques and security attributes may be used to provide automated assistance to users making sharing and collaboration decisions.' WHERE [Requirement_Id] = 37555
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Designate individuals authorized to make information publicly accessible;
[a: Implementation Statement]
+b. Train authorized individuals to ensure that publicly accessible information does not contain nonpublic information in accordance with Control 3.8 Data Sensitivity, Section 9, “Categorization of Information."
[b: Implementation Statement]
+c. Review the proposed content of information prior to posting onto the publicly accessible system to ensure that nonpublic information is not included; and
[c: Implementation Statement]
+d. Review the content on the publicly accessible system for nonpublic information quarterly, and remove such information, if discovered.
[d: Implementation Statement]
+
+OT Systems Only:
+Generally, public access to OT systems is not permitted. Select information may be transferred to a publicly accessible system, possibly with added controls. The organization should review what information is being made accessible prior to publication.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AT-2, AT-3
+
+NIST 800-82 Rev 3:
+OT Discussion: Generally, public access to OT systems is not permitted. Select information may be transferred to a publicly accessible system, possibly with added controls. The organization should review what information is being made accessible prior to publication.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Publicly Accessible Content
a. Designate individuals authorized to make information publicly accessible;
b. Train authorized individuals to ensure that publicly accessible information does not contain nonpublic information;
c. Review the proposed content of information prior to posting onto the publicly accessible system to ensure that nonpublic information is not included; and
d. Review the content on the publicly accessible system for nonpublic information [Assignment: organization-defined frequency] and remove such information, if discovered.
Discussion:In accordance with applicable laws, executive orders, directives, policies, regulations, standards, and guidelines, the public is not authorized to have access to nonpublic information, including information protected under the [PRIVACT] and proprietary information. Publicly accessible content addresses systems that are controlled by the organization and accessible to the public, typically without identification or authentication. Posting information on non-organizational systems (e.g., non-organizational public websites, forums, and social media) is covered by organizational policy. While organizations may have individuals who are responsible for developing and implementing policies about the information that can be made publicly accessible, publicly accessible content addresses the management of the individuals who make such information publicly accessible.' WHERE [Requirement_Id] = 37556
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Implement a reference monitor for operating systems.
[a: Implementation Statement]
+
+Related Controls: AC-3, SA-8, SA-17, SC-3, SC-39, SI-13
+
+
+', [Supplemental_Info]=N'Reference Monitor
Implement a reference monitor for [Assignment: organization-defined access control policies] that is tamperproof, always invoked, and small enough to be subject to analysis and testing, the completeness of which can be assured.
Discussion:A reference monitor is a set of design requirements on a reference validation mechanism that, as a key component of an operating system, enforces an access control policy over all subjects and objects. A reference validation mechanism is always invoked, tamper-proof, and small enough to be subject to analysis and tests, the completeness of which can be assured (i.e., verifiable). Information is represented internally within systems using abstractions known as data structures. Internal data structures can represent different types of entities, both active and passive. Active entities, also known as subjects, are associated with individuals, devices, or processes acting on behalf of individuals. Passive entities, also known as objects, are associated with data structures, such as records, buffers, communications ports, tables, files, and inter-process pipes. Reference monitors enforce access control policies that restrict access to objects based on the identity of subjects or groups to which the subjects belong. The system enforces the access control policy based on the rule set established by the policy. The tamper-proof property of the reference monitor prevents determined adversaries from compromising the functioning of the reference validation mechanism. The always invoked property prevents adversaries from bypassing the mechanism and violating the security policy. The smallness property helps to ensure completeness in the analysis and testing of the mechanism to detect any weaknesses or deficiencies (i.e., latent flaws) that would prevent the enforcement of the security policy.' WHERE [Requirement_Id] = 37557
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Enforce approved authorizations for logical access to information and system resources in accordance with applicable access control processes and procedures.
[a: Implementation Statement]
+
+OT Systems Only:
+The organization ensures that access enforcement mechanisms do not adversely impact the operational performance of the OT. Example compensating controls include encapsulation. Policy for logical access control to non-addressable and non-routable system resources and the associated information is made explicit. Access control mechanisms include hardware, firmware, and software that control the device or have device access, such as device drivers and communications controllers. Physical access control may serve as a compensating control for logical access control; however, it may not provide sufficient granularity in situations where users require access to different functions.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-4, AC-5, AC-6, AC-17, AC-18, AC-19, AC-20, AC-21, AC-22, AC-25, AT-2, AT-3, AU-9, CA-9, CM-5, CM-11, IA-2, IA-5, IA-6, IA-7, IA-11, MA-3, MA-4, MA-5, MP-4, PM-2, PS-3, PT-2, PT-3, SA-17, SC-2, SC-3, SC-4, SC-12, SC-13, SC-28, SI-4, SI-8
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization ensures that access enforcement mechanisms do not adversely impact the operational performance of the OT. Example compensating controls include encapsulation. The policy for logical access control to non-addressable and non-routable system resources and the associated information is made explicit. Access control mechanisms include hardware, firmware, and software that control the device or have device access, such as device drivers and communications controllers. Physical access control may serve as a compensating control for logical access control. However, it may not provide sufficient granularity when users require access to different functions.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.4. Enforcement of standards that limit the availability and use of shared accounts to those that are critical for operations, and then only if absolutely necessary. When the Owner/Operator uses shared accounts for operational purposes, the policies and procedures must ensure— (p.7)
[C.4: Implementation Statement]
+', [Supplemental_Info]=N'Access Enforcement
Enforce approved authorizations for logical access to information and system resources in accordance with applicable access control policies.
Discussion:Access control policies control access between active entities or subjects (i.e., users or processes acting on behalf of users) and passive entities or objects (i.e., devices, files, records, domains) in organizational systems. In addition to enforcing authorized access at the system level and recognizing that systems can host many applications and services in support of mission and business functions, access enforcement mechanisms can also be employed at the application and service level to provide increased information security and privacy. In contrast to logical access controls that are implemented within the system, physical access controls are addressed by the controls in the Physical and Environmental Protection (PE) family.' WHERE [Requirement_Id] = 37558
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Restrict access to data repositories containing [Assignment: organization-defined information types].
[Implementation Statement]
+
+OT Systems Only:
+The organization identifies and restricts access to information that could impact the OT environment, accounting for information types that are sensitive, proprietary, contain trade secrets, or support safety functions.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CM-8, CM-12, PM-5
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization identifies and restricts access to information that could impact the OT environment and accounts for information types that are sensitive, proprietary, contain trade secrets, or support safety functions.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding AC-3 (11) to HIGH baseline: The loss of availability, integrity, and confidentiality of certain types of information that reside on a high-impact OT system may result in severe or catastrophic adverse effects on operations, assets, or individuals, including severe degradation or loss of mission capability, major damage to organizational assets, or harm to individuals involving the loss of life or life-threatening injuries.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Access Enforcement | Restrict Access to Specific Information Types
Restrict access to data repositories containing [Assignment: organization-defined information types].
Discussion:Restricting access to specific information is intended to provide flexibility regarding access control of specific information types within a system. For example, role-based access could be employed to allow access to only a specific type of personally identifiable information within a database rather than allowing access to the database in its entirety. Other examples include restricting access to cryptographic keys, authentication information, and selected system information.' WHERE [Requirement_Id] = 37559
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide mechanisms, such as request forms and applications interfaces to enable individuals to access their personally identifiable information (PII).
[Implementation Statement]
+
+Related Controls: IA-8, PM-20, PM-21, PM-22, PT-6
+
+
+', [Supplemental_Info]=N' Individual Access
Provide [Assignment: organization-defined mechanisms] to enable individuals to have access to the following elements of their personally identifiable information: [Assignment: organization-defined elements].
Discussion:Individual access affords individuals the ability to review personally identifiable information about them held within organizational records, regardless of format. Access helps individuals to develop an understanding about how their personally identifiable information is being processed. It can also help individuals ensure that their data is accurate. Access mechanisms can include request forms and application interfaces. For federal agencies, [PRIVACT] processes can be located in systems of record notices and on agency websites. Access to certain types of records may not be appropriate (e.g., for federal agencies, law enforcement records within a system of records may be exempt from disclosure under the [PRIVACT]) or may require certain levels of authentication assurance. Organizational personnel consult with the senior agency official for privacy and legal counsel to determine appropriate mechanisms and access rights or limitations.' WHERE [Requirement_Id] = 37560
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Enforce role-based access control over defined subjects and objects by controlling access. Each system shall establish an account management plan, inclusive of roles and responsibilities required to execute the plan, pursuant to Control 3.1 Access Control, Section 2, “AC-2 Account Management.”
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Role Based Access Control
Enforce a role-based access control policy over defined subjects and objects and control access based upon [Assignment: organization-defined roles and users authorized to assume such roles].
Discussion:Role-based access control (RBAC) is an access control policy that enforces access to objects and system functions based on the defined role (i.e., job function) of the subject. Organizations can create specific roles based on job functions and the authorizations (i.e., privileges) to perform needed operations on the systems associated with the organization-defined roles. When users are assigned to specific roles, they inherit the authorizations or privileges defined for those roles. RBAC simplifies privilege administration for organizations because privileges are not assigned directly to every user (which can be a large number of individuals) but are instead acquired through role assignments. RBAC can also increase privacy and security risk if individuals assigned to a role are given access to information beyond what they need to support organizational missions or business functions. RBAC can be implemented as a mandatory or discretionary form of access control. For organizations implementing RBAC with mandatory access controls, the requirements in AC-3(3) define the scope of the subjects and objects covered by the policy.' WHERE [Requirement_Id] = 37561
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Ensure that the flow of information within the system, and between connected systems, is documented and authorized. All WMATA systems shall have a Data Flow Diagram that documents the storage movement, and processing of data in the system.
[a: Implementation Statement]
+
+OT Systems Only:
+Information flow policy may be achieved using a combination of logical and physical flow restriction techniques. Inspection of message content may enforce information flow policy. For example, industrial OT protocols may be restricted using inbound and outbound traffic rules on a network control device between OT and IT networks. For non-routable communication such as serial connections, devices may be configured to limit commands to and from specific tags within the OT device. Information flow policy may be supported by labeling or coloring physical connectors to aid in connecting networks. Devices that do not have a business need to communicate should not be connected (i.e., air gapped).
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-6, AC-17, AC-19, AC-21, AU-10, CA-3, CA-9, CM-7, PL-9, PM-24, SA-17, SC-4, SC-7
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Information flow policy may be achieved using a combination of logical and physical flow restriction techniques. The inspection of message content may enforce information flow policy. For example, industrial OT protocols may be restricted using inbound and outbound traffic rules on a network control device between OT and IT networks. For non-routable communication, such as serial connections, devices may be configured to limit commands to and from specific tags within the OT device. The information flow policy may be supported by labeling or coloring physical connectors to aid in connecting networks. Devices that do not have a business need to communicate should not be connected (i.e., air gapped).
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+', [Supplemental_Info]=N'Information Flow Enforcement
Enforce approved authorizations for controlling the flow of information within the system and between connected systems based on [Assignment: organization-defined information flow control policies].
Discussion:Information flow control regulates where information can travel within a system and between systems (in contrast to who is allowed to access the information) and without regard to subsequent accesses to that information. Flow control restrictions include blocking external traffic that claims to be from within the organization, keeping export-controlled information from being transmitted in the clear to the Internet, restricting web requests that are not from the internal web proxy server, and limiting information transfers between organizations based on data structures and content. Transferring information between organizations may require an agreement specifying how the information flow is enforced (see CA-3). Transferring information between systems in different security or privacy domains with different security or privacy policies introduces the risk that such transfers violate one or more domain security or privacy policies. In such situations, information owners/stewards provide guidance at designated policy enforcement points between connected systems. Organizations consider mandating specific architectural solutions to enforce specific security and privacy policies. Enforcement includes prohibiting information transfers between connected systems (i.e., allowing access only), verifying write permissions before accepting information from another security or privacy domain or connected system, employing hardware mechanisms to enforce one-way information flows, and implementing trustworthy regrading mechanisms to reassign security or privacy attributes and labels.
Organizations commonly employ information flow control policies and enforcement mechanisms to control the flow of information between designated sources and destinations within systems and between connected systems. Flow control is based on the characteristics of the information and/or the information path. Enforcement occurs, for example, in boundary protection devices that employ rule sets or establish configuration settings that restrict system services, provide a packet-filtering capability based on header information, or provide a message-filtering capability based on message content. Organizations also consider the trustworthiness of filtering and/or inspection mechanisms (i.e., hardware, firmware, and software components) that are critical to information flow enforcement. Control enhancements 3 through 32 primarily address cross-domain solution needs that focus on more advanced filtering techniques, in-depth analysis, and stronger flow enforcement mechanisms implemented in cross-domain products, such as high-assurance guards. Such capabilities are generally not available in commercial off-the-shelf products. Information flow enforcement also applies to control plane traffic (e.g., routing and DNS).
' WHERE [Requirement_Id] = 37562
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent encrypted information from bypassing flow control mechanisms to include content checking, security policy filters, and data type identifiers by:
[Implementation Statement]
+
+(1) Decrypting the information;
[1: Implementation Statement]
+(2) Blocking the flow of the unauthorized encrypted information;
[2: Implementation Statement]
+(3) Terminating communications sessions attempting to pass unauthorized encrypted information;
[3: Implementation Statement]
+
+Related Controls: SI-4
+
+
+', [Supplemental_Info]=N' Flow Control of Encrypted Information
Prevent encrypted information from bypassing [Assignment: organization-defined information flow control mechanisms] by [Selection (one or more): decrypting the information; blocking the flow of the encrypted information; terminating communications sessions attempting to pass encrypted information; [Assignment: organization-defined procedure or method]].
Discussion:Flow control mechanisms include content checking, security policy filters, and data type identifiers. The term encryption is extended to cover encoded data not recognized by filtering mechanisms.' WHERE [Requirement_Id] = 37563
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. The following roles shall have duties separated:
[a: Implementation Statement]
+ i) General user activities (e.g., resource or file access);
[a.i: Implementation Statement]
+ ii) System and application development (e.g., programmers);
[a.ii: Implementation Statement]
+ iii) Database administration and management (e.g., database administrators)
[a.iii: Implementation Statement]
+ iv) Technical operations and system or network administration (e.g., system administrator, and network administrator, system maintenance personnel); and
[a.iv: Implementation Statement]
+ v) Security Administration and Management (e.g., Security Administrator, ISSM/O).
[a.v: Implementation Statement]
+b. Define system access authorizations to support separation of duties.
[b: Implementation Statement]
+c. An individual user may have a general user account and one privileged level account only unless additional accesses are documented and approved in the Account Management Plan.
[c: Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include providing increased personnel security and auditing. The organization carefully considers the appropriateness of a single individual performing multiple critical roles.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-6, AU-9, CM-5, CM-11, CP-9, IA-2, IA-4, IA-5, IA-12, MA-3, MA-5, PS-2, SA-8, SA-17
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include providing increased personnel security and auditing. The organization carefully considers the appropriateness of a single individual performing multiple critical roles.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.3. Policies and procedures to manage access rights based on the principles of least privilege and separation of duties. Where not technically feasible to apply these principles, the policies and procedures must describe the compensating controls that the Owner/Operator will apply. (p.7)
[C.3: Implementation Statement]
+
+C.4.a. Access to shared accounts is limited through account manacgement that uses principles of least privilege and separation of duties; and (p.7)
[C.4.a: Implementation Statement]
+', [Supplemental_Info]=N'Separation of Duties
a. Identify and document [Assignment: organization-defined duties of individuals requiring separation]; and
b. Define system access authorizations to support separation of duties.
Discussion:Separation of duties addresses the potential for abuse of authorized privileges and helps to reduce the risk of malevolent activity without collusion. Separation of duties includes dividing mission or business functions and support functions among different individuals or roles, conducting system support functions with different individuals, and ensuring that security personnel who administer access control functions do not also administer audit functions. Because separation of duty violations can span systems and application domains, organizations consider the entirety of systems and system components when developing policy on separation of duties. Separation of duties is enforced through the account management activities in AC-2, access control mechanisms in AC-3, and identity management activities in IA-2, IA-4, and IA-12.' WHERE [Requirement_Id] = 37564
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Employ the principle of least privilege, allowing only authorized accesses for users (or processes acting on behalf of users) that are necessary to accomplish assigned organizational tasks in accordance with WMATA missions and business functions. Least privilege applies to all stages of the System Development Lifecycle (SDLC).
[a: Implementation Statement]
+b. Only authorized individuals shall access, manage, and perform updates to sensitive information as classified in Control 3.8 Data Sensitivity.
[b: Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include providing increased personnel security and auditing. The organization carefully considers the appropriateness of a single individual having multiple critical privileges. System privilege models may be tailored to enforce integrity and availability (e.g., lower privileges include read access and higher privileges include write access).
[OT Systems Only: Implementation Statement]
+
+Related Controls : AC-2, AC-3, AC-5, CM-5, CM-11, PL-2, PM-12, SA-8, SA-15, SA-17
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include providing increased personnel security and auditing. The organization carefully considers the appropriateness of a single individual having multiple critical privileges. System privilege models may be tailored to enforce integrity and availability (e.g., lower privileges include read access, and higher privileges include write access).
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.3. Policies and procedures to manage access rights based on the principles of least privilege and separation of duties. Where not technically feasible to apply these principles, the policies and procedures must describe the compensating controls that the Owner/Operator will apply. (p.7)
[C.3: Implementation Statement]
+
+C.4.a. Access to shared accounts is limited through account management that uses principles of least privilege and separation of duties; and (p.7)
[C.4.a: Implementation Statement]
+', [Supplemental_Info]=N'Least Privilege
Employ the principle of least privilege, allowing only authorized accesses for users (or processes acting on behalf of users) that are necessary to accomplish assigned organizational tasks.
Discussion:Organizations employ least privilege for specific duties and systems. The principle of least privilege is also applied to system processes, ensuring that the processes have access to systems and operate at privilege levels no higher than necessary to accomplish organizational missions or business functions. Organizations consider the creation of additional processes, roles, and accounts as necessary to achieve least privilege. Organizations apply least privilege to the development, implementation, and operation of organizational systems.' WHERE [Requirement_Id] = 37565
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) All security functions deployed in hardware, software, and firmware shall be documented in the System Security Plan (SSP) and all security functions shall be clearly annotated.
[1: Implementation Statement]
+(2) Authorize access for individuals or roles to security functions, to include security administrators, system administrators, system security officers, system programmers, and other privileged users, inclusive of:
[2: Implementation Statement]
+ (a) Security functions (deployed in hardware, software, and firmware) to include establishing system accounts, configuring access authorizations (i.e., permissions, privileges), configuring settings for events to be audited, and establishing intrusion detection parameters; and
[2.a: Implementation Statement]
+ (b) Security-relevant information, to include filtering rules for routers or firewalls, configuration parameters for security services, cryptographic key management information, and access control lists.
[2.b: Implementation Statement]
+ (c) All other security functions defined in the SSP.
[2.c: Implementation Statement]
+
+OT Systems Only:
+In situations where the OT components (e.g., PLCs) cannot support logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-17, AC-18, AC-19, AU-9, PE-2
+
+NIST 800-82 Rev 3:
+OT Discussion: When OT components (e.g., PLCs) cannot support the logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Least Privilege | Authorize Access to Security Functions
Authorize access for [Assignment: organization-defined individuals or roles] to:
(a) [Assignment: organization-defined security functions (deployed in hardware, software, and firmware)]; and
(b) [Assignment: organization-defined security-relevant information].
Discussion:Security functions include establishing system accounts, configuring access authorizations (i.e., permissions, privileges), configuring settings for events to be audited, and establishing intrusion detection parameters. Security-relevant information includes filtering rules for routers or firewalls, configuration parameters for security services, cryptographic key management information, and access control lists. Authorized personnel include security administrators, system administrators, system security officers, system programmers, and other privileged users.' WHERE [Requirement_Id] = 37566
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent non-privileged users from executing privileged functions.
[Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include enhanced auditing.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include enhanced auditing.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Least Privilege | Prohibit Non-privileged Users from Executing Privileged Functions
Prevent non-privileged users from executing privileged functions.
Discussion:Privileged functions include disabling, circumventing, or altering implemented security or privacy controls, establishing system accounts, performing system integrity checks, and administering cryptographic key management activities. Non-privileged users are individuals who do not possess appropriate authorizations. Privileged functions that require protection from non-privileged users include circumventing intrusion detection and prevention mechanisms or malicious code protection mechanisms. Preventing non-privileged users from executing privileged functions is enforced by AC-3.' WHERE [Requirement_Id] = 37567
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require that users of system accounts (or roles) with access to security functions or security-relevant information use non-privileged accounts or roles, when accessing non- security functions. Security functions include but are not limited to those functions described in Control 3.1 Access Control, Section 6, (b), (i), “AC-6 (1) Authorize Access to Security Function.”
[Implementation Statement]
+
+OT Systems Only:
+In situations where the OT components (e.g., PLCs) cannot support logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-17, AC-18, AC-19, PL-4
+
+NIST 800-82 Rev 3:
+OT Discussion: When OT components (e.g., PLCs) cannot support the logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Least Privilege | Non-privileged Access for Nonsecurity Functions
Require that users of system accounts (or roles) with access to [Assignment: organization-defined security functions or security-relevant information] use non-privileged accounts or roles, when accessing nonsecurity functions.
Discussion:Requiring the use of non-privileged accounts when accessing nonsecurity functions limits exposure when operating from within privileged accounts or roles. The inclusion of roles addresses situations where organizations implement access control policies, such as role-based access control, and where a change of role provides the same degree of assurance in the change of access authorizations for the user and the processes acting on behalf of the user as would be provided by a change between a privileged and non-privileged account.' WHERE [Requirement_Id] = 37568
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Authorize network access to privileged commands only for assigned duties and/or responsibilities and document the rationale for such access in the SSP.
[Implementation Statement]
+
+OT Systems Only:
+In situations where the OT components (e.g., PLCs) cannot support logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-17, AC-18, AC-19
+
+NIST 800-82 Rev 3:
+OT Discussion: When OT components (e.g., PLCs) cannot support the logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Least Privilege | Network Access to Privileged Commands
Authorize network access to [Assignment: organization-defined privileged commands] only for [Assignment: organization-defined compelling operational needs] and document the rationale for such access in the security plan for the system.
Discussion:Network access is any access across a network connection in lieu of local access (i.e., user being physically present at the device).' WHERE [Requirement_Id] = 37569
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Restrict privileged accounts on the system to authorized personnel as documented in the Enterprise Identity and Access Management (EIAM) system.
[Implementation Statement]
+
+OT Systems Only:
+In situations where the OT components (e.g., PLCs) cannot support logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[OT Systems Only: Implementation Statement]
+
+Related Controls: IA-2, MA-3, MA-4
+
+NIST 800-82 Rev 3:
+OT Discussion: When OT components (e.g., PLCs) cannot support the logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Least Privilege | Privileged Accounts
Restrict privileged accounts on the system to [Assignment: organization-defined personnel or roles].
Discussion:Privileged accounts, including super user accounts, are typically described as system administrator for various types of commercial off-the-shelf operating systems. Restricting privileged accounts to specific personnel or roles prevents day-to-day users from accessing privileged information or privileged functions. Organizations may differentiate in the application of restricting privileged accounts between allowed privileges for local accounts and for domain accounts provided that they retain the ability to control system configurations for key parameters and as otherwise necessary to sufficiently mitigate risk.' WHERE [Requirement_Id] = 37570
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Review and recertify annually the privileges assigned to general users and roles or classes of users to validate the need for such privileges; and
[1: Implementation Statement]
+(2) Review and recertify quarterly the privileges assigned to privileged users and any associated roles to validate the need for such privileges; and
[2: Implementation Statement]
+(3) Reassign or remove privileges, if necessary, to correctly reflect organizational mission and business needs.
[3: Implementation Statement]
+
+Related Controls: CA-7
+
+
+', [Supplemental_Info]=N' Review of User Privileges
(a) Review [Assignment: organization-defined frequency] the privileges assigned to [Assignment: organization-defined roles or classes of users] to validate the need for such privileges; and
(b) Reassign or remove privileges, if necessary, to correctly reflect organizational mission and business needs.
Discussion:The need for certain assigned user privileges may change over time to reflect changes in organizational mission and business functions, environments of operation, technologies, or threats. A periodic review of assigned user privileges is necessary to determine if the rationale for assigning such privileges remains valid. If the need cannot be revalidated, organizations take appropriate corrective actions.' WHERE [Requirement_Id] = 37571
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Log the execution of privileged functions.
[Implementation Statement]
+
+OT Systems Only:
+In situations where the OT components (e.g., PLCs) cannot support logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-2, AU-3, AU-12
+
+NIST 800-82 Rev 3:
+OT Discussion: When OT components (e.g., PLCs) cannot support the logging of privileged functions, other system components within the authorization boundary may be used (e.g., engineering workstations or physical access monitoring).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Least Privilege | Log Use of Privileged Functions
Log the execution of privileged functions.
Discussion:The misuse of privileged functions, either intentionally or unintentionally by authorized users or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Logging and analyzing the use of privileged functions is one way to detect such misuse and, in doing so, help mitigate the risk from insider threats and the advanced persistent threat.' WHERE [Requirement_Id] = 37572
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'When the maximum number of unsuccessful attempts is exceeded:
[Implementation Statement]
+
+a. Enforce a limit of three failed invalid logon attempts by a user during a 15-minute time period;
[a: Implementation Statement]
+b. Automatically lock the account or node until released by an administrator when the maximum number of unsuccessful attempts is exceeded. See Control 3.9 Identification and Authentication control;
[b: Implementation Statement]
+c. Automate unlocking of a system as documented in the SSP and approved by the AO; and
[c: Implementation Statement]
+d. For public-facing or Intranet web-based applications, automatically lock the account until released by an administrator or prompt the user to answer a secret question in addition to requiring a Completely Automated Public Turing test to tell Computer and Humans Apart (CAPTCHA) or answering challenge questions to prevent automated attacks.
[d: Implementation Statement]
+
+OT Systems Only:
+Many OT systems remain in continuous operation and operators remain logged onto the system at all times. A “log-over” capability may be employed. Example compensating controls include logging or recording all unsuccessful login attempts and alerting OT security personnel through alarms or other means when the number of organization-defined consecutive invalid access attempts is exceeded. Unsuccessful logon attempt limits are enforced for accounts (e.g., administrator) or systems (e.g., engineering workstations) not required for continuous operation.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AU-2, AU-6, IA-5
+
+NIST 800-82 Rev 3:
+OT Discussion: Many OT systems remain in continuous operation, and operators remain logged onto the system at all times. A “log-over” capability may be employed. Example compensating controls include logging or recording all unsuccessful logon attempts and alerting OT security personnel through alarms or other means when the number of organization-defined consecutive invalid access attempts is exceeded. Unsuccessful logon attempt limits are enforced for accounts (e.g., administrator) or systems (e.g., engineering workstations) that are not required for continuous operation.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Unsuccessful Logon Attempts
a. Enforce a limit of [Assignment: organization-defined number] consecutive invalid logon attempts by a user during a [Assignment: organization-defined time period]; and
b. Automatically [Selection (one or more): lock the account or node for an [Assignment: organization-defined time period]; lock the account or node until released by an administrator; delay next logon prompt per [Assignment: organization-defined delay algorithm]; notify system administrator; take other [Assignment: organization-defined action]] when the maximum number of unsuccessful attempts is exceeded.
Discussion:The need to limit unsuccessful logon attempts and take subsequent action when the maximum number of attempts is exceeded applies regardless of whether the logon occurs via a local or network connection. Due to the potential for denial of service, automatic lockouts initiated by systems are usually temporary and automatically release after a predetermined, organization-defined time period. If a delay algorithm is selected, organizations may employ different algorithms for different components of the system based on the capabilities of those components. Responses to unsuccessful logon attempts may be implemented at the operating system and the application levels. Organization-defined actions that may be taken when the number of allowed consecutive invalid logon attempts is exceeded include prompting the user to answer a secret question in addition to the username and password, invoking a lockdown mode with limited user capabilities (instead of full lockout), allowing users to only logon from specified Internet Protocol (IP) addresses, requiring a CAPTCHA to prevent automated attacks, or applying user profiles such as location, time of day, IP address, device, or Media Access Control (MAC) address. If automatic system lockout or execution of a delay algorithm is not implemented in support of the availability objective, organizations consider a combination of other actions to help prevent brute force attacks. In addition to the above, organizations can prompt users to respond to a secret question before the number of allowed unsuccessful logon attempts is exceeded. Automatically unlocking an account after a specified period of time is generally not permitted. However, exceptions may be required based on operational mission or need.' WHERE [Requirement_Id] = 37573
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Display the official WMATA system use notification to users before granting access to the system that provides privacy and security notices consistent with applicable laws, directives, regulations, policies, standards, and guidelines and state that:
[a: Implementation Statement]
+ i) Users are accessing a WMATA system;
[a.i: Implementation Statement]
+ ii) System usage may be monitored, recorded, and subject to audit;
[a.ii: Implementation Statement]
+ iii) Unauthorized use of the system is prohibited and subject to criminal and civil penalties; and
[a.iii: Implementation Statement]
+ iv) Use of the system indicates consent to monitoring and recording;
[a.iv: Implementation Statement]
+b. Retain the notification message or banner on the screen until users acknowledge the usage conditions and take explicit actions to logon to or further access the system; and
[b: Implementation Statement]
+c. For publicly accessible systems:
[c: Implementation Statement]
+ i) Display the official WMATA system use notice before granting access to publicly accessible systems. System use notices shall be displayed on all user logon pages.
[c.i: Implementation Statement]
+ ii) Display references, if any, to monitoring, recording, or auditing that are consistent with privacy accommodations for such systems that generally prohibit those activities; and
[c.ii: Implementation Statement]
+ iii) Include a description of the authorized uses of the system.
[c.iii: Implementation Statement]
+
+OT Systems Only:
+Many OT systems must remain in continuous operation and system use notification may not be supported or effective. Example compensating controls include posting physical notices in OT facilities or providing recurring training on system use prior to permitting access.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-14, PL-4, SI-4
+
+NIST 800-82 Rev 3:
+OT Discussion: Many OT systems must remain in continuous operation, and system use notification may not be supported or effective. Example compensating controls include posting physical notices in OT facilities or providing recurring training on system use prior to permitting access.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Use Notification
a. Display [Assignment: organization-defined system use notification message or banner] to users before granting access to the system that provides privacy and security notices consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines and state that:
1. Users are accessing a U.S. Government system;
2. System usage may be monitored, recorded, and subject to audit;
3. Unauthorized use of the system is prohibited and subject to criminal and civil penalties; and
4. Use of the system indicates consent to monitoring and recording;
b. Retain the notification message or banner on the screen until users acknowledge the usage conditions and take explicit actions to log on to or further access the system; and
c. For publicly accessible systems:
1. Display system use information [Assignment: organization-defined conditions], before granting further access to the publicly accessible
system;
2. Display references, if any, to monitoring, recording, or auditing that are consistent with privacy accommodations for such systems that
generally prohibit those activities; and
3. Include a description of the authorized uses of the system.
Discussion:System use notifications can be implemented using messages or warning banners displayed before individuals log in to systems. System use notifications are used only for access via logon interfaces with human users. Notifications are not required when human interfaces do not exist. Based on an assessment of risk, organizations consider whether or not a secondary system use notification is needed to access applications or other system resources after the initial network logon. Organizations consider system use notification messages or banners displayed in multiple languages based on organizational needs and the demographics of system users. Organizations consult with the privacy office for input regarding privacy messaging and the Office of the General Counsel or organizational equivalent for legal review and approval of warning banner content.' WHERE [Requirement_Id] = 37574
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Awareness and Training Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] awareness and training policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the awareness and training policy and the associated awareness and training controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the
awareness and training policy and procedures; and
c. Review and update the current awareness and training:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Awareness and training policy and procedures address the controls in the AT family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of awareness and training policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to awareness and training policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37575
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide security and privacy literacy training to users:
[a: Implementation Statement]
+ i) As part of initial training for new users and annually thereafter; and
[a.i: Implementation Statement]
+ ii) When required by system changes or following events that may precipitate an update to literacy training and awareness content.
[a.ii: Implementation Statement]
+b. Employ techniques to increase the security and privacy awareness of users, such as:
[b: Implementation Statement]
+ i) Displaying posters;
[b.i: Implementation Statement]
+ ii) Offering supplies inscribed with security and privacy reminders;
[b.ii: Implementation Statement]
+ iii) Displaying logon screen and screensaver messages;
[b.iii: Implementation Statement]
+ iv) Generating email advisories or notices from organizational officials; and
[b.iv: Implementation Statement]
+ v) Conducting awareness events.
[b.v: Implementation Statement]
+c. Update literacy training and awareness content annually and following events that may precipitate an update, including but not limited to assessment or audit findings, cybersecurity or privacy incidents, or changes in applicable laws, directives, regulations, policies, standards, and guidelines; and
[c: Implementation Statement]
+d. Incorporate lessons learned from internal or external cybersecurity incidents or breaches into literacy training and awareness techniques.
[d: Implementation Statement]
+e. Mandate security awareness and training for users within 90 days of initial employment and annually thereafter; and
[e: Implementation Statement]
+f. For suspended accounts, reinstate network access after successfully completing the Security Awareness Training course.
[f: Implementation Statement]
+
+OT Systems Only:
+Security awareness training includes initial and periodic review of OT-specific policies, standard operating procedures, security trends, and vulnerabilities. The OT security awareness program is consistent with the requirements of the security awareness and training policy established by the organization.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-17, AC-22, AT-3, AT-4, CP-3, IA-4, IR-2, IR-7, IR-9, PL-4, PM-13, PM-21, PS-7, PT-2, SA-8, SA-16
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Security awareness training includes initial and periodic review of OT-specific policies, standard operating procedures, security trends, and vulnerabilities. The OT security awareness program is consistent with the requirements of the security awareness and training policy established by the organization.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Literacy Training and Awareness
a. Provide security and privacy literacy training to system users (including managers, senior executives, and contractors):
1. As part of initial training for new users and [Assignment: organization-defined frequency] thereafter; and
2. When required by system changes or following [Assignment: organization-defined events];
b. Employ the following techniques to increase the security and privacy awareness of system users [Assignment: organization-defined awareness techniques];
c. Update literacy training and awareness content [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
d. Incorporate lessons learned from internal or external security incidents or breaches into literacy training and awareness techniques.
Discussion:Organizations provide basic and advanced levels of literacy training to system users, including measures to test the knowledge level of users. Organizations determine the content of literacy training and awareness based on specific organizational requirements, the systems to which personnel have authorized access, and work environments (e.g., telework). The content includes an understanding of the need for security and privacy as well as actions by users to maintain security and personal privacy and to respond to suspected incidents. The content addresses the need for operations security and the handling of personally identifiable information.
Awareness techniques include displaying posters, offering supplies inscribed with security and privacy reminders, displaying logon screen messages, generating email advisories or notices from organizational officials, and conducting awareness events. Literacy training after the initial training described in AT-2a.1 is conducted at a minimum frequency consistent with applicable laws, directives, regulations, and policies. Subsequent literacy training may be satisfied by one or more short ad hoc sessions and include topical information on recent attack schemes, changes to organizational security and privacy policies, revised security and privacy expectations, or a subset of topics from the initial training. Updating literacy training and awareness content on a regular basis helps to ensure that the content remains relevant. Events that may precipitate an update to literacy training and awareness content include, but are not limited to, assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.
' WHERE [Requirement_Id] = 37576
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide literacy training on recognizing and reporting potential indicators of insider threat.
[Implementation Statement]
+
+Related Controls: IR-9, PM-12
+
+
+', [Supplemental_Info]=N' Insider Threat
Provide literacy training on recognizing and reporting potential indicators of insider threat.
Discussion:Potential indicators and possible precursors of insider threat can include behaviors such as inordinate, long-term job dissatisfaction; attempts to gain access to information not required for job performance; unexplained access to financial resources; bullying or harassment of fellow employees; workplace violence; and other serious violations of policies, procedures, directives, regulations, rules, or practices. Literacy training includes how to communicate the concerns of employees and management regarding potential indicators of insider threat through channels established by the organization and in accordance with established policies and procedures. Organizations may consider tailoring insider threat awareness topics to the role. For example, training for managers may be focused on changes in the behavior of team members, while training for employees may be focused on more general observations.' WHERE [Requirement_Id] = 37577
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Provide literacy training on recognizing and reporting potential and actual instances of social engineering and social mining.
[1: Implementation Statement]
+ f. Mandate security awareness and training for users within 90 days of initial employment and annually thereafter; and
[f: Implementation Statement]
+ g. For suspended accounts, reinstate network access after successfully completing the Security Awareness Training course.
[g: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N' Social Engineering and Mining
Provide literacy training on recognizing and reporting potential and actual instances of social engineering and social mining.
Discussion:Social engineering is an attempt to trick an individual into revealing information or taking an action that can be used to breach, compromise, or otherwise adversely impact a system. Social engineering includes phishing, pretexting, impersonation, baiting, quid pro quo, thread-jacking, social media exploitation, and tailgating. Social mining is an attempt to gather information about the organization that may be used to support future attacks. Literacy training includes information on how to communicate the concerns of employees and management regarding potential and actual instances of social engineering and data mining through organizational channels based on established policies and procedures.' WHERE [Requirement_Id] = 37578
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide literacy training on recognizing suspicious communications and anomalous behavior in organizational systems using [Assignment: organization-defined indicators of malicious code].
[Implementation Statement]
+
+OT Systems Only:
+Identify and communicate suspicious and anomalous behaviors within the OT environment. Some examples of OT suspicious or anomalous behavior may include a PLC still in programming mode when it is expected to be in run mode, process trips with undetermined root cause, malware on an HMI, unexpected mouse movement, or process changes that are not being performed by the operator.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Identify and communicate suspicious and anomalous behaviors within the OT environment. Some examples of OT suspicious or anomalous behavior may include a PLC still in programming mode when it is expected to be in run mode, process trips with an undetermined root cause, malware on an HMI, unexpected mouse movement, or process changes that are not being performed by the operator.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding AT-2 (4) to MOD and HIGH baselines: Training OT personnel on potentially suspicious communications and anomalous behaviors as well as the actions to take if anomalous system behavior occurs can supplement system detection and protection mechanisms for improved response.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Literacy Training and Awareness | Suspicious Communications and Anomalous System Behavior
Provide literacy training on recognizing suspicious communications and anomalous behavior in organizational systems using [Assignment: organization-defined indicators of malicious code].
Discussion:A well-trained workforce provides another organizational control that can be employed as part of a defense-in-depth strategy to protect against malicious code coming into organizations via email or the web applications. Personnel are trained to look for indications of potentially suspicious email (e.g., receiving an unexpected email, receiving an email containing strange or poor grammar, or receiving an email from an unfamiliar sender that appears to be from a known sponsor or contractor). Personnel are also trained on how to respond to suspicious email or web communications. For this process to work effectively, personnel are trained and made aware of what constitutes suspicious communications. Training personnel on how to recognize anomalous behaviors in systems can provide organizations with early warning for the presence of malicious code. Recognition of anomalous behavior by organizational personnel can supplement malicious code detection and protection tools and systems employed by organizations.' WHERE [Requirement_Id] = 37579
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide role-based (e.g., user, privileged user, etc.) security and privacy training to personnel:
[a: Implementation Statement]
+ i) Before authorizing access to the system, information, or performing assigned duties, and annually thereafter; and
[a.i: Implementation Statement]
+ ii) When required by system changes;
[a.ii: Implementation Statement]
+b. Update role-based training content annually and following events that may precipitate an update, including but not limited to, assessment or audit findings, cybersecurity or privacy incidents, or changes in applicable laws, directives, regulations, policies, standards, and guidelines; and
[b: Implementation Statement]
+c. Incorporate lessons learned from internal or external cybersecurity incidents or breaches into role-based training.
[c: Implementation Statement]
+
+OT Systems Only:
+Security training includes initial and periodic review of OT-specific policies, standard operating procedures, security trends, and vulnerabilities. The OT security training program is consistent with the requirements of the security awareness and training policy established by the organization. The training may be customized for specific OT roles, which could include operators, maintainers, engineers, supervisors, and administrators.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-17, AC-22, AT-2, AT-4, CP-3, IR-2, IR-4, IR-7, IR-9, PL-4, PM-13, PM-23, PS-7, PS-9, SA-3, SA-8, SA-11, SA-16, SR-5, SR-6, SR-11
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Security training includes initial and periodic review of OT-specific policies, standard operating procedures, security trends, and vulnerabilities. The OT security training program is consistent with the requirements of the security awareness and training policy established by the organization. The training may be customized for specific OT roles, which could include operators, maintainers, engineers, supervisors, and administrators.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Role-based Training
a. Provide role-based security and privacy training to personnel with the following roles and responsibilities: [Assignment: organization-defined roles and responsibilities]:
1. Before authorizing access to the system, information, or performing assigned duties, and [Assignment: organization-defined frequency]
thereafter; and
2. When required by system changes;
b. Update role-based training content [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
c. Incorporate lessons learned from internal or external security incidents or breaches into role-based training.
Discussion:Organizations determine the content of training based on the assigned roles and responsibilities of individuals as well as the security and privacy requirements of organizations and the systems to which personnel have authorized access, including technical training specifically tailored for assigned duties. Roles that may require role-based training include senior leaders or management officials (e.g., head of agency/chief executive officer, chief information officer, senior accountable official for risk management, senior agency information security officer, senior agency official for privacy), system owners; authorizing officials; system security officers; privacy officers; acquisition and procurement officials; enterprise architects; systems engineers; software developers; systems security engineers; privacy engineers; system, network, and database administrators; auditors; personnel conducting configuration management activities; personnel performing verification and validation activities; personnel with access to system-level software; control assessors; personnel with contingency planning and incident response duties; personnel with privacy management responsibilities; and personnel with access to personally identifiable information.
Comprehensive role-based training addresses management, operational, and technical roles and responsibilities covering physical, personnel, and technical controls. Role-based training also includes policies, procedures, tools, methods, and artifacts for the security and privacy roles defined. Organizations provide the training necessary for individuals to fulfill their responsibilities related to operations and supply chain risk management within the context of organizational security and privacy programs. Role-based training also applies to contractors who provide services to federal agencies. Types of training include web-based and computer-based training, classroom-style training, and hands-on training (including micro-training). Updating role-based training on a regular basis helps to ensure that the content remains relevant and effective. Events that may precipitate an update to role-based training content include, but are not limited to, assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.
' WHERE [Requirement_Id] = 37580
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide applicable personnel with initial and annual training in the employment and operation of personally identifiable information processing and transparency controls.
[Implementation Statement]
+
+Related Controls: PT-2, PT-3, PT-5, PT-6
+
+
+', [Supplemental_Info]=N' Processing Personally Identifiable Information
Provide [Assignment: organization-defined personnel or roles] with initial and [Assignment: organization-defined frequency] training in the employment and operation of personally identifiable information processing and transparency controls.
Discussion:Personally identifiable information processing and transparency controls include the organization’s authority to process personally identifiable information and personally identifiable information processing purposes. Role-based training for federal agencies addresses the types of information that may constitute personally identifiable information and the risks, considerations, and obligations associated with its processing. Such training also considers the authority to process personally identifiable information documented in privacy policies and notices, system of records notices, computer matching agreements and notices, privacy impact assessments, [PRIVACT] statements, contracts, information sharing agreements, memoranda of understanding, and/or other documentation.' WHERE [Requirement_Id] = 37581
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Document and monitor information security and privacy training activities, including security and privacy awareness training and specific role-based security and privacy training;
[a: Implementation Statement]
+b. Retain individual training records to align with enterprise learning and management application requirements; and
[b: Implementation Statement]
+c. Reporting training compliance minimally on a quarterly basis.
[c: Implementation Statement]
+
+Related Controls: AT-2, AT-3, CP-3, IR-2, PM-14, SI-12
+
+
+
+
+
+', [Supplemental_Info]=N'Training Records
a. Document and monitor information security and privacy training activities, including security and privacy awareness training and specific role-based security and privacy training; and
b. Retain individual training records for [Assignment: organization-defined time period].
Discussion:Documentation for specialized training may be maintained by individual supervisors at the discretion of the organization. The National Archives and Records Administration provides guidance on records retention for federal agencies.' WHERE [Requirement_Id] = 37582
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Audit and Accountability Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] audit and accountability policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the audit and accountability policy and the associated audit and accountability controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the audit and accountability policy and procedures; and
c. Review and update the current audit and accountability:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Audit and accountability policy and procedures address the controls in the AU family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of audit and accountability policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to audit and accountability policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37583
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide irrefutable evidence that an individual (or process acting on behalf of an individual) has performed actions to include creating information, sending and receiving messages, and approving information.
[Implementation Statement]
+
+OT Systems Only:
+OT devices may not enforce non-repudiation of audit records and may require compensating controls. Example compensating controls include physical security systems, cameras to monitor user access, or a separate device for log collection.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-9, SA-8, PM-12, SC-8, SC-12, SC-13, SC-17, SC-23
+
+NIST 800-82 Rev 3:
+OT Discussion: OT devices may not enforce non-repudiation of audit records and may require compensating controls. Example compensating controls include physical security systems, cameras to monitor user access, or a separate device for log collection.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Non-repudiation
Provide irrefutable evidence that an individual (or process acting on behalf of an individual) has performed [Assignment: organization-defined actions to be covered by non-repudiation].
Discussion:Types of individual actions covered by non-repudiation include creating information, sending and receiving messages, and approving information. Non-repudiation protects against claims by authors of not having authored certain documents, senders of not having transmitted messages, receivers of not having received messages, and signatories of not having signed documents. Non-repudiation services can be used to determine if information originated from an individual or if an individual took specific actions (e.g., sending an email, signing a contract, approving a procurement request, or receiving specific information). Organizations obtain non-repudiation services by employing various techniques or mechanisms, including digital signatures and digital message receipts.' WHERE [Requirement_Id] = 37584
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Retain audit records for all WMATA systems for at least five years or longer if specified by applicable regulation, law, or external compliance mandate to provide support for after-the- fact investigations of incidents and to meet regulatory and organizational information retention requirements.
[a: Implementation Statement]
+
+Related Controls: AU-2, AU-4, AU-5, AU-6, AU-9, MP-6, RA-5, SI-12
+
+
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.3. Logging policies that —
+
+D.3.b. Ensure data is maintained for sufficient periods, to provide effective investigation of cybersecurity incidents. (p.8)
[D.3.b: Implementation Statement]
+', [Supplemental_Info]=N'Audit Record Retention
Retain audit records for [Assignment: organization-defined time period consistent with records retention policy] to provide support for after-the-fact investigations of incidents and to meet regulatory and organizational information retention requirements.
Discussion:Organizations retain audit records until it is determined that the records are no longer needed for administrative, legal, audit, or other operational purposes. This includes the retention and availability of audit records relative to Freedom of Information Act (FOIA) requests, subpoenas, and law enforcement actions. Organizations develop standard categories of audit records relative to such types of actions and standard response processes for each type of action. The National Archives and Records Administration (NARA) General Records Schedules provide federal policy on records retention.' WHERE [Requirement_Id] = 37585
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide audit record generation capability for the event types the system is capable of auditing in accordance with Control 3.3 Audit and Accountability, Section 2, (a), “AU-2 Event Logging”, on all system components;
[a: Implementation Statement]
+b. Allow required stakeholders to select the event types that are to be logged by specific components of the system; and
[b: Implementation Statement]
+c. Generate audit records for the event types in accordance with Control 3.3 Audit and Accountability, Section 2, (c), “AU-2 Event Logging”, that includes the audit record content in accordance with Control 3.3 Audit and Accountability, Section 3, “AU-3 Content of Audit Records.
[c: Implementation Statement]
+
+Related Controls: AC-6, AC-17, AU-2, AU-3, AU-4, AU-5, AU-6, AU-7, CM-5, MA-4, MP-4, PM-12, SA-8, SC-18, SI-3, SI-4, SI-7, SI-10
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to —
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+', [Supplemental_Info]=N'Audit Record Generation
a. Provide audit record generation capability for the event types the system is capable of auditing as defined in AU-2a on [Assignment: organization-defined system components];
b. Allow [Assignment: organization-defined personnel or roles] to select the event types that are to be logged by specific components of the system; and
c. Generate audit records for the event types defined in AU-2c that include the audit record content defined in AU-3.
Discussion:Audit records can be generated from many different system components. The event types specified in AU-2d are the event types for which audit logs are to be generated and are a subset of all event types for which the system can generate audit records.' WHERE [Requirement_Id] = 37586
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Compile audit records from all system components into a system-wide (logical or physical) audit trail that is time-correlated to within 30 seconds of WMATA standard time as defined in WMATA policy. All systems shall use network time.
[Implementation Statement]
+
+Related Controls: AU-8, SC-45
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include providing time-correlated audit records on a separate system.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+
+
+
+', [Supplemental_Info]=N'Audit Record Generation | System-wide and Time-correlated Audit Trail
Compile audit records from [Assignment: organization-defined system components] into a system-wide (logical or physical) audit trail that is time-correlated to within [Assignment: organization-defined level of tolerance for the relationship between time stamps of individual records in the audit trail].
Discussion:Audit trails are time-correlated if the time stamps in the individual audit records can be reliably related to the time stamps in other audit records to achieve a time ordering of the records within organizational tolerances.' WHERE [Requirement_Id] = 37587
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide and implement the capability for system administrators to change the criteria for logging to be performed on information systems based on System Owner requirements as approved by the AO.
[Implementation Statement]
+
+Related Controls: AC-3
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include employing nonautomated mechanisms or procedures.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N'Audit Record Generation | Changes by Authorized Individuals
Provide and implement the capability for [Assignment: organization-defined individuals or roles] to change the logging to be performed on [Assignment: organization-defined system components] based on [Assignment: organization-defined selectable event criteria] within [Assignment: organization-defined time thresholds].
Discussion:Permitting authorized individuals to make changes to system logging enables organizations to extend or limit logging as necessary to meet organizational requirements. Logging that is limited to conserve system resources may be extended (either temporarily or permanently) to address certain threat situations. In addition, logging may be limited to a specific set of event types to facilitate audit reduction, analysis, and reporting. Organizations can establish time thresholds in which logging actions are changed (e.g., near real-time, within minutes, or within hours).' WHERE [Requirement_Id] = 37588
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide and implement the capability for [Assignment: organization-defined users or roles] to
[Selection (one or more): record; view; hear; log] the content of a user session under [Assignment: organization-defined circumstances]; and
[a: Implementation Statement]
+b. Develop, integrate, and use session auditing activities in consultation with legal counsel and in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.
[b: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to —
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+', [Supplemental_Info]=N'Session Audit
a. Provide and implement the capability for [Assignment: organization-defined users or roles] to [Selection (one or more): record; view; hear; log] the content of a user session under [Assignment: organization-defined circumstances]; and
b. Develop, integrate, and use session auditing activities in consultation with legal counsel and in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.
Discussion:Session audits can include monitoring keystrokes, tracking websites visited, and recording information and/or file transfers. Session audit capability is implemented in addition to event logging and may involve implementation of specialized session capture technology. Organizations consider how session auditing can reveal information about individuals that may give rise to privacy risk as well as how to mitigate those risks. Because session auditing can impact system and network performance, organizations activate the capability under well-defined situations (e.g., the organization is suspicious of a specific individual). Organizations consult with legal counsel, civil liberties officials, and privacy officials to ensure that any legal, privacy, civil rights, or civil liberties issues, including the use of personally identifiable information, are appropriately addressed.' WHERE [Requirement_Id] = 37589
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Identify the types of events that the system is capable of logging in support of the audit function and document those events in the System Security Plans (SSP). Additionally, all exceptions to the audit event types shall be authorized by the AO and documented in SSPs. This list includes but is not limited to:
[a: Implementation Statement]
+ i) Password changes;
[a.i: Implementation Statement]
+ ii) Failed or successful logons or accesses related to systems;
[a.ii: Implementation Statement]
+ iii) Logoffs;
[a.iii: Implementation Statement]
+ iv) Security or privacy attribute changes;
[a.iv: Implementation Statement]
+ v) Administrative privilege usage;
[a.v: Implementation Statement]
+ vi) Personal Identity Verification (PIV) credential usage;
[a.vi: Implementation Statement]
+ vii) Data action changes;
[a.vii: Implementation Statement]
+ viii) Query parameters;
[a.viii: Implementation Statement]
+ ix) External credential usage;
[a.ix: Implementation Statement]
+ x) Encryption errors or failures occur;
[a.x: Implementation Statement]
+ xi) Authentication events to include successful and unsuccessful (failed):
[a.xi: Implementation Statement]
+ (1) Information Requests and Server Responses;
[a.xi.1: Implementation Statement]
+ (2) Identities of individuals or processes;
[a.xi.2: Implementation Statement]
+ (3) IP addresses involved;
[a.xi.3: Implementation Statement]
+ (4) Use of credentials for logical access to systems or physical access to facilities;
[a.xi.4: Implementation Statement]
+ xii) User activities to include event types, locations, dates and times of activities within the system; event success and failure; data and object access, modifications and deletions; queries and query parameter access, modifications and deletions; and attempts to access system objects (e.g., files, folders, registry keys, and printers);
[a.xii: Implementation Statement]
+ xiii) Privileged functions to include the creation, modification, disablement, and deletion (removal) of accounts; audit logs; sensitive information (includes security or privacy attributes or data); administrator events and event success and failure (activities, such as windows “runas” or Linux “su” use, use of suid/guid, chown, su); starting and stopping of services and audit functions, installation and modifications to system software/application, firmware, processes and services;
[a.xiii: Implementation Statement]
+ xiv) Software, firmware and hardware errors, and system resources involved;
[a.xiv: Implementation Statement]
+ xv) Web applications shall log all user and administrator activity to include application and service startup, shutdown and failure; authentication and authorization successes and failures; data access, account creation, modifications, deletions, and permission changes; and
[a.xv: Implementation Statement]
+ xvi) Additional types of events may be required based on emerging threats or federal recommendations.
[a.xvi: Implementation Statement]
+b. Coordinate the event logging function with other organizational entities requiring audit-related information to guide and inform the selection criteria for events to be logged.
[b: Implementation Statement]
+c. All events in accordance with Control 3.3 Audit and Accountability, Section 2, “AU-2 Event Logging”, shall be logged as they occur, and for each incidence of the occurrence, and any required alert and/or notifications shall be implemented in compliance with Control 3.3 Audit and Accountability, Section 5, (b), (iv), “AU-5 (2) Real-Time Alerts”;
[c: Implementation Statement]
+d. Provide a rationale for why the event types selected for logging are deemed to be adequate to support after-the-fact investigations of incidents; and
[d:Implementation Statement]
+e. Review and update the event types selected for logging annually.
[e: Implementation Statement]
+f. All systems or applications that store, process, or transmit sensitive information as defined in WMATA policy, shall log access, modification, and deletion to sensitive information. When feasible, the content associated with the sensitive information (e.g., credit card numbers, Social Security Numbers (SSN), Protected Health Information (PHI), Electronic (ePHI), etc.) shall not be stored in audit records in accordance with Control 3.3 Audit and Accountability, Section 3, (f), (i), AU-3 (1) “Additional Audit Information” and Section 3, (f), (ii), AU-3 (3) “Limit Personally Identifiable Information (PII) Elements.”
[f: Implementation Statement]
+
+OT Systems Only:
+Organizations may want to include relevant OT events (e.g., alerts, alarms, configuration and status changes, operator actions) in their event logging, which may be designated as audit events.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-6, AC-7, AC-8, AC-17, AU-3, AU-4, AU-5, AU-6, AU-7, AU-11, AU-12, CM-3, CM-5, CM-6, IA-3, MA-4, MP-4, PE-3, PM-21, PT-2, PT-7, RA-8, SA-8, SC-7, SC-18, SI-3, SI-4, SI-7, SI-10, SI-11
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations may want to include relevant OT events (e.g., alerts, alarms, configuration and status changes, operator actions) in their event logging, which may be designated as audit events.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to —
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.3. Logging policies that –
+
+D.3.a. Require continuous collection and analyzing of data for potential intrusions and anomalous behavior on Critical Cyber Systems and other Operational and Information Technology systems that directly connects with Critical Cyber Systems; and (p.8)
[D.3.a: Implementation Statement]
+', [Supplemental_Info]=N'Event Logging
a. Identify the types of events that the system is capable of logging in support of the audit function: [Assignment: organization-defined event types that the system is capable of logging];
b. Coordinate the event logging function with other organizational entities requiring audit-related information to guide and inform the selection criteria for events to be logged;
c. Specify the following event types for logging within the system: [Assignment: organization-defined event types (subset of the event types defined in AU-2a.) along with the frequency of (or situation requiring) logging for each identified event type];
d. Provide a rationale for why the event types selected for logging are deemed to be adequate to support after-the-fact investigations of incidents; and
e. Review and update the event types selected for logging [Assignment: organization-defined frequency].
Discussion:An event is an observable occurrence in a system. The types of events that require logging are those events that are significant and relevant to the security of systems and the privacy of individuals. Event logging also supports specific monitoring and auditing needs. Event types include password changes, failed logons or failed accesses related to systems, security or privacy attribute changes, administrative privilege usage, PIV credential usage, data action changes, query parameters, or external credential usage. In determining the set of event types that require logging, organizations consider the monitoring and auditing appropriate for each of the controls to be implemented. For completeness, event logging includes all protocols that are operational and supported by the system.
To balance monitoring and auditing requirements with other system needs, event logging requires identifying the subset of event types that are logged at a given point in time. For example, organizations may determine that systems need the capability to log every file access successful and unsuccessful, but not activate that capability except for specific circumstances due to the potential burden on system performance. The types of events that organizations desire to be logged may change. Reviewing and updating the set of logged events is necessary to help ensure that the events remain relevant and continue to support the needs of the organization. Organizations consider how the types of logging events can reveal information about individuals that may give rise to privacy risk and how best to mitigate such risks. For example, there is the potential to reveal personally identifiable information in the audit trail, especially if the logging event is based on patterns or time of usage.
Event logging requirements, including the need to log specific event types, may be referenced in other controls and control enhancements. These include AC-2(4), AC-3(10), AC-6(9), AC-17(1), CM-3f, CM-5(1), IA-3(3.b), MA-4(1), MP-4(2), PE-3, PM-21, PT-7, RA-8, SC-7(9), SC-7(15), SI-3(8), SI-4(22), SI-7(8), and SI-10(1). Organizations include event types that are required by applicable laws, executive orders, directives, policies, regulations, standards, and guidelines. Audit records can be generated at various levels, including at the packet level as information traverses the network. Selecting the appropriate level of event logging is an important part of a monitoring and auditing capability and can identify the root causes of problems. When defining event types, organizations consider the logging necessary to cover related event types, such as the steps in distributed, transaction-based processes and the actions that occur in service-oriented architectures.
' WHERE [Requirement_Id] = 37590
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Ensure that audit records contain information that establishes the following:
[Implementation Statement]
+
+a. What type of event occurred;
[a: Implementation Statement]
+b. When the event occurred;
[b: Implementation Statement]
+c. Where the event occurred;
[c: Implementation Statement]
+d. Source of the event;
[d: Implementation Statement]
+e. Outcome of the event; and
[e: Implementation Statement]
+f. Identity of any individuals, subjects, or objects/entities associated with the event.
[f: Implementation Statement]
+
+Related Controls: AU-2, AU-8, AU-12, MA-4, PL-9, SA-8, SI-7, SI-11
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to —
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.3. Logging policies that –
+
+D.3.a. Require continuous collection and analyzing of data for potential intrusions and anomalous behavior on Critical Cyber Systems and other Operational and Information Technology systems that directly connects with Critical Cyber Systems; and (p.8)
[D.3: Implementation Statement]
+', [Supplemental_Info]=N'Content of Audit Records
a. What type of event occurred;
b. When the event occurred;
c. Where the event occurred;
d. Source of the event;
e. Outcome of the event; and
f. Identity of any individuals, subjects, or objects/entities associated with the event.
Discussion:Audit record content that may be necessary to support the auditing function includes event descriptions (item a), time stamps (item b), source and destination addresses (item c), user or process identifiers (items d and f), success or fail indications (item e), and filenames involved (items a, c, e, and f) . Event outcomes include indicators of event success or failure and event-specific results, such as the system security and privacy posture after the event occurred. Organizations consider how audit records can reveal information about individuals that may give rise to privacy risks and how best to mitigate such risks. For example, there is the potential to reveal personally identifiable information in the audit trail, especially if the trail records inputs or is based on patterns or time of usage.' WHERE [Requirement_Id] = 37591
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Generate audit records that contain content specified in Control 3.3 Audit and Accountability, Section 3, AU-3 (a) – (c), “Content of Audit Records”. In addition, ensure that audit records contain access control or flow control rules that are invoked, and individual user identities are used for access to group accounts.
[Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.3. Logging policies that –
+
+D.3.a. Require continuous collection and analyzing of data for potential intrusions and anomalous behavior on Critical Cyber Systems and other Operational and Information Technology systems that directly connects with Critical Cyber Systems; and (p.8)
[D.3.a; Implementation Statement]
+', [Supplemental_Info]=N' Additional Audit Information
Generate audit records containing the following additional information: [Assignment: organization-defined additional information].
Discussion:The ability to add information generated in audit records is dependent on system functionality to configure the audit record content. Organizations may consider additional information in audit records including, but not limited to, access control or flow control rules invoked and individual identities of group account users. Organizations may also consider limiting additional audit record information to only information that is explicitly needed for audit requirements. This facilitates the use of audit trails and audit logs by not including information in audit records that could potentially be misleading, make it more difficult to locate information of interest, or increase the risk to individuals'' privacy.' WHERE [Requirement_Id] = 37592
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Limit PII and other forms of sensitive data in accordance with Control 3.8 Data Sensitivity, in audit records to the maximum extent feasible.
[Implementation Statement]
+
+Related Controls: RA-3
+
+
+', [Supplemental_Info]=N' Limit Personally Identifiable Information Elements
Limit personally identifiable information contained in audit records to the following elements identified in the privacy risk assessment: [Assignment: organization-defined elements].
Discussion:Limiting personally identifiable information in audit records when such information is not needed for operational purposes helps reduce the level of privacy risk created by a system.' WHERE [Requirement_Id] = 37593
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Allocate audit log storage capacity to accommodate application or system requirements. Assess capacity requirements for audit logging to never exceed 75% capacity. Exceptions to the capacity limit in the range of 76-89% must be approved by the AO and include the following justifications:
[Implementation Statement]
+
+a. Demonstrated acceptable system performance above 75% capacity limit;
[a: Implementation Statement]
+b. Define the limited business impact of system failure;
[b: Implementation Statement]
+c. Business explanation why 75% capacity limit cannot be achieved;
[c: Implementation Statement]
+ 1) Capacity limit shall not exceed 90%.
[c.1: Implementation Statement]
+ 2) Reassess capacity requirements whenever exceeding the authorized threshold. Additionally, reassessing capacity requirements for audit logging based on system changes, performance, and alerts.
[c.2: Implementation Statement]
+
+Related Controls: AU-2, AU-5, AU-6, AU-7, AU-9, AU-11, AU-12, SI-4
+
+d. Security Controls Enhancement(s):
[d:Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to—
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.3. Logging policies that —
+
+D.3.b. Ensure data is maintained for sufficient periods, to provide effective investigation of cybersecurity incidents. (p.8)
[D.3.b: Implementation Statement]
+', [Supplemental_Info]=N'Audit Log Storage Capacity
Allocate audit log storage capacity to accommodate [Assignment: organization-defined audit log retention requirements].
Discussion:Organizations consider the types of audit logging to be performed and the audit log processing requirements when allocating audit log storage capacity. Allocating sufficient audit log storage capacity reduces the likelihood of such capacity being exceeded and resulting in the potential loss or reduction of audit logging capability.' WHERE [Requirement_Id] = 37594
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Transfer audit logs [Assignment: organization-defined frequency] to a different system, system component, or media other than the system or system component conducting the logging.
[Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Rationale for adding AU-4 (1) to LOW, MOD, and HIGH baselines: Organizational requirements may require the storage of very large amounts of data, which OT components may not be able to support directly.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Audit Log Storage Capacity | Transfer to Alternate Storage
Transfer audit logs [Assignment: organization-defined frequency] to a different system, system component, or media other than the system or system component conducting the logging.
Discussion:Audit log transfer, also known as off-loading, is a common process in systems with limited audit log storage capacity and thus supports availability of the audit logs. The initial audit log storage is only used in a transitory fashion until the system can communicate with the secondary or alternate system allocated to audit log storage, at which point the audit logs are transferred. Transferring audit logs to alternate storage is similar to AU-9(2) in that audit logs are transferred to a different entity. However, the purpose of selecting AU-9(2) is to protect the confidentiality and integrity of audit records. Organizations can select either control enhancement to obtain the benefit of increased audit log storage capacity and preserving the confidentiality, integrity, and availability of audit records and logs.' WHERE [Requirement_Id] = 37595
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Alert the required stakeholders immediately in the event of an audit logging process failure; and
[a: Implementation Statement]
+b. Take the following additional actions:
[b: Implementation Statement]
+ i) Systems shall specify in the SSP actions that are taken in the event of an audit processing failure, to include overwriting oldest audit records and shutting down the system. All database systems shall comply with hardening checklists (e.g., STIGs/Benchmarks) and shutdown in the event there is an audit processing failure.
[b.i: Implementation Statement]
+ (1) If overwriting is to be employed, audit logs shall be centralized or moved to external storage to preserve the audit content in accordance with Control 3.3 Audit and Accountability, Section 11, “AU-11 Audit Record Retention.”
[b.i.1: Implementation Statement]
+ (2) If the system is to be shut down due to an audit process failure, the relevant Audit and Accountability (AU), Planning (PL) and Contingency Planning (CP) controls within the SSP and associated contingency plan and/or Information System Contingency Plan (ISCP) shall be updated to reflect how operations shall be maintained in the event of a em component outage.
[b.i.2.i: Implementation Statement]
All systems shall have functional audit generation capabilities.
+ ii) In the event of an audit process logging failure, investigate root cause and create an incident:
[b.i.2.ii: Implementation Statement]
+ (1) With Metro Enterprise Monitoring Center (MEMC) for operational incidents; and
[b.i.2.ii.1: Implementation Statement]
+ (2) With DMCS for malicious or cybersecurity incidents.
[b.i.2.ii.2: Implementation Statement]
+
+Related Controls: AU-2, AU-4, AU-7, AU-9, AU-11, AU-12, SI-4, SI-12
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Response to Audit Logging Process Failures
a. Alert [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period] in the event of an audit logging process failure; and
b. Take the following additional actions: [Assignment: organization-defined additional actions].
Discussion:Audit logging process failures include software and hardware errors, failures in audit log capturing mechanisms, and reaching or exceeding audit log storage capacity. Organization-defined actions include overwriting oldest audit records, shutting down the system, and stopping the generation of audit records. Organizations may choose to define additional actions for audit logging process failures based on the type of failure, the location of the failure, the severity of the failure, or a combination of such factors. When the audit logging process failure is related to storage, the response is carried out for the audit log storage repository (i.e., the distinct system component where the audit logs are stored), the system on which the audit logs reside, the total audit log storage capacity of the organization (i.e., all audit log storage repositories combined), or all three. Organizations may decide to take no additional actions after alerting designated roles or personnel.' WHERE [Requirement_Id] = 37596
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide a warning to MEMC and any other required stakeholders, immediately when allocated audit log storage volume reaches 75%, and again at 90% of repository maximum audit log storage capacity.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Storage Capacity Warning
Provide a warning to [Assignment: organization-defined personnel, roles, and/or locations] within [Assignment: organization-defined time period] when allocated audit log storage volume reaches [Assignment: organization-defined percentage] of repository maximum audit log storage capacity.
Discussion:Organizations may have multiple audit log storage repositories distributed across multiple system components with each repository having different storage volume capacities.' WHERE [Requirement_Id] = 37597
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide an alert immediately to the required stakeholders when the following audit failure events occur, at a minimum:
[Implementation Statement]
+
+(1) System and service is stopped or severely degraded, or
[1: Implementation Statement]
+(2) Audit processing capability or component failures or errors occur within a system, to include:
[2: Implementation Statement]
+ (a) Audit log is full; and
[2.a: Implementation Statement]
+ (b) Audit log cannot log authentication attempts and responses.
[2.b: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Real-time Alerts
Provide an alert within [Assignment: organization-defined real-time period] to [Assignment: organization-defined personnel, roles, and/or locations] when the following audit failure events occur: [Assignment: organization-defined audit logging failure events requiring real-time alerts].
Discussion:Alerts provide organizations with urgent messages. Real-time alerts provide these messages at information technology speed (i.e., the time from event detection to alert occurs in seconds or less).' WHERE [Requirement_Id] = 37598
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Review and analyze system audit records at least monthly for indications of defined inappropriate or unusual activity and the potential impact of the inappropriate or unusual activity;
[a: Implementation Statement]
+b. Report findings to required stakeholders and DMCS; and
[b: Implementation Statement]
+c. Adjust the level of audit record review, analysis, and reporting within the system when there is a change in risk based on law enforcement information, intelligence information, or other credible sources of information.
[c: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-5, AC-6, AC-7, AC-17, AU-7, CA-2, CA-7, CM-2, CM-5, CM-6, CM-10, CM-11, IA-2, IA-3, IA-5, IA-8, IR-5, MA-4, MP-4, PE-3, PE-6, RA-5, SA-8, SC-7, SI-3, SI-4, SI-7
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to—
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+', [Supplemental_Info]=N'Audit Record Review, Analysis, and Reporting
a. Review and analyze system audit records [Assignment: organization-defined frequency] for indications of [Assignment: organization-defined inappropriate or unusual activity] and the potential impact of the inappropriate or unusual activity;
b. Report findings to [Assignment: organization-defined personnel or roles]; and
c. Adjust the level of audit record review, analysis, and reporting within the system when there is a change in risk based on law enforcement information, intelligence information, or other credible sources of information.
Discussion:Audit record review, analysis, and reporting covers information security- and privacy-related logging performed by organizations, including logging that results from the monitoring of account usage, remote access, wireless connectivity, mobile device connection, configuration settings, system component inventory, use of maintenance tools and non-local maintenance, physical access, temperature and humidity, equipment delivery and removal, communications at system interfaces, and use of mobile code or Voice over Internet Protocol (VoIP). Findings can be reported to organizational entities that include the incident response team, help desk, and security or privacy offices. If organizations are prohibited from reviewing and analyzing audit records or unable to conduct such activities, the review or analysis may be carried out by other organizations granted such authority. The frequency, scope, and/or depth of the audit record review, analysis, and reporting may be adjusted to meet organizational needs based on new information received.' WHERE [Requirement_Id] = 37599
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Integrate audit record review, analysis, and reporting processes via an enterprise solution (or solutions) to enable services, such as incident response, continuous monitoring, contingency planning, and investigation and response to suspicious activities.
[Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include manual mechanisms or procedures. For devices where audit records cannot be feasibly collected, periodic manual review may be necessary.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PM-7
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include manual mechanisms or procedures. For devices where audit records cannot be feasibly collected, periodic manual review may be necessary.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Audit Record Review, Analysis, and Reporting | Automated Process Integration
Integrate audit record review, analysis, and reporting processes using [Assignment: organization-defined automated mechanisms].
Discussion:Organizational processes that benefit from integrated audit record review, analysis, and reporting include incident response, continuous monitoring, contingency planning, investigation and response to suspicious activities, and Inspector General audits.' WHERE [Requirement_Id] = 37600
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Analyze and correlate audit records across different repositories to gain organization-wide situational awareness.
[Implementation Statement]
+
+Related Controls: AU-12, IR-4
+
+
+', [Supplemental_Info]=N' Correlate Audit Record Repositories
Analyze and correlate audit records across different repositories to gain organization-wide situational awareness.
Discussion:Organization-wide situational awareness includes awareness across all three levels of risk management (i.e., organizational level, mission/business process level, and information system level) and supports cross-organization awareness.' WHERE [Requirement_Id] = 37601
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Integrate analysis of audit records with analysis of vulnerability scanning information; performance data; and system monitoring information at a minimum to further enhance the ability to identify inappropriate or unusual activity.
[Implementation Statement]
+
+Related Controls: AU-12, IR-4
+
+
+', [Supplemental_Info]=N' Integrated Analysis of Audit Records
Integrate analysis of audit records with analysis of [Selection (one or more): vulnerability scanning information; performance data; system monitoring information; [Assignment: organization-defined data/information collected from other sources]] to further enhance the ability to identify inappropriate or unusual activity.
Discussion:Integrated analysis of audit records does not require vulnerability scanning, the generation of performance data, or system monitoring. Rather, integrated analysis requires that the analysis of information generated by scanning, monitoring, or other data collection activities is integrated with the analysis of audit record information. Security Information and Event Management tools can facilitate audit record aggregation or consolidation from multiple system components as well as audit record correlation and analysis. The use of standardized audit record analysis scripts developed by organizations (with localized script adjustments, as necessary) provides more cost-effective approaches for analyzing audit record information collected. The correlation of audit record information with vulnerability scanning information is important in determining the veracity of vulnerability scans of the system and in correlating attack detection events with scanning results. Correlation with performance data can uncover denial-of-service attacks or other types of attacks that result in the unauthorized use of resources. Correlation with system monitoring information can assist in uncovering attacks and in better relating audit information to operational situations.' WHERE [Requirement_Id] = 37602
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Correlate information from audit records with information obtained from monitoring physical access to further enhance the ability to identify suspicious, inappropriate, unusual, or malevolent activity.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Correlation with Physical Monitoring
Correlate information from audit records with information obtained from monitoring physical access to further enhance the ability to identify suspicious, inappropriate, unusual, or malevolent activity.
Discussion:The correlation of physical audit record information and the audit records from systems may assist organizations in identifying suspicious behavior or supporting evidence of such behavior. For example, the correlation of an individual’s identity for logical access to certain systems with the additional physical security information that the individual was present at the facility when the logical access occurred may be useful in investigations.' WHERE [Requirement_Id] = 37603
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Supports on-demand audit record review, analysis, and reporting requirements and after- the-fact investigations of incidents; and
[a: Implementation Statement]
+b. Does not alter the original content or time ordering of audit records.
[b: Implementation Statement]
+
+Related Controls: AC-2, AU-2, AU-3, AU-4, AU-5, AU-6, AU-12, CM-5, IA-5, IR-4, PM-12, SI-4
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Audit Record Reduction and Report Generation
a. Supports on-demand audit record review, analysis, and reporting requirements and after-the-fact investigations of incidents; and
b. Does not alter the original content or time ordering of audit records.
Discussion:Audit record reduction is a process that manipulates collected audit log information and organizes it into a summary format that is more meaningful to analysts. Audit record reduction and report generation capabilities do not always emanate from the same system or from the same organizational entities that conduct audit logging activities. The audit record reduction capability includes modern data mining techniques with advanced data filters to identify anomalous behavior in audit records. The report generation capability provided by the system can generate customizable reports. Time ordering of audit records can be an issue if the granularity of the timestamp in the record is insufficient.' WHERE [Requirement_Id] = 37604
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide and implement the capability to process, sort, and search audit records for events of interest based on the following content: system resources involved, information objects accessed, identities of individuals or processes, event types, event locations, event dates and times, IP addresses involved, and event success or failure. The DM department may define event criteria to any degree of granularity required, such as locations selectable by a general networking location or by a specific system component.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automatic Processing
Provide and implement the capability to process, sort, and search audit records for events of interest based on the following content: [Assignment: organization-defined fields within audit records].
Discussion:Events of interest can be identified by the content of audit records, including system resources involved, information objects accessed, identities of individuals, event types, event locations, event dates and times, Internet Protocol addresses involved, or event success or failure. Organizations may define event criteria to any degree of granularity required, such as locations selectable by a general networking location or by specific system component.' WHERE [Requirement_Id] = 37605
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Use internal system clocks to generate time stamps for audit records; and
[a: Implementation Statement]
+b. Record time stamps for audit records that meet accuracy to within 100 milliseconds and that use Coordinated Universal Time (UTC), have a fixed local time offset from UTC, or include the local time offset as part of the time stamp.
[b: Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include using a separate system designated as an authoritative time source. See related control SC-45.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-3, AU-12, SC-45
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include using a separate system designated as an authoritative time source. See related control SC-45.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Time Stamps
a. Use internal system clocks to generate time stamps for audit records; and
b. Record time stamps for audit records that meet [Assignment: organization-defined granularity of time measurement] and that use Coordinated Universal Time, have a fixed local time offset from Coordinated Universal Time, or that include the local time offset as part of the time stamp.
Discussion:Time stamps generated by the system include date and time. Time is commonly expressed in Coordinated Universal Time (UTC), a modern continuation of Greenwich Mean Time (GMT), or local time with an offset from UTC. Granularity of time measurements refers to the degree of synchronization between system clocks and reference clocks (e.g., clocks synchronizing within hundreds of milliseconds or tens of milliseconds). Organizations may define different time granularities for different system components. Time service can be critical to other security capabilities such as access control and identification and authentication, depending on the nature of the mechanisms used to support those capabilities.' WHERE [Requirement_Id] = 37606
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Protect audit information and audit logging tools from unauthorized access, modification, and deletion; and
[a: Implementation Statement]
+b. Alert required stakeholders upon detection of unauthorized access, modification, or deletion of audit information.
[b: Implementation Statement]
+
+Related Controls: AC-3, AC-6, AU-6, AU-11, MP-2, MP-4, PE-2, PE-3, PE-6, SA-8, SC-8, SI-4
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Protection of Audit Information
a. Protect audit information and audit logging tools from unauthorized access, modification, and deletion; and
b. Alert [Assignment: organization-defined personnel or roles] upon detection of unauthorized access, modification, or deletion of audit information.
Discussion:Audit information includes all information needed to successfully audit system activity, such as audit records, audit log settings, audit reports, and personally identifiable information. Audit logging tools are those programs and devices used to conduct system audit and logging activities. Protection of audit information focuses on technical protection and limits the ability to access and execute audit logging tools to authorized individuals. Physical protection of audit information is addressed by both media protection controls and physical and environmental protection controls.' WHERE [Requirement_Id] = 37607
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Store audit records at least daily in a repository that is part of a physically different system or system component than the system or component being audited.
[Implementation Statement]
+
+Related Controls: AU-4, AU-5
+
+
+', [Supplemental_Info]=N' Store on Separate Physical Systems or Components
Store audit records [Assignment: organization-defined frequency] in a repository that is part of a physically different system or system component than the system or component being audited.
Discussion:Storing audit records in a repository separate from the audited system or system component helps to ensure that a compromise of the system being audited does not also result in a compromise of the audit records. Storing audit records on separate physical systems or components also preserves the confidentiality and integrity of audit records and facilitates the management of audit records as an organization-wide activity. Storing audit records on separate systems or components applies to initial generation as well as backup or long-term storage of audit records.' WHERE [Requirement_Id] = 37608
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement cryptographic mechanisms to protect the integrity of audit information and audit tools.
[Implementation Statement]
+
+Related Controls: AU-10, SC-12, SC-13
+
+
+', [Supplemental_Info]=N' Cryptographic Protection
Implement cryptographic mechanisms to protect the integrity of audit information and audit tools.
Discussion:Cryptographic mechanisms used for protecting the integrity of audit information include signed hash functions using asymmetric cryptography. This enables the distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.' WHERE [Requirement_Id] = 37609
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Authorize access to management of audit logging functionality to only:
[Implementation Statement]
+(1) Required stakeholders based on least privileges for the purposes of configuring and supporting information systems; and
[1: Implementation Statement]
+(2) All DMCS Cyber Fusion Center (CFC) personnel.
[2: Implementation Statement]
+
+Related Controls: AC-5
+
+
+', [Supplemental_Info]=N' Access by Subset of Privileged Users
Authorize access to management of audit logging functionality to only [Assignment: organization-defined subset of privileged users or roles].
Discussion:Individuals or roles with privileged access to a system and who are also the subject of an audit by that system may affect the reliability of the audit information by inhibiting audit activities or modifying audit records. Requiring privileged access to be further defined between audit-related privileges and other privileges limits the number of users or roles with audit-related privileges.' WHERE [Requirement_Id] = 37610
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Assessment, Authorization and Monitoring Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] assessment, authorization, and monitoring
policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the assessment, authorization, and monitoring policy and the associated assessment, authorization, and monitoring controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the assessment, authorization, and monitoring policy and procedures; and
c. Review and update the current assessment, authorization, and monitoring:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Assessment, authorization, and monitoring policy and procedures address the controls in the CA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of assessment, authorization, and monitoring policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to assessment, authorization, and monitoring policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37611
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Select the appropriate assessor or assessment team for the type of assessment to be conducted;
[a: Implementation Statement]
+b. Develop a control assessment plan that describes the scope of the assessment including:
[b: Implementation Statement]
+ i) Controls and control enhancements under assessment;
[b.i: Implementation Statement]
+ ii) Assessment procedures to be used to determine control effectiveness; and
[b.ii: Implementation Statement]
+ iii) Assessment environment, assessment team, and assessment roles and responsibilities;
[b.iii: Implementation Statement]
+c. Ensure the control assessment plan is reviewed and approved by the AO or designated representative prior to conducting the assessment;
[c: Implementation Statement]
+d. Assess the controls in the system and its environment of operation annually, or after any significant change, to determine the extent to which the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting established security and privacy requirements;
[d: Implementation Statement]
+e. Produce a control assessment report that document the results of the assessment; and
[e: Implementation Statement]
+f. Provide the results of the control assessment to the required stakeholders.
[f: Implementation Statement]
+
+OT Systems Only:
+Assessments are performed and documented by qualified assessors (i.e., experienced in assessing OT) authorized by the organization. The individual/group conducting the assessment fully understands the organizational information security policies and procedures, the OT security policies and procedures, and the specific health, safety, and environmental risks associated with a particular facility and/or process. The organization ensures that the assessment does not affect system operation or result in unintentional system modification. If assessment activities must be performed on the production OT, it may need to be taken off-line before an assessment can be conducted, or the assessment should be scheduled to occur during planned OT outages whenever possible.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-20, CA-5, CA-6, CA-7, PM-9, RA-5, SA-11, SI-3, SI-12, SR-2, SR-3
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Assessments are performed and documented by qualified assessors (i.e., experienced in assessing OT) authorized by the organization. The individual or group conducting the assessment fully understands the organizational information security policies and procedures, the OT security policies and procedures, and the specific health, safety, and environmental risks associated with a particular facility and/or process. The organization ensures that the assessment does not affect system operation or result in unintentional system modification. If assessment activities must be performed on the production OT, it may need to be taken offline before an assessment can be conducted, or the assessment should be scheduled to occur during planned OT outages whenever possible.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+2. Develop a Cybersecurity Assessment Plan and submit (a) an annual update, for approval, that describes how the Owner/Operator will proactively and regularly assess the effectiveness of cybersecurity measures, and identify and resolve device, network, and/or system vulnerabilities, and (b) an annual report that provides Cybersecurity Assessment Plan results from the previous year. See Section III.F. (p.3)
[2: Implementation Statement]
+
+III. Cybersecurity Measures
+
+D. Implement continuous monitoring and detection policies and procedures that are designed to prevent, detect, and respond to cybersecurity threats and correct anomalies affecting Critical Cyber Systems. These measures must include: (p.7)
[D: Implementation Statement]
+
+F.1. The Owner/Operator must develop a Cybersecurity Assessment Plan for proactively assessing Critical Cyber Systems to ascertain the effectiveness of cybersecurity measures and to identify and resolve device, network, and/or system vulnerabilities. (p.9)
[F.1: Implementation Statement]
+
+F.2. The Cybersecurity Assessment Plan required by Section III.F.1. must – (p.9)
[F.2: Implementation Statement]
+
+F.2.a. Assess the effectiveness of the Owner/Operator’s TSA-approved Cybersecurity Implementation Plan; (p.9)
[F.2.a: Implementation Statement]
+
+F.2.e. Ensure an annual report of the results of assessments conducted in accordance with the Cybersecurity Assessment Plan is submitted to TSA as described in paragraph F.4. of this section. The required report must indicate— (p.10)
[F.2.e: Implementation Statement]
+
+F.2.e.i. For the previous 12 months, which assessment method(s) were used to determine whether the policies, procedures, and capabilities described by the Owner/Operator in its Cybersecurity Implementation Plan are effective; and (p.10)
[F.2.e.i: Implementation Statement]
+
+F.2.e.ii. Results of the individual assessments conducted in the previous 12 months. (p.10)
[F.2.e.ii: Implementation Statement]
+
+F.3. The Owner/Operator must review and update its Cybersecurity Assessment Plan on an annual basis and submit it to TSA for approval no later than 12 months from the date the Owner/Operator submitted its first Cybersecurity Assessment Plan under Security Directive 1580/82-2022-01. The next Cybersecurity Assessment Plan submitted under this Security Directive, and all other Cybersecurity Assessment Plans thereafter, must be submitted to TSA no later than 12 months from the date of TSA’s approval of the most recent Cybersecurity Assessment Plan. (p.10)
[F.3: Implementation Statement]
+
+F.4. The Owner/Operator must submit the Cybersecurity Assessment Plan report required by subparagraph F.2.e. of this section on an annual basis but no later than 12 months from the date the Owner/Operator submitted its first Cybersecurity Assessment Plan under Security Directive 1580/82-2022-01. The next Cybersecurity Assessment Plan report submitted under this Security Directive, and all other Cybersecurity Assessment Plan reports thereafter, must be submitted to TSA no later than 12 months from the date of TSA’s approval of the most recent Cybersecurity Assessment Plan. (p.10)
[F.4: Implementation Statement]
+
+IV. Records
+
+A. Use of previous plans, assessments, tests, and evaluations. As applicable, Owner/Operators may use previously developed plans, assessments, tests, and evaluations to meet the requirements of this Security Directive. If the Owner/Operator relies on these materials, it must include an index of the records and their location organized in the same sequence as the requirements in this Security Directive. In addition, these materials must be explicitly incorporated by reference into the Cybersecurity Implementation Plan and made available to TSA upon request. (pp.10-11)
[A: Implementation Statement]
+', [Supplemental_Info]=N'Control Assessments
a. Select the appropriate assessor or assessment team for the type of assessment to be conducted;
b. Develop a control assessment plan that describes the scope of the assessment including:
1. Controls and control enhancements under assessment;
2. Assessment procedures to be used to determine control effectiveness; and
3. Assessment environment, assessment team, and assessment roles and responsibilities;
c. Ensure the control assessment plan is reviewed and approved by the authorizing official or designated representative prior to conducting the assessment;
d. Assess the controls in the system and its environment of operation [Assignment: organization-defined frequency] to determine the extent to which the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting established security and privacy requirements;
e. Produce a control assessment report that document the results of the assessment; and
f. Provide the results of the control assessment to [Assignment: organization-defined individuals or roles].
Discussion:Organizations ensure that control assessors possess the required skills and technical expertise to develop effective assessment plans and to conduct assessments of system-specific, hybrid, common, and program management controls, as appropriate. The required skills include general knowledge of risk management concepts and approaches as well as comprehensive knowledge of and experience with the hardware, software, and firmware system components implemented.
Organizations assess controls in systems and the environments in which those systems operate as part of initial and ongoing authorizations, continuous monitoring, FISMA annual assessments, system design and development, systems security engineering, privacy engineering, and the system development life cycle. Assessments help to ensure that organizations meet information security and privacy requirements, identify weaknesses and deficiencies in the system design and development process, provide essential information needed to make risk-based decisions as part of authorization processes, and comply with vulnerability mitigation procedures. Organizations conduct assessments on the implemented controls as documented in security and privacy plans. Assessments can also be conducted throughout the system development life cycle as part of systems engineering and systems security engineering processes. The design for controls can be assessed as RFPs are developed, responses assessed, and design reviews conducted. If a design to implement controls and subsequent implementation in accordance with the design are assessed during development, the final control testing can be a simple confirmation utilizing previously completed control assessment and aggregating the outcomes.
Organizations may develop a single, consolidated security and privacy assessment plan for the system or maintain separate plans. A consolidated assessment plan clearly delineates the roles and responsibilities for control assessment. If multiple organizations participate in assessing a system, a coordinated approach can reduce redundancies and associated costs.
Organizations can use other types of assessment activities, such as vulnerability scanning and system monitoring, to maintain the security and privacy posture of systems during the system life cycle. Assessment reports document assessment results in sufficient detail, as deemed necessary by organizations, to determine the accuracy and completeness of the reports and whether the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting requirements. Assessment results are provided to the individuals or roles appropriate for the types of assessments being conducted. For example, assessments conducted in support of authorization decisions are provided to authorizing officials, senior agency officials for privacy, senior agency information security officers, and authorizing official designated representatives.
To satisfy annual assessment requirements, organizations can use assessment results from the following sources: initial or ongoing system authorizations, continuous monitoring, systems engineering processes, or system development life cycle activities. Organizations ensure that assessment results are current, relevant to the determination of control effectiveness, and obtained with the appropriate level of assessor independence. Existing control assessment results can be reused to the extent that the results are still valid and can also be supplemented with additional assessments as needed. After the initial authorizations, organizations assess controls during continuous monitoring. Organizations also establish the frequency for ongoing assessments in accordance with organizational continuous monitoring strategies. External audits, including audits by external entities such as regulatory agencies, are outside of the scope of CA-2.
' WHERE [Requirement_Id] = 37612
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ independent assessors or assessment teams to conduct security control assessments.
[Implementation Statement]
+
+
+
+', [Supplemental_Info]=N' Independent Assessors
Employ independent assessors or assessment teams to conduct control assessments.
Discussion:Independent assessors or assessment teams are individuals or groups who conduct impartial assessments of systems. Impartiality means that assessors are free from any perceived or actual conflicts of interest regarding the development, operation, sustainment, or management of the systems under assessment or the determination of control effectiveness. To achieve impartiality, assessors do not create a mutual or conflicting interest with the organizations where the assessments are being conducted, assess their own work, act as management or employees of the organizations they are serving, or place themselves in positions of advocacy for the organizations acquiring their services.
Independent assessments can be obtained from elements within organizations or be contracted to public or private sector entities outside of organizations. Authorizing officials determine the required level of independence based on the security categories of systems and/or the risk to organizational operations, organizational assets, or individuals. Authorizing officials also determine if the level of assessor independence provides sufficient assurance that the results are sound and can be used to make credible, risk-based decisions. Assessor independence determination includes whether contracted assessment services have sufficient independence, such as when system owners are not directly involved in contracting processes or cannot influence the impartiality of the assessors conducting the assessments. During the system design and development phase, having independent assessors is analogous to having independent SMEs involved in design reviews.
When organizations that own the systems are small or the structures of the organizations require that assessments be conducted by individuals that are in the developmental, operational, or management chain of the system owners, independence in assessment processes can be achieved by ensuring that assessment results are carefully reviewed and analyzed by independent teams of experts to validate the completeness, accuracy, integrity, and reliability of the results. Assessments performed for purposes other than to support authorization decisions are more likely to be useable for such decisions when performed by assessors with sufficient independence, thereby reducing the need to repeat assessments.
' WHERE [Requirement_Id] = 37613
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Conduct announced and/or unannounced control assessments at least once prior to a system receiving authorization to move into a production environment, after a significant change, and annually thereafter for all systems in production, to include one or more of the following at the discretion of the AO:
[Implementation Statement]
+
+(1) Leverage current vulnerability scan results;
[1: Implementation Statement]
+(2) Penetration testing in compliance with Control 3.2 Assessment, Authorization and Monitoring, Section 7, “CA-8 Penetration Testing”;
[2: Implementation Statement]
+(3) In-depth user activity monitoring;
[3: Implementation Statement]
+(4) Security instrumentation;
[4: Implementation Statement]
+(5) Automated security test cases;
[5: Implementation Statement]
+(6) Simulate malicious user activities and conduct testing;
[6: Implementation Statement]
+(7) Insider threat assessment;
[7: Implementation Statement]
+(8) Performance and load testing; and
[8: Implementation Statement]
+(9) Data leakage or data loss assessment
[9: Implementation Statement]
+
+OT Systems Only:
+The organization conducts risk analysis to support selection of an assessment target (e.g., the live system, an off-line replica or lab system).
[OT Systems Only: Implementation Statement]
+
+Related Controls: PE-3, SI-2
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization conducts risk analysis to support the selection of an assessment target (e.g., the live system, an offline replica, or lab system).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Specialized Assessments
Include as part of control assessments, [Assignment: organization-defined frequency], [Selection: announced; unannounced], [Selection (one or more): in-depth monitoring; security instrumentation; automated security test cases; vulnerability scanning; malicious user testing; insider threat assessment; performance and load testing; data leakage or data loss assessment; [Assignment: organization-defined other forms of assessment]].
Discussion:Organizations can conduct specialized assessments, including verification and validation, system monitoring, insider threat assessments, malicious user testing, and other forms of testing. These assessments can improve readiness by exercising organizational capabilities and indicating current levels of performance as a means of focusing actions to improve security and privacy. Organizations conduct specialized assessments in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Authorizing officials approve the assessment methods in coordination with the organizational risk executive function. Organizations can include vulnerabilities uncovered during assessments into vulnerability remediation processes. Specialized assessments can also be conducted early in the system development life cycle (e.g., during initial design, development, and unit testing).' WHERE [Requirement_Id] = 37614
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Approve and manage the exchange of information between systems using appropriate exchange agreements; and
[a: Implementation Statement]
+b. Document, as part of each exchange agreement, the interface characteristics, security and privacy requirements, controls, and responsibilities for each system, and the impact level of the information communicated; and
[b: Implementation Statement]
+c. Review and update the agreements annually.
[c: Implementation Statement]
+
+OT Systems Only:
+Organizations perform risk-benefit analysis to support determining whether an OT should be connected to other system(s). The authorizing official (AO) fully understands the organizational information security policies and procedures; the OT security policies and procedures; the risks to organizational operations and assets, individuals, other organizations, and the nation associated with the connection to other system(s); the individuals and organizations that operate and maintain the systems, including maintenance contractors or service providers; and the specific health, safety, and environmental risks associated with a particular interconnection. Connections from the OT environment to other security zones may cross the authorization boundary, such that two different authorizing officials may be required to approve the connection. Decisions to accept risk are documented.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-4, AC-20, CA-6, IA-3, IR-4, PL-2, PT-7, RA-3, SA-9, SC-7, SI-12
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations perform risk-benefit analysis to determine whether an OT should be connected to other systems. The authorizing official (AO) fully understands the organizational information security policies and procedures; the OT security policies and procedures; the risks to organizational operations and assets, individuals, other organizations, and the Nation associated with the connection to other systems; the individuals and organizations that operate and maintain the systems, including maintenance contractors or service providers; and the specific health, safety, and environmental risks associated with a particular interconnection. Connections from the OT environment to other security zones may cross the authorization boundary such that two different authorizing officials may be required to approve the connection. Decisions to accept risk are documented.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Information Exchange
a. Approve and manage the exchange of information between the system and other systems using [Selection (one or more): interconnection security agreements; information exchange security agreements; memoranda of understanding or agreement; service level agreements; user agreements; nondisclosure agreements; [Assignment: organization-defined type of agreement]];
b. Document, as part of each exchange agreement, the interface characteristics, security and privacy requirements, controls, and responsibilities for each system, and the impact level of the information communicated; and
c. Review and update the agreements [Assignment: organization-defined frequency].
Discussion:System information exchange requirements apply to information exchanges between two or more systems. System information exchanges include connections via leased lines or virtual private networks, connections to internet service providers, database sharing or exchanges of database transaction information, connections and exchanges with cloud services, exchanges via web-based services, or exchanges of files via file transfer protocols, network protocols (e.g., IPv4, IPv6), email, or other organization-to-organization communications. Organizations consider the risk related to new or increased threats that may be introduced when systems exchange information with other systems that may have different security and privacy requirements and controls. This includes systems within the same organization and systems that are external to the organization. A joint authorization of the systems exchanging information, as described in CA-6(1) or CA-6(2), may help to communicate and reduce risk.
Authorizing officials determine the risk associated with system information exchange and the controls needed for appropriate risk mitigation. The types of agreements selected are based on factors such as the impact level of the information being exchanged, the relationship between the organizations exchanging information (e.g., government to government, government to business, business to business, government or business to service provider, government or business to individual), or the level of access to the organizational system by users of the other system. If systems that exchange information have the same authorizing official, organizations need not develop agreements. Instead, the interface characteristics between the systems (e.g., how the information is being exchanged. how the information is protected) are described in the respective security and privacy plans. If the systems that exchange information have different authorizing officials within the same organization, the organizations can develop agreements or provide the same information that would be provided in the appropriate agreement type from CA-3a in the respective security and privacy plans for the systems. Organizations may incorporate agreement information into formal contracts, especially for information exchanges established between federal agencies and nonfederal organizations (including service providers, contractors, system developers, and system integrators). Risk considerations include systems that share the same networks.
' WHERE [Requirement_Id] = 37615
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Verify that individuals or systems transferring data between interconnecting systems have the requisite authorizations (i.e., write permissions or privileges) prior to accepting data.
[Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-4
+
+
+', [Supplemental_Info]=N' Transfer Authorizations
Verify that individuals or systems transferring data between interconnecting systems have the requisite authorizations (i.e., write permissions or privileges) prior to accepting such data.
Discussion:To prevent unauthorized individuals and systems from making information transfers to protected systems, the protected system verifies—via independent means— whether the individual or system attempting to transfer information is authorized to do so. Verification of the authorization to transfer information also applies to control plane traffic (e.g., routing and DNS) and services (e.g., authenticated SMTP relays).' WHERE [Requirement_Id] = 37616
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop a plan of action and milestones for the system to document the planned remediation actions of the organization to correct weaknesses or deficiencies noted during the assessment of the controls and to reduce or eliminate known vulnerabilities in the system; and
[a: Implementation Statement]
+b. Update existing plan of action and milestones monthly based on the findings from control assessments, independent audits or reviews, and continuous monitoring activities.
[b: Implementation Statement]
+
+OT Systems Only:
+OT Discussion: Corrective actions identified in assessments may not be immediately actionable in an OT environment; therefore, short-term mitigations may be implemented to reduce risk as part of the gap closure plan or plan of action and milestones.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CA-2, CA-7, PM-4, PM-7, RA-7, SI-2, SI-
+
+NIST 800-82 Rev 3:
+OT Discussion: Corrective actions identified in assessments may not be immediately actionable in an OT environment. Therefore, short-term mitigations may be implemented to reduce risk as part of the gap closure plan or plan of action and milestones.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Plan of Action and Milestones
a. Develop a plan of action and milestones for the system to document the planned remediation actions of the organization to correct weaknesses or deficiencies noted during the assessment of the controls and to reduce or eliminate known vulnerabilities in the system; and
b. Update existing plan of action and milestones [Assignment: organization-defined frequency] based on the findings from control assessments, independent audits or reviews, and continuous monitoring activities.
Discussion:Plans of action and milestones are useful for any type of organization to track planned remedial actions. Plans of action and milestones are required in authorization packages and subject to federal reporting requirements established by OMB.' WHERE [Requirement_Id] = 37617
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Assign a senior official as the authorizing official for the system;
[a: Implementation Statement]
+b. Assign a senior official as the authorizing official for common controls available for inheritance by organizational systems;
[b: Implementation Statement]
+c. Ensure that the authorizing official for the system, before commencing operations:
[c: Implementation Statement]
+ i) Accepts the use of common controls inherited by the system; and
[c.i: Implementation Statement]
+ ii) Authorizes the system to operate;
[c.ii: Implementation Statement]
+d. Ensure that the authorizing official for common controls authorizes the use of those controls for inheritance by organizational systems;
[d: Implementation Statement]
+e. Update the authorizations annually.
[e: Implementation Statement]
+
+Related Controls: CA-2, CA-3, CA-7, PM-9, PM-10, RA-3, SA-10, SI-12
+
+
+', [Supplemental_Info]=N'Authorization
a. Assign a senior official as the authorizing official for the system;
b. Assign a senior official as the authorizing official for common controls available for inheritance by organizational systems;
c. Ensure that the authorizing official for the system, before commencing operations:
1. Accepts the use of common controls inherited by the system; and
2. Authorizes the system to operate;
d. Ensure that the authorizing official for common controls authorizes the use of those controls for inheritance by organizational systems;
e. Update the authorizations [Assignment: organization-defined frequency].
Discussion:Authorizations are official management decisions by senior officials to authorize operation of systems, authorize the use of common controls for inheritance by organizational systems, and explicitly accept the risk to organizational operations and assets, individuals, other organizations, and the Nation based on the implementation of agreed-upon controls. Authorizing officials provide budgetary oversight for organizational systems and common controls or assume responsibility for the mission and business functions supported by those systems or common controls. The authorization process is a federal responsibility, and therefore, authorizing officials must be federal employees. Authorizing officials are both responsible and accountable for security and privacy risks associated with the operation and use of organizational systems. Nonfederal organizations may have similar processes to authorize systems and senior officials that assume the authorization role and associated responsibilities.
Authorizing officials issue ongoing authorizations of systems based on evidence produced from implemented continuous monitoring programs. Robust continuous monitoring programs reduce the need for separate reauthorization processes. Through the employment of comprehensive continuous monitoring processes, the information contained in authorization packages (i.e., security and privacy plans, assessment reports, and plans of action and milestones) is updated on an ongoing basis. This provides authorizing officials, common control providers, and system owners with an up-to-date status of the security and privacy posture of their systems, controls, and operating environments. To reduce the cost of reauthorization, authorizing officials can leverage the results of continuous monitoring processes to the maximum extent possible as the basis for rendering reauthorization decisions.
' WHERE [Requirement_Id] = 37618
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Develop a system-level continuous monitoring strategy and implement continuous monitoring in accordance with the organization-level continuous monitoring strategy that includes:
[Implementation Statement]
+
+a. Establishing the following system-level metrics to be monitored:
[a: Implementation Statement]
+ i) Tier 1 (Organization-wide Metrics):
[a.i: Implementation Statement]
+ (1) Number of Assessed and Authorized systems per year;
[a.i.1: Implementation Statement]
+ (2) Number of authorized and unauthorized information systems components per quarter (includes systems with End of Life (EOL) components);
[a.i.2: Implementation Statement]
+ (3) Number of software vulnerabilities by mission/business function, categorized by Critical, High, Moderate and Low impact/risk per quarter;
[a.i.3: Implementation Statement]
+ (4) Number of POAMs open and closed per quarter;
[a.i.4: Implementation Statement]
+ (5) Rate of compliance to the annual cybersecurity awareness and training certification; and
[a.i.5: Implementation Statement]
+ (6) Rate of noncompliance to the annual cybersecurity awareness and training certification.
[a.i.6: Implementation Statement]
+ ii) Tier 2 (Mission/Business Process Metrics):
[a.ii: Implementation Statement]
+ (1) Number of authorized and unauthorized information systems components per month (includes systems with EOL components);
[a.ii.1: Implementation Statement]
+ (2) Number of software vulnerabilities by mission/business function, categorized by Critical, High, Moderate and Low impact/risk per month;
[a.ii.2: Implementation Statement]
+ (3) Number of POAMs open and closed per month; and
[a.ii.3: Implementation Statement]
+ (4) Number of ISCM security control failures per month,
[a.ii.4: Implementation Statement]
+ iii) Tier 3 (System-level Metrics):
[a.iii: Implementation Statement]
+ (1) Number of software vulnerabilities by system;
[a.iii.1: Implementation Statement]
+ (2) Number of authorized and unauthorized information systems components per month (includes systems with EOL components);
[a.iii.2: Implementation Statement]
+ (3) Number of software vulnerabilities by mission/business function, categorized by Critical, High, Moderate and Low impact/risk per month;
[a.iii.3: Implementation Statement]
+ (4) Number of POAMs open and closed per month; and
[a.iii.4: Implementation Statement]
+ (5) Number of ISCM security control failures based on the review monthly.
[a.iii.5: Implementation Statement]
+b. Assess and monitor control effectiveness in alignment with the frequencies defined in the continuous monitoring strategy;
[b: Implementation Statement]
+c. Ongoing control assessments in accordance with the continuous monitoring strategy;
[c: Implementation Statement]
+d. Ongoing monitoring of system and organization-defined metrics in accordance with the continuous monitoring strategy;
[d: Implementation Statement]
+e. Correlation and analysis of information generated by control assessments and monitoring;
[e: Implementation Statement]
+f. Response actions to address results of the analysis of control assessment and monitoring information; and
[f: Implementation Statement]
+g. Reporting the security and privacy status of the system to the AO annually.
[g: Implementation Statement]
+
+OT Systems Only:
+Continuous monitoring programs for OT are designed, documented, and implemented with input from OT personnel. The organization ensures that continuous monitoring does not interfere with OT functions. The individual/group designing and conducting the continuous monitoring for the OT systems implements monitoring consistent with the organizational information security policies and procedures, the OT security policies and procedures, and the specific health, safety, and environmental risks associated with a particular facility and/or process. Continuous monitoring can be automated or manual at a frequency sufficient to support risk-based decisions. For example, the organization may determine for lower-risk, isolated systems to monitor event logs manually on a specified frequency less often than for higher-risk, networked systems.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-6, AC-17, AT-4, AU-6, CA-2, CA-5, CA-6, CM-3, CM-4, CM-6, CM-11, IA-5, IR-5, MA-2, MA-3, MA-4, PE-3, PE-6, PE-14, PE-16, PL-2, PM-4, PM-6, PM-9, PM-10, PM-12, PM-14, PM-23, PM-28, PM-31, PS-7, PT-7, RA-3, RA-5, RA-7, SA-8, SA-9, SA-11, SC-5, SC-7, SC-18, SI-3, SI-4, SI-12, SR-6
+
+h. Security Controls Enhancement(s):
[h: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Continuous monitoring programs for OT are designed, documented, and implemented with input from OT personnel. The organization ensures that continuous monitoring does not interfere with OT functions. The individual or group designing and conducting the continuous monitoring for the OT systems implements a monitoring program that is consistent with the organizational information security policies and procedures, the OT security policies and procedures, and the specific health, safety, and environmental risks associated with a particular facility and/or process. Continuous monitoring can be automated or manual at a frequency sufficient to support risk-based decisions. For example, the organization may monitor event logs manually on a specified frequency less often for lower-risk, isolated systems than for higher-risk, networked systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.b. Implement access control measures to secure and prevent unauthorized access to Critical Cyber Systems; (p.2)
[1.b: Implementation Statement]
+
+1.c. Implement continuous monitoring and detection policies and procedures to detect cybersecurity threats and correct anomalies that affect Critical Cyber System operations; and (pp.2-3)
[1.c: Implementation Statement]
+
+2. Develop a Cybersecurity Assessment Plan and submit (a) an annual update, for approval, that describes how the Owner/Operator will proactively and regularly assess the effectiveness of cybersecurity measures, and identify and resolve device, network, and/or system vulnerabilities, and (b) an annual report that provides Cybersecurity Assessment Plan results from the previous year. See Section III.F. (p.3)
[2: Implementation Statement]
+
+III. Cybersecurity Measures
+
+D. Implement continuous monitoring and detection policies and procedures that are designed to prevent, detect, and respond to cybersecurity threats and correct anomalies affecting Critical Cyber Systems. These measures must include: (p.7)
[D: Implementation Statement]
+
+F.2.d. Include a schedule for assessing and auditing specific cybersecurity measures and/or actions required by subparagraphs F.2.a. through F.2.c. of this section. The schedule must ensure that at least one-third (1/3) of the policies, procedures, measures, and capabilities in the TSA-approved Cybersecurity Implementation Plan are assessed each year, with 100 percent assessed over any three-year period; and (p.9)
[F.2.d: Implementation Statement]
+', [Supplemental_Info]=N'Continuous Monitoring
Develop a system-level continuous monitoring strategy and implement continuous monitoring in accordance with the organization-level continuous monitoring strategy that includes:
a. Establishing the following system-level metrics to be monitored: [Assignment: organization-defined system-level metrics];
b. Establishing [Assignment: organization-defined frequencies] for monitoring and [Assignment: organization-defined frequencies] for assessment of control effectiveness;
c. Ongoing control assessments in accordance with the continuous monitoring strategy;
d. Ongoing monitoring of system and organization-defined metrics in accordance with the continuous monitoring strategy;
e. Correlation and analysis of information generated by control assessments and monitoring;
f. Response actions to address results of the analysis of control assessment and monitoring information; and
g. Reporting the security and privacy status of the system to [Assignment: organization-defined personnel or roles] [Assignment: organization-defined frequency].
Discussion:Continuous monitoring at the system level facilitates ongoing awareness of the system security and privacy posture to support organizational risk management decisions. The terms “continuous” and “ongoing” imply that organizations assess and monitor their controls and risks at a frequency sufficient to support risk-based decisions. Different types of controls may require different monitoring frequencies. The results of continuous monitoring generate risk response actions by organizations. When monitoring the effectiveness of multiple controls that have been grouped into capabilities, a root-cause analysis may be needed to determine the specific control that has failed. Continuous monitoring programs allow organizations to maintain the authorizations of systems and common controls in highly dynamic environments of operation with changing mission and business needs, threats, vulnerabilities, and technologies. Having access to security and privacy information on a continuing basis through reports and dashboards gives organizational officials the ability to make effective and timely risk management decisions, including ongoing authorization decisions.
Automation supports more frequent updates to hardware, software, and firmware inventories, authorization packages, and other system information. Effectiveness is further enhanced when continuous monitoring outputs are formatted to provide information that is specific, measurable, actionable, relevant, and timely. Continuous monitoring activities are scaled in accordance with the security categories of systems. Monitoring requirements, including the need for specific monitoring, may be referenced in other controls and control enhancements, such as AC-2g, AC-2(7), AC-2(12)(a), AC-2(7)(b), AC-2(7)(c), AC-17(1), AT-4a, AU-13, AU-13(1), AU-13(2), CM-3f, CM-6d, CM-11c, IR-5, MA-2b, MA-3a, MA-4a, PE-3d, PE-6, PE-14b, PE-16, PE-20, PM-6, PM-23, PM-31, PS-7e, SA-9c, SR-4, SC-5(3)(b), SC-7a, SC-7(24)(b), SC-18b, SC-43b, and SI-4.
' WHERE [Requirement_Id] = 37619
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ independent assessors or assessment teams to monitor the controls in the system on an ongoing basis.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Independent Assessment
Employ independent assessors or assessment teams to monitor the controls in the system on an ongoing basis.
Discussion:Organizations maximize the value of control assessments by requiring that assessments be conducted by assessors with appropriate levels of independence. The level of required independence is based on organizational continuous monitoring strategies. Assessor independence provides a degree of impartiality to the monitoring process. To achieve such impartiality, assessors do not create a mutual or conflicting interest with the organizations where the assessments are being conducted, assess their own work, act as management or employees of the organizations they are serving, or place themselves in advocacy positions for the organizations acquiring their services.' WHERE [Requirement_Id] = 37620
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Ensure risk monitoring is an integral part of the continuous monitoring strategy that includes the following:
[Implementation Statement]
+
+(1) Effectiveness monitoring;
[1: Implementation Statement]
+(2) Compliance monitoring; and
[2: Implementation Statement]
+(3) Change monitoring.
[3: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Risk Monitoring
Ensure risk monitoring is an integral part of the continuous monitoring strategy that includes the following:
(a) Effectiveness monitoring;
(b) Compliance monitoring; and
(c) Change monitoring.
Discussion:Risk monitoring is informed by the established organizational risk tolerance. Effectiveness monitoring determines the ongoing effectiveness of the implemented risk response measures. Compliance monitoring verifies that required risk response measures are implemented. It also verifies that security and privacy requirements are satisfied. Change monitoring identifies changes to organizational systems and environments of operation that may affect security and privacy risk.' WHERE [Requirement_Id] = 37621
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Conduct penetration testing annually or as prescribed and approved by the AO in the SSP. Penetration testing shall be performed at the discretion of DMCS on new products and services before deployment within WMATA’s computing environment or prior to hosting WMATA data on the system/service.
[a: Implementation Statement]
+
+OT Systems Only:
+Penetration testing is used with care on OT networks to ensure that OT functions are not adversely impacted by the testing process. In general, OT systems are highly sensitive to timing constraints and have limited resources. Example compensating controls include employing a replicated, virtualized, or simulated system to conduct penetration testing. Production OT may need to be taken off-line before testing can be conducted. If OT systems are taken off-line for testing, tests are scheduled to occur during planned OT outages whenever possible. If penetration testing is performed on non-OT networks, extra care is taken to ensure that tests do not propagate into the OT network.
[OT Systems Only: Implementation Statement]
+
+Related Controls: RA-5, RA-10, SA-11, SR-5, SR-6
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Penetration testing is used with care on OT networks to ensure that OT functions are not adversely impacted by the testing process. In general, OT systems are highly sensitive to timing constraints and have limited resources. Example compensating controls include employing a replicated, virtualized, or simulated system to conduct penetration testing. Production OT may need to be taken offline before testing can be conducted. If OT systems are taken offline for testing, tests are scheduled to occur during planned OT outages whenever possible. If penetration testing is performed on non-OT networks, extra care is taken to ensure that tests do not propagate into the OT network.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+F.2.c. Incorporate other assessment capabilities designed to identify vulnerabilities based on evolving threat information and adversarial capabilities, such as penetration testing of Information Technology systems, including the use of “red” and “purple” team (adversarial perspective) testing. (pp.8-9)
[F.2.c: Implementation Statement]
+', [Supplemental_Info]=N'Penetration Testing
Conduct penetration testing [Assignment: organization-defined frequency] on [Assignment: organization-defined systems or system components].
Discussion:Penetration testing is a specialized type of assessment conducted on systems or individual system components to identify vulnerabilities that could be exploited by adversaries. Penetration testing goes beyond automated vulnerability scanning and is conducted by agents and teams with demonstrable skills and experience that include technical expertise in network, operating system, and/or application level security. Penetration testing can be used to validate vulnerabilities or determine the degree of penetration resistance of systems to adversaries within specified constraints. Such constraints include time, resources, and skills. Penetration testing attempts to duplicate the actions of adversaries and provides a more in-depth analysis of security- and privacy-related weaknesses or deficiencies. Penetration testing is especially important when organizations are transitioning from older technologies to newer technologies (e.g., transitioning from IPv4 to IPv6 network protocols).
Organizations can use the results of vulnerability analyses to support penetration testing activities. Penetration testing can be conducted internally or externally on the hardware, software, or firmware components of a system and can exercise both physical and technical controls. A standard method for penetration testing includes a pretest analysis based on full knowledge of the system, pretest identification of potential vulnerabilities based on the pretest analysis, and testing designed to determine the exploitability of vulnerabilities. All parties agree to the rules of engagement before commencing penetration testing scenarios. Organizations correlate the rules of engagement for the penetration tests with the tools, techniques, and procedures that are anticipated to be employed by adversaries. Penetration testing may result in the exposure of information that is protected by laws or regulations, to individuals conducting the testing. Rules of engagement, contracts, or other appropriate mechanisms can be used to communicate expectations for how to protect this information. Risk assessments guide the decisions on the level of independence required for the personnel conducting penetration testing.
' WHERE [Requirement_Id] = 37622
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ an independent penetration testing agent or team to perform penetration testing on the system or system components.
[Implementation Statement]
+
+Related Controls: CA-2
+
+NIST 800-82 Rev 3:
+Rationale for removing CA-8 (1) from HIGH baseline: Specific expertise is necessary to conduct effective penetration testing on OT systems, and it may not be feasible to identify independent personnel with the appropriate skillset or knowledge to perform penetration testing on an OT environment. While an independent penetration test agent or team is recommended, it may not be feasible for all high-impact OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N'Penetration Testing | Independent Penetration Testing Agent or Team
Employ an independent penetration testing agent or team to perform penetration testing on the system or system components.
Discussion:Independent penetration testing agents or teams are individuals or groups who conduct impartial penetration testing of organizational systems. Impartiality implies that penetration testing agents or teams are free from perceived or actual conflicts of interest with respect to the development, operation, or management of the systems that are the targets of the penetration testing. CA-2(1) provides additional information on independent assessments that can be applied to penetration testing.' WHERE [Requirement_Id] = 37623
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Authorize internal connections of system components or classes of components that are a part of the same system to include, but not limited to, mobile devices (e.g., smartphones and tablets), notebook and desktop computers, printers, copiers, facsimile machines, scanners, sensors, and servers;
[a: Implementation Statement]
+b. Document, for each internal connection, the interface characteristics, security and privacy requirements, and the nature of the information communicated;
[b: Implementation Statement]
+c. Terminate internal system connections when no longer needed or as documented in an approved change order as a part of the configuration change control process, in accordance with Control 3.4 Configuration Management; and
[c: Implementation Statement]
+d. Review annually the continued need for each internal connection.
[d: Implementation Statement]
+
+OT Systems Only:
+Organizations perform risk-benefit analysis to determine whether OT equipment should be connected to other internal system components, then document these connections. The AO fully understands the potential risks associated with approving individual connections or approving a class of components to be connected. As an example, the AO may broadly approve the connection of any sensors limited to 4 to 20 milliamp (mA) communication, while other connection types (e.g., serial or ethernet) require individual approval. Decisions to accept risk are documented.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-4, AC-18, AC-19, CM-2, IA-3, SC-7, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations perform risk-benefit analysis to determine whether OT equipment should be connected to other internal system components and then document those connections. The AO fully understands the potential risks associated with approving individual connections or approving a class of components to be connected. For example, the AO may broadly approve the connection of any sensors limited to 4 to 20 milliamp (mA) communication, while other connection types (e.g., serial or Ethernet) require individual approval. Decisions to accept risk are documented.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Internal System Connections
a. Authorize internal connections of [Assignment: organization-defined system components or classes of components] to the system;
b. Document, for each internal connection, the interface characteristics, security and privacy requirements, and the nature of the information communicated;
c. Terminate internal system connections after [Assignment: organization-defined conditions]; and
d. Review [Assignment: organization-defined frequency] the continued need for each internal connection.
Discussion:Internal system connections are connections between organizational systems and separate constituent system components (i.e., connections between components that are part of the same system) including components used for system development. Intra-system connections include connections with mobile devices, notebook and desktop computers, tablets, printers, copiers, facsimile machines, scanners, sensors, and servers. Instead of authorizing each internal system connection individually, organizations can authorize internal connections for a class of system components with common characteristics and/or configurations, including printers, scanners, and copiers with a specified processing, transmission, and storage capability or smart phones and tablets with a specific baseline configuration. The continued need for an internal system connection is reviewed from the perspective of whether it provides support for organizational missions or business functions.' WHERE [Requirement_Id] = 37624
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SA-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Configuration Management Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] configuration management policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the configuration management policy and the associated configuration management controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the configuration management policy and procedures; and
c. Review and update the current configuration management:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Configuration management policy and procedures address the controls in the CM family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of configuration management policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission/business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to configuration management policy and procedures include, but are not limited to, assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37625
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Use software and associated documentation in accordance with contract agreements and copyright laws.
[a: Implementation Statement]
+b. Track the use of software and associated documentation protected by quantity licenses to control copying and distribution; and
[b: Implementation Statement]
+c. Control and document the use of peer-to-peer file sharing technology to ensure that this capability is not used for the unauthorized distribution, display, performance, or reproduction of copyrighted work.
[c: Implementation Statement]
+
+Related Controls: AC-17, AU-6, CM-7, CM-8, PM-30, SC-7
+
+
+', [Supplemental_Info]=N'Software Usage Restrictions
a. Use software and associated documentation in accordance with contract agreements and copyright laws;
b. Track the use of software and associated documentation protected by quantity licenses to control copying and distribution; and
c. Control and document the use of peer-to-peer file sharing technology to ensure that this capability is not used for the unauthorized distribution, display, performance, or reproduction of copyrighted work.
Discussion:Software license tracking can be accomplished by manual or automated methods, depending on organizational needs. Examples of contract agreements include software license agreements and non-disclosure agreements.' WHERE [Requirement_Id] = 37626
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Users without authorized privileges shall not be permitted to install software on corporate systems;
[a: Implementation Statement]
+b. Enforce software installation policies using procedural and automated methods.
[b: Implementation Statement]
+c. Monitor policy compliance on a continual basis.
[c: Implementation Statement]
+
+Related Controls: AC-3, AU-6, CM-2, CM-3, CM-5, CM-6, CM-7, CM-8, PL-4, SI-4, SI-7
+
+
+', [Supplemental_Info]=N'User-installed Software
a. Establish [Assignment: organization-defined policies] governing the installation of software by users;
b. Enforce software installation policies through the following methods: [Assignment: organization-defined methods]; and
c. Monitor policy compliance [Assignment: organization-defined frequency].
Discussion:If provided the necessary privileges, users can install software in organizational systems. To maintain control over the software installed, organizations identify permitted and prohibited actions regarding software installation. Permitted software installations include updates and security patches to existing software and downloading new applications from organization-approved “app stores.” Prohibited software installations include software with unknown or suspect pedigrees or software that organizations consider potentially malicious. Policies selected for governing user-installed software are organization-developed or provided by some external entity. Policy enforcement methods can include procedural methods and automated methods.' WHERE [Requirement_Id] = 37627
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Identify and document the location(s) of information and the specific system components on which the information is processed and stored.
[a: Implementation Statement]
+b. Identify and document the users who have access to the system and system components where the information is processed and stored; and
[b: Implementation Statement]
+c. Document changes to the location (i.e., system or system components) where the information is processed and stored.
[c: Implementation Statement]
+
+OT Systems Only:
+Organizations identify specific information types or components to track where information is being processed and stored. Information to consider in the OT environment may include shared account passwords; PLC backup files; detailed network drawings; and risk assessments that identify specific threats with the environment.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-4, AC-6, CM-8, PM-5, RA-2, SA-4, SA-8, SA-17, SC-4, SC-28, SI-4, SI-7
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations identify specific information types or components to track where information is being processed and stored. Information to consider in the OT environment may include shared account passwords, PLC backup files, detailed network drawings, and risk assessments that identify specific threats with the environment.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Information Location
a. Identify and document the location of [Assignment: organization-defined information] and the specific system components on which the information is processed and stored;
b. Identify and document the users who have access to the system and system components where the information is processed and stored; and
c. Document changes to the location (i.e., system or system components) where the information is processed and stored.
Discussion:Information location addresses the need to understand where information is being processed and stored. Information location includes identifying where specific information types and information reside in system components and how information is being processed so that information flow can be understood and adequate protection and policy management provided for such information and system components. The security category of the information is also a factor in determining the controls necessary to protect the information and the system component where the information resides (see FIPS 199). The location of the information and system components is also a factor in the architecture and design of the system (see SA-4, SA-8, SA-17).' WHERE [Requirement_Id] = 37628
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Use automated tools to identify information by information type (including sensitive information) on system components to ensure controls are in place to protect organizational information and individual privacy.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Tools to Support Information Location
Use automated tools to identify [Assignment: organization-defined information by information type] on [Assignment: organization-defined system components] to ensure controls are in place to protect organizational information and individual privacy.
Discussion:The use of automated tools helps to increase the effectiveness and efficiency of the information location capability implemented within the system. Automation also helps organizations manage the data produced during information location activities and share such information across the organization. The output of automated information location tools can be used to guide and inform system architecture and design decisions.' WHERE [Requirement_Id] = 37629
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop, document, and maintain, under configuration control, a current baseline configuration of the system; and
[a: Implementation Statement]
+b. Review and update the baseline configuration of the system:
[b: Implementation Statement]
+ i) At least annually;
[b.i: Implementation Statement]
+ ii) When required due to a significant change; and
[b.ii: Implementation Statement]
+ iii) When system components are installed or upgraded.
[b.iii: Implementation Statement]
+
+Related Controls: AC-19, AU-6, CA-9, CM-1, CM-3, CM-5, CM-6, CM-8, CM-9, CP-9, CP-10, CP-12, MA-2, PL-8, PM-5, SA-8, SA-10, SA-15, SC-18
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N'Baseline Configuration
a. Develop, document, and maintain under configuration control, a current baseline configuration of the system; and
b. Review and update the baseline configuration of the system:
1. [Assignment: organization-defined frequency];
2. When required due to [Assignment: organization-defined circumstances]; and
3. When system components are installed or upgraded.
Discussion:Baseline configurations for systems and system components include connectivity, operational, and communications aspects of systems. Baseline configurations are documented, formally reviewed, and agreed-upon specifications for systems or configuration items within those systems. Baseline configurations serve as a basis for future builds, releases, or changes to systems and include security and privacy control implementations, operational procedures, information about system components, network topology, and logical placement of components in the system architecture. Maintaining baseline configurations requires creating new baselines as organizational systems change over time. Baseline configurations of systems reflect the current enterprise architecture.' WHERE [Requirement_Id] = 37630
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Maintain the currency, completeness, accuracy, and availability of the baseline configuration of the system using configuration management tools; hardware, software, firmware inventory tools, and network management tools. Automated tools shall be employed consistent with Control 3.4 Configuration Management, Section 8, (c), (ii), “CM-8 (2) Automated Maintenance”, to ensure that system component inventory and baseline configurations are aligned. Automated tools shall be employed at the organization level, mission and business process level, and system level on workstations, servers, notebook computers, network components, and mobile devices.
[Implementation Statement]
+
+Note: See Control 3.4 Configuration Management, Section 8, “CM-8 System Component Inventory” for a list of required system component inventory requirements, and Control 3.4 Configuration Management, Section 6, “CM-6 Configuration Settings” for secure baseline configuration requirements.
[Note: Implementation Statement]
+
+Related Controls: CM-7, CM-6, CM-8, IA-3, RA-5
+
+
+', [Supplemental_Info]=N' Automation Support for Accuracy and Currency
Maintain the currency, completeness, accuracy, and availability of the baseline configuration of the system using [Assignment: organization-defined automated mechanisms].
Discussion:Automated mechanisms that help organizations maintain consistent baseline configurations for systems include configuration management tools, hardware, software, firmware inventory tools, and network management tools. Automated tools can be used at the organization level, mission and business process level, or system level on workstations, servers, notebook computers, network components, or mobile devices. Tools can be used to track version numbers on operating systems, applications, types of software installed, and current patch levels. Automation support for accuracy and currency can be satisfied by the implementation of CM-8(2) for organizations that combine system component inventory and baseline configuration activities.' WHERE [Requirement_Id] = 37631
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Retain no less than two previous versions of baseline configurations of the system to support rollback.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Retention of Previous Configurations
Retain [Assignment: organization-defined number] of previous versions of baseline configurations of the system to support rollback.
Discussion:Retaining previous versions of baseline configurations to support rollback include hardware, software, firmware, configuration files, configuration records, and associated documentation.' WHERE [Requirement_Id] = 37632
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Issue mobile systems or devices to include laptops, tablets, and mobile phones with sanitized hard drives, limited applications, and more stringent configuration settings to include all applicable security checklist settings set forth in Control 3.4 Configuration Management, Section 6, “CM-6 Configuration Settings”, to individuals traveling to locations that the organization deems to be of significant risk to include international travel; and
[1: Implementation Statement]
+
+(2) Apply the following controls to the systems or components when the individuals return from travel and examine the mobile systems or devices for signs of tampering. If any tampering is suspected, provide the mobile system or device to DMCS for forensic analysis.
[2: Implementation Statement]
+
+(3) All mobile systems or devices shall be purged and reimaged upon return to WMATA. All mobile systems or devices shall be replaced if necessary. If replaced, the original mobile system or device will be disposed of in accordance with WMATA policy.
[3: Implementation Statement]
+
+Related Controls: CM-6, MP-4, MP-5
+
+
+', [Supplemental_Info]=N' Configure Systems and Components for High-risk Areas
(a) Issue [Assignment: organization-defined systems or system components] with [Assignment: organization-defined configurations] to individuals traveling to locations that the organization deems to be of significant risk; and
(b) Apply the following controls to the systems or components when the individuals return from travel: [Assignment: organization-defined controls].
Discussion:When it is known that systems or system components will be in high-risk areas external to the organization, additional controls may be implemented to counter the increased threat in such areas. For example, organizations can take actions for notebook computers used by individuals departing on and returning from travel. Actions include determining the locations that are of concern, defining the required configurations for the components, ensuring that components are configured as intended before travel is initiated, and applying controls to the components after travel is completed. Specially configured notebook computers include computers with sanitized hard drives, limited applications, and more stringent configuration settings. Controls applied to mobile devices upon return from travel include examining the mobile device for signs of physical tampering and purging and reimaging disk drives. Protecting information that resides on mobile devices is addressed in the MP (Media Protection) family.' WHERE [Requirement_Id] = 37633
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Determine and document the types of changes to the system that are configuration- controlled;
[a: Implementation Statement]
+b. Review proposed configuration-controlled changes to the system and approve or disapprove such changes with explicit consideration for security and privacy impact analyses;
[b: Implementation Statement]
+c. Document configuration change decisions associated with the system;
[c: Implementation Statement]
+d. Establish an enterprise CCB to review, approve, and coordinate all changes to WMATA systems, CIs, or system components;
[d: Implementation Statement]
+e. Require all configuration changes to have business owner approval prior to the CCB;
[e: Implementation Statement]
+f. Implement approved configuration-controlled changes to the system by non-developers;
[f: Implementation Statement]
+g. Prior to implementation of approved configuration control changes pertaining to source code changes or software upgrades, create a backup of software and components based on a last known working configuration to ensure rollback capability prior to the implementation.
[g: Implementation Statement]
+h. Prior to CCB approval configuration control changes, such as source code changes or software upgrades, shall be validated against a trusted source to ensure the integrity of the code or installation files.
[h: Implementation Statement]
+i. Retain records of configuration-controlled changes to the system for at least five years or longer if specified by regulation, law, or external compliance mandate;
[i: Implementation Statement]
+j. Monitor and review activities associated with configuration-controlled changes to the system; and
[j: Implementation Statement]
+k. Coordinate and provide oversight for configuration change control activities through the CCB that convenes weekly. Normal changes shall be presented to the TWG prior to being presented at the CCB.
[k: Implementation Statement]
+
+OT Systems Only:
+Configuration change control procedures should align with the organization’s management of change practices.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CA-7, CM-2, CM-4, CM-5, CM-6, CM-9, CM-11, IA-3, MA-2, PE-16, PT-6, RA-8, SA-8, SA-10, SC-28, SI-2, SI-3, SI-4, SI-7, SI-10, SR-11
+
+l. Security Controls Enhancement(s):
[l: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Configuration change control procedures should align with the organization’s management of change practices.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Configuration Change Control
a. Determine and document the types of changes to the system that are configuration-controlled;
b. Review proposed configuration-controlled changes to the system and approve or disapprove such changes with explicit consideration for security and privacy impact analyses;
c. Document configuration change decisions associated with the system;
d. Implement approved configuration-controlled changes to the system;
e. Retain records of configuration-controlled changes to the system for [Assignment: organization-defined time period];
f. Monitor and review activities associated with configuration-controlled changes to the system; and
g. Coordinate and provide oversight for configuration change control activities through [Assignment: organization-defined configuration change control element] that convenes [Selection (one or more): [Assignment: organization-defined frequency]; when [Assignment: organization-defined configuration change conditions]].
Discussion:Configuration change control for organizational systems involves the systematic proposal, justification, implementation, testing, review, and disposition of system changes, including system upgrades and modifications. Configuration change control includes changes to baseline configurations, configuration items of systems, operational procedures, configuration settings for system components, remediate vulnerabilities, and unscheduled or unauthorized changes. Processes for managing configuration changes to systems include Configuration Control Boards or Change Advisory Boards that review and approve proposed changes. For changes that impact privacy risk, the senior agency official for privacy updates privacy impact assessments and system of records notices. For new systems or major upgrades, organizations consider including representatives from the development organizations on the Configuration Control Boards or Change Advisory Boards. Auditing of changes includes activities before and after changes are made to systems and the auditing activities required to implement such changes. See also SA-10.' WHERE [Requirement_Id] = 37634
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Use automated mechanisms to:
[Implementation Statement]
+
+(1) Document proposed changes to the system;
[1: Implementation Statement]
+(2) Notify both the CCB and TWG of proposed changes to the system and request change approval as required;
[2: Implementation Statement]
+(3) Highlight proposed changes to the system that have not been approved or disapproved within one month;
[3: Implementation Statement]
+(4) Prohibit changes to the system until designated approvals are received;
[4: Implementation Statement]
+(5) Document all changes to the system; and
[5: Implementation Statement]
+(6) Notify the required stakeholders when approved changes to the system are completed.
[6: Implementation Statement]
+
+
+' WHERE [Requirement_Id] = 37635
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Test, validate, and document changes to the system before finalizing the implementation of the changes.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Testing, Validation, and Documentation of Changes
Test, validate, and document changes to the system before finalizing the implementation of the changes.
Discussion:Changes to systems include modifications to hardware, software, or firmware components and configuration settings defined in CM-6. Organizations ensure that testing does not interfere with system operations that support organizational mission and business functions. Individuals or groups conducting tests understand security and privacy policies and procedures, system security and privacy policies and procedures, and the health, safety, and environmental risks associated with specific facilities or processes. Operational systems may need to be taken offline, or replicated to the extent feasible, before testing can be conducted. If systems must be taken offline for testing, the tests are scheduled to occur during planned system outages whenever possible. If the testing cannot be conducted on operational systems, organizations employ compensating controls.' WHERE [Requirement_Id] = 37636
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the CISO and the Privacy Officer, or designees, to be members of the DM CCB.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Security and Privacy Representatives
Require [Assignment: organization-defined security and privacy representatives] to be members of the [Assignment: organization-defined configuration change control element].
Discussion:Information security and privacy representatives include system security officers, senior agency information security officers, senior agency officials for privacy, or system privacy officers. Representation by personnel with information security and privacy expertise is important because changes to system configurations can have unintended side effects, some of which may be security- or privacy-relevant. Detecting such changes early in the process can help avoid unintended, negative consequences that could ultimately affect the security and privacy posture of systems. The configuration change control element referred to in the second organization-defined parameter reflects the change control elements defined by organizations in CM-3g.' WHERE [Requirement_Id] = 37637
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Ensure that cryptographic mechanisms used to provide the following controls are under configuration management:
[Implementation Statement]
+
+(1) Cryptographic Module Authentication
[1: Implementation Statement]
+(2) Cryptographic Key Establishment and Management
[2: Implementation Statement]
+(3) Cryptographic Protection
[3: Implementation Statement]
+(4) Public Key Certificates
[4: Implementation Statement]
+
+Related Controls: SC-12
+
+
+', [Supplemental_Info]=N' Cryptography Management
Ensure that cryptographic mechanisms used to provide the following controls are under configuration management: [Assignment: organization-defined controls].
Discussion:The controls referenced in the control enhancement refer to security and privacy controls from the control catalog. Regardless of the cryptographic mechanisms employed, processes and procedures are in place to manage those mechanisms. For example, if system components use certificates for identification and authentication, a process is implemented to address the expiration of those certificates.' WHERE [Requirement_Id] = 37638
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Review changes to the system [Assignment: organization-defined frequency] or when [Assignment: organization-defined circumstances] to determine whether unauthorized changes have occurred.
[Implementation Statement]
+
+OT Systems Only:
+The organization takes into consideration OT-specific requirements when determining frequency and/or circumstances for reviewing system changes. As an example, safety instrumented systems may be justified for review of system changes on a predetermined frequency to ensure that no inadvertent changes have been made to the logic solver portion of a safety instrumented function.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-6, AU-7, CM-3
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization considers OT-specific requirements when determining the frequency and/or circumstances for reviewing system changes. For example, safety instrumented systems may be justified for the review of system changes on a predetermined frequency to ensure that no inadvertent changes have been made to the logic solver portion of a safety instrumented function.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Configuration Change Control | Review System Changes
Review changes to the system [Assignment: organization-defined frequency] or when [Assignment: organization-defined circumstances] to determine whether unauthorized changes have occurred.
Discussion:Indications that warrant a review of changes to the system and the specific circumstances justifying such reviews may be obtained from activities carried out by organizations during the configuration change process or continuous monitoring process.' WHERE [Requirement_Id] = 37639
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent or restrict changes to the configuration of the system under the following circumstances: [Assignment: organization-defined circumstances].
[Implementation Statement]
+
+OT Systems Only:
+The organization prevents or restricts configuration changes based on a risk determination that the system should not be modified without additional permission. For example, some PLCs have physical key switches that are used to place the PLC in a mode that allows for programming changes. Physical key switches can restrict configuration changes so that physical access is required to make a modification to the system.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization prevents or restricts configuration changes based on a risk determination that the system should not be modified without additional permission. For example, some PLCs have physical key switches that are used to place the PLC in a mode that allows for programming changes. Physical key switches can restrict configuration changes so that physical access is required to make a modification to the system.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Configuration Change Control | Prevent or Restrict Configuration Changes
Prevent or restrict changes to the configuration of the system under the following circumstances: [Assignment: organization-defined circumstances].
Discussion:System configuration changes can adversely affect critical system security and privacy functionality. Change restrictions can be enforced through automated mechanisms.' WHERE [Requirement_Id] = 37640
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Analyze changes to the system to determine potential security and privacy impacts prior to change implementation.
[a: Implementation Statement]
+
+OT Systems Only:
+The organization considers OT safety and security interdependencies. OT security and safety personnel are included in change process management if the change to the system may have an impact on safety or security.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CA-7, CM-3, CM-8, CM-9, MA-2, RA-3, RA-5, RA-8, SA-5, SA-8, SA-10, SI-2
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization considers OT safety and security interdependencies. OT security and safety personnel are included in change process management if the change to the system may impact safety or security.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Impact Analyses
Analyze changes to the system to determine potential security and privacy impacts prior to change implementation.
Discussion:Organizational personnel with security or privacy responsibilities conduct impact analyses. Individuals conducting impact analyses possess the necessary skills and technical expertise to analyze the changes to systems as well as the security or privacy ramifications. Impact analyses include reviewing security and privacy plans, policies, and procedures to understand control requirements; reviewing system design documentation and operational procedures to understand control implementation and how specific system changes might affect the controls; reviewing the impact of changes on organizational supply chain partners with stakeholders; and determining how potential changes to a system create new risks to the privacy of individuals and the ability of implemented controls to mitigate those risks. Impact analyses also include risk assessments to understand the impact of the changes and determine if additional controls are required.' WHERE [Requirement_Id] = 37641
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Analyze changes to the system in a separate test environment before implementation in an operational environment, looking for security and privacy impacts due to flaws,weaknesses, incompatibility, or intentional malice.
[Implementation Statement]
+
+Related Controls: SA-11, SC-7
+
+
+', [Supplemental_Info]=N' Separate Test Environments
Analyze changes to the system in a separate test environment before implementation in an operational environment, looking for security and privacy impacts due to flaws, weaknesses, incompatibility, or intentional malice.
Discussion:A separate test environment requires an environment that is physically or logically separate and distinct from the operational environment. The separation is sufficient to ensure that activities in the test environment do not impact activities in the operational environment and that information in the operational environment is not inadvertently transmitted to the test environment. Separate environments can be achieved by physical or logical means. If physically separate test environments are not implemented, organizations determine the strength of mechanism required when implementing logical separation.' WHERE [Requirement_Id] = 37642
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'After system changes, verify that the impacted controls are implemented correctly, operating as intended, and producing the desired outcome regarding meeting the security and privacy requirements for the system.
[Implementation Statement]
+
+Related Controls: SA-11, SC-3, SI-6
+
+
+', [Supplemental_Info]=N' Verification of Controls
After system changes, verify that the impacted controls are implemented correctly, operating as intended, and producing the desired outcome with regard to meeting the security and privacy requirements for the system.
Discussion:Implementation in this context refers to installing changed code in the operational system that may have an impact on security or privacy controls.' WHERE [Requirement_Id] = 37643
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Define, document, approve, and enforce physical and logical access restrictions associated with changes to the system.
[a: Implementation Statement]
+b. Restrict access for Developers to production application objects, elements, and data.
[b: Implementation Statement]
+
+OT Systems Only:
+Some OT devices allow for the configuration and use of mode change switches. Where available, these should be used to prevent unauthorized changes. As an example, many PLCs have key switches that allow the device to be placed in a programming mode or a running mode. Those PLCs should be placed in a running or remote mode to prevent unauthorized programming changes, and the key should be removed from the key switch and managed appropriately.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-5, AC-6, CM-9, PE-3, SC-28, SI-2, SI-10
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Some OT devices allow for the configuration and use of mode change switches. Where available, these should be used to prevent unauthorized changes. For example, many PLCs have key switches that allow the device to be placed in a programming mode or a running mode. Those PLCs should be placed in a running or remote mode to prevent unauthorized programming changes, and the key should be removed from the key switch and managed appropriately.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Access Restrictions for Change
Define, document, approve, and enforce physical and logical access restrictions associated with changes to the system.
Discussion:Changes to the hardware, software, or firmware components of systems or the operational procedures related to the system can potentially have significant effects on the security of the systems or individuals’ privacy. Therefore, organizations permit only qualified and authorized individuals to access systems for purposes of initiating changes. Access restrictions include physical and logical access controls (see AC-3 and PE-3), software libraries, workflow automation, media libraries, abstract layers (i.e., changes implemented into external interfaces rather than directly into systems), and change windows (i.e., changes occur only during specified times).' WHERE [Requirement_Id] = 37644
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Enforce access restrictions using DMCS-approved automated mechanisms; and
[1: Implementation Statement]
+(2) Automatically generate audit records of the enforcement actions.
[2: Implementation Statement]
+
+Related Controls: AU-2, AU-6, AU-7, AU-12, CM-6, CM-11, SI-12
+
+
+', [Supplemental_Info]=N' Automated Access Enforcement and Audit Records
(a) Enforce access restrictions using [Assignment: organization-defined automated mechanisms]; and
(b) Automatically generate audit records of the enforcement actions.
Discussion:Organizations log system accesses associated with applying configuration changes to ensure that configuration change control is implemented and to support after-the-fact actions should organizations discover any unauthorized changes.' WHERE [Requirement_Id] = 37645
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish and document configuration settings for components employed within the system that reflect the most restrictive mode consistent with operational requirements using applicable Security Technical Implementation Guides (STIG) and the Center for Internet Security (CIS) Benchmarks designated and approved by DMCS, which results in approved security checklists. Applicable settings shall take precedence over other policy configuration settings unless otherwise approved by the Authorizing Officer (AO).
[a: Implementation Statement]
+b. Implement the configuration settings based on the approved security checklist;
[b: Implementation Statement]
+c. Identify, document, and receive approval from the AO for any deviations from established configuration settings. Temporary deviation requests shall be documented in a POA&M for continuous monitoring, tracking, and remediation, and specify any system component(s) and operational requirements that prevent implementation of the security setting(s); and
[c: Implementation Statement]
+d. Monitor and control changes to the configuration settings in accordance with organizational policies and procedures.
[d: Implementation Statement]
+e. All WMATA systems and devices shall have approved baselines in accordance with the configuration settings established in Control 3.4 Configuration Management, Section 6, “CM- 6 Configuration Settings”.
[e: Implementation Statement]
+Related Controls: AC-3, AC-19, AU-2, AU-6, CA-9, CM-2, CM-3, CM-5, CM-6, CM-7, CM-11, CP-7, CP-9, CP-10, IA-3, IA-5, PL-8, PL-9, RA-5, SA-4, SA-5, SA-8, SA-9, SC-18, SC-28, SI-2, SI-4, SI-6
+f. Security Controls Enhancement(s):
[f: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Configuration Settings
a. Establish and document configuration settings for components employed within the system that reflect the most restrictive mode consistent with operational requirements using [Assignment: organization-defined common secure configurations];
b. Implement the configuration settings;
c. Identify, document, and approve any deviations from established configuration settings for [Assignment: organization-defined system components] based on [Assignment: organization-defined operational requirements]; and
d. Monitor and control changes to the configuration settings in accordance with organizational policies and procedures.
Discussion:Configuration settings are the parameters that can be changed in the hardware, software, or firmware components of the system that affect the security and privacy posture or functionality of the system. Information technology products for which configuration settings can be defined include mainframe computers, servers, workstations, operating systems, mobile devices, input/output devices, protocols, and applications. Parameters that impact the security posture of systems include registry settings; account, file, or directory permission settings; and settings for functions, protocols, ports, services, and remote connections. Privacy parameters are parameters impacting the privacy posture of systems, including the parameters required to satisfy other privacy controls. Privacy parameters include settings for access controls, data processing preferences, and processing and retention permissions. Organizations establish organization-wide configuration settings and subsequently derive specific configuration settings for systems. The established settings become part of the configuration baseline for the system.
Common secure configurations (also known as security configuration checklists, lockdown and hardening guides, and security reference guides) provide recognized, standardized, and established benchmarks that stipulate secure configuration settings for information technology products and platforms as well as instructions for configuring those products or platforms to meet operational requirements. Common secure configurations can be developed by a variety of organizations, including information technology product developers, manufacturers, vendors, federal agencies, consortia, academia, industry, and other organizations in the public and private sectors.
Implementation of a common secure configuration may be mandated at the organization level, mission and business process level, system level, or at a higher level, including by a regulatory agency. Common secure configurations include the United States Government Configuration Baseline [USGCB] and security technical implementation guides (STIGs), which affect the implementation of CM-6 and other controls such as AC-19 and CM-7. The Security Content Automation Protocol (SCAP) and the defined standards within the protocol provide an effective method to uniquely identify, track, and control configuration settings.
' WHERE [Requirement_Id] = 37646
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Manage, apply, and verify configuration settings for system components using DMCS approved automated mechanisms.
[Implementation Statement]
+
+Related Controls: CA-7
+
+
+', [Supplemental_Info]=N' Automated Management, Application, and Verification
Manage, apply, and verify configuration settings for [Assignment: organization-defined system components] using [Assignment: organization-defined automated mechanisms].
Discussion:Automated tools (e.g., hardening tools, baseline configuration tools) can improve the accuracy, consistency, and availability of configuration settings information. Automation can also provide data aggregation and data correlation capabilities, alerting mechanisms, and dashboards to support risk-based decision-making within the organization.' WHERE [Requirement_Id] = 37647
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Take the following actions in response to unauthorized changes to configuration settings:
[1: Implementation Statement]
+ (a) Alert designated personnel to restore authorized configuration settings or halt affected system processing. These requirements shall be documented in the SSP.
[1.a: Implementation Statement]
+ (b) If system processing is halted, execute the Information System Contingency Plan (ISCP)/Disaster Recovery Plan (DRP).
[1.b: Implementation Statement]
+
+Related Controls: IR-4, IR-6, SI-7
+
+
+', [Supplemental_Info]=N' Respond to Unauthorized Changes
Take the following actions in response to unauthorized changes to [Assignment: organization-defined configuration settings]: [Assignment: organization-defined actions].
Discussion:Responses to unauthorized changes to configuration settings include alerting designated organizational personnel, restoring established configuration settings, or—in extreme cases—halting affected system processing.' WHERE [Requirement_Id] = 37648
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Configure the system to provide only mission essential capabilities consistent with the business mission or operations; and
[a: Implementation Statement]
+b. Prohibit or restrict the use of the disallowed, unnecessary and nonsecure functions, ports, protocols, software, and/or services published in the PPSM to prevent unauthorized connection of components, transfer of information, and tunneling.
[b: Implementation Statement]
+
+OT Systems Only:
+The organization implements least functionality by allowing only specified functions, protocols, and/or services required for OT operations. For non-routable protocols such as serial communications, interrupts could be disabled or set points could be made read-only except for privileged users to limit functionality. Ports are part of the address space in network protocols and are often associated with specific protocols or functions. For routable protocols, ports can be disabled on many networking devices to limit functionality to the minimum required for operation.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-4, CM-2, CM-5, CM-6, CM-11, RA-5, SA-4, SA-5, SA-8, SA-9, SA-15, SC-2, SC-3, SC-7, SI-4
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization implements least functionality by allowing only the specified functions, protocols, and/or services required for OT operations. For non-routable protocols, such as serial communications, interrupts could be disabled or set points could be made readonly except for privileged users to limit functionality. Ports are part of the address space in network protocols and are often associated with specific protocols or functions. For routable protocols, ports can be disabled on many networking devices to limit functionality to the minimum required for operation.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Least Functionality
a. Configure the system to provide only [Assignment: organization-defined mission essential capabilities]; and
b. Prohibit or restrict the use of the following functions, ports, protocols, software, and/or services: [Assignment: organization-defined prohibited or restricted functions, system ports, protocols, software, and/or services].
Discussion:Systems provide a wide variety of functions and services. Some of the functions and services routinely provided by default may not be necessary to support essential organizational missions, functions, or operations. Additionally, it is sometimes convenient to provide multiple services from a single system component, but doing so increases risk over limiting the services provided by that single component. Where feasible, organizations limit component functionality to a single function per component. Organizations consider removing unused or unnecessary software and disabling unused or unnecessary physical and logical ports and protocols to prevent unauthorized connection of components, transfer of information, and tunneling. Organizations employ network scanning tools, intrusion detection and prevention systems, and end-point protection technologies, such as firewalls and host-based intrusion detection systems, to identify and prevent the use of prohibited functions, protocols, ports, and services. Least functionality can also be achieved as part of the fundamental design and development of the system (see SA-8, SC-2, and SC-3).' WHERE [Requirement_Id] = 37649
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Review the system at least annually, as a part of system changes, or when a significant change occurs to identify unnecessary and/or nonsecure functions, ports, protocols, software, and services; and
[1: Implementation Statement]
+(2) Disable or remove disallowed, unnecessary and nonsecure functions, ports, protocols, software, and services within the system.
[2: Implementation Statement]
+
+Related Controls: AC-18
+
+
+', [Supplemental_Info]=N' Periodic Review
(a) Review the system [Assignment: organization-defined frequency] to identify unnecessary and/or nonsecure functions, ports, protocols, software, and services; and
(b) Disable or remove [Assignment: organization-defined functions, ports, protocols, software, and services within the system deemed to be unnecessary and/or nonsecure].
Discussion:Organizations review functions, ports, protocols, and services provided by systems or system components to determine the functions and services that are candidates for elimination. Such reviews are especially important during transition periods from older technologies to newer technologies (e.g., transition from IPv4 to IPv6). These technology transitions may require implementing the older and newer technologies simultaneously during the transition period and returning to minimum essential functions, ports, protocols, and services at the earliest opportunity. Organizations can either decide the relative security of the function, port, protocol, and/or service or base the security decision on the assessment of other entities. Unsecure protocols include Bluetooth, FTP, and peer-to-peer networking.' WHERE [Requirement_Id] = 37650
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Where feasible, limit component functionality to a single function per component.
[1: Implementation Statement]
+(2) Remove unused or unnecessary software and disable unused or unnecessary physical and logical ports and protocols to prevent unauthorized connection of components, transfer of information, and tunneling.
[2: Implementation Statement]
+(3) Employ network scanning tools, intrusion detection and prevention systems, and end-point protection technologies, such as firewalls and host-based intrusion detection systems, to identify and prevent the use of prohibited functions, protocols, ports, and services.
[3: Implementation Statement]
+
+Related Controls: CM-8, PL-4, PL-9, PM-5, PS-6
+
+
+', [Supplemental_Info]=N' Prevent Program Execution
Prevent program execution in accordance with [Selection (one or more): [Assignment: organization-defined policies, rules of behavior, and/or access agreements regarding software program usage and restrictions]; rules authorizing the terms and conditions of software program usage].
Discussion:Prevention of program execution addresses organizational policies, rules of behavior, and/or access agreements that restrict software usage and the terms and conditions imposed by the developer or manufacturer, including software licensing and copyrights. Restrictions include prohibiting auto-execute features, restricting roles allowed to approve program execution, permitting or prohibiting specific software programs, or restricting the number of program instances executed at the same time.' WHERE [Requirement_Id] = 37651
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) The operation of software, as designated on the APL, which are authorized to execute on the system;
[1: Implementation Statement]
+(2) Employ a deny-all, permit-by-exception policy to allow the execution of authorized software programs on the system; and
[2: Implementation Statement]
+(3) Review and update the APL annually.
[3: Implementation Statement]
+
+OT Systems Only:
+The set of applications that run in OT is relatively static, making allowlisting practical. DHS recommends using application allowlisting for OT equipment.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CM-2, CM-6, CM-8, CM-10, PL-9, PM-5, SA-10, SI-7
+
+NIST 800-82 Rev 3:
+OT Discussion: The set of applications that run in OT is relatively static, making allowlisting practical. DHS recommends using application allowlisting for OT equipment.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Least Functionality | Authorized Software
Unauthorized software programs can be limited to specific versions or from a specific source. The concept of prohibiting the execution of unauthorized software may also be applied to user actions, system ports and protocols, IP addresses/ranges, websites, and MAC addresses.
Discussion:Authorized software programs can be limited to specific versions or from a specific source. To facilitate a comprehensive authorized software process and increase the strength of protection for attacks that bypass application level authorized software, software programs may be decomposed into and monitored at different levels of detail. These levels include applications, application programming interfaces, application modules, scripts, system processes, system services, kernel functions, registries, drivers, and dynamic link libraries. The concept of permitting the execution of authorized software may also be applied to user actions, system ports and protocols, IP addresses/ranges, websites, and MAC addresses. Organizations consider verifying the integrity of authorized software programs using digital signatures, cryptographic checksums, or hash functions. Verification of authorized software can occur either prior to execution or at system startup. The identification of authorized URLs for websites is addressed in CA-3(5) and SC-7.' WHERE [Requirement_Id] = 37652
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop and document an inventory of system components within the enterprise CMDB that:
[a: Implementation Statement]
+ i) Accurately reflects the system;
[a.i: Implementation Statement]
+ ii) Includes all components within the system;
[a.ii: Implementation Statement]
+ iii) Does not include duplicate accounting of components or components assigned to any other system;
[a.iii: Implementation Statement]
+ iv) Is at the level of granularity deemed necessary for tracking and reporting; and
[a.iv: Implementation Statement]
+ v) Includes the following information to achieve system component accountability:
[a.v: Implementation Statement]
+ (1) Hardware, software, and firmware inventories:
[a.v.1: Implementation Statement]
+ (a) Hardware inventory includes specifications (manufacturer, type, model, serial number, physical location).
[a.v.1.a: Implementation Statement]
+ (b) Software inventory includes software name, software license information (minimally inclusive of expiration date, license type, number of licenses), serial numbers (if applicable), information system/component owner, IP/hostname, software products and version numbers for all components, application URLs (for scanning), responsible point of contact and role/organizational unit per Control 3.4 Configuration Management, Section 8, (c), (iv), “CM-8 (4) Accountability Information”, and for a networked component/device, the machine name (including DNS name, Netbios Name), network address (IPv4 & IPv6).
[a.v.1.b: Implementation Statement]
+ (c) Firmware inventory includes vendor name, product, and version.
[a.v.1.c: Implementation Statement]
+b. Review and update the system component inventory quarterly. Monitoring for any changes to the system component inventory and monitoring for the addition of unauthorized system components may be accomplished on an ongoing basis or by the periodic scanning of systems for that purpose. Automated mechanisms may also be used to prevent the connection of unauthorized components as noted in Control 3.4 Configuration Management Section 8, (c), (iii), “CM-8 (3) Automated Unauthorized Component Detection”.
[b: Implementation Statement]
+c. Systems or system components that do not have or cannot support agents (e.g., IoT devices or sensors) shall be isolated, sandboxed, or segmented by placing them in separate domains or subnets, or by quarantining such components.
[c: Implementation Statement]
+
+Related Controls: CM-2, CM-7, CM-8, CM-9, CM-10, CM-11, CP-2, CP-9, MA-2, MA-6, PL-9, PM-5, SA-4, SA-5, SI-2, SR-4
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+IV. Records
+
+C. Documentation to Establish Compliance
+
+C.2.a. Hardware/software asset inventory, including supervisory control, and data acquisition systems. (p.11)
[C.2.a: Implementation Statement]
+', [Supplemental_Info]=N'System Component Inventory
a. Develop and document an inventory of system components that:
1. Accurately reflects the system;
2. Includes all components within the system;
3. Does not include duplicate accounting of components or components assigned to any other system;
4. Is at the level of granularity deemed necessary for tracking and reporting; and
5. Includes the following information to achieve system component accountability: [Assignment: organization-defined information deemed
necessary to achieve effective system component accountability]; and
b. Review and update the system component inventory [Assignment: organization-defined frequency].
Discussion:System components are discrete, identifiable information technology assets that include hardware, software, and firmware. Organizations may choose to implement centralized system component inventories that include components from all organizational systems. In such situations, organizations ensure that the inventories include system-specific information required for component accountability. The information necessary for effective accountability of system components includes the system name, software owners, software version numbers, hardware inventory specifications, software license information, and for networked components, the machine names and network addresses across all implemented protocols (e.g., IPv4, IPv6). Inventory specifications include date of receipt, cost, model, serial number, manufacturer, supplier information, component type, and physical location.
Preventing duplicate accounting of system components addresses the lack of accountability that occurs when component ownership and system association is not known, especially in large or complex connected systems. Effective prevention of duplicate accounting of system components necessitates use of a unique identifier for each component. For software inventory, centrally managed software that is accessed via other systems is addressed as a component of the system on which it is installed and managed. Software installed on multiple organizational systems and managed at the system level is addressed for each individual system and may appear more than once in a centralized component inventory, necessitating a system association for each software instance in the centralized inventory to avoid duplicate accounting of components. Scanning systems implementing multiple network protocols (e.g., IPv4 and IPv6) can result in duplicate components being identified in different address spaces. The implementation of CM-8(7) can help to eliminate duplicate accounting of components.
' WHERE [Requirement_Id] = 37653
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Update the inventory of system components as part of component installations, removals, and system updates.
[1: Implementation Statement]
+
+Related Controls: PM-16
+
+
+', [Supplemental_Info]=N' Updates During Installation and Removal
Update the inventory of system components as part of component installations, removals, and system updates.
Discussion:Organizations can improve the accuracy, completeness, and consistency of system component inventories if the inventories are updated as part of component installations or removals or during general system updates. If inventories are not updated at these key times, there is a greater likelihood that the information will not be appropriately captured and documented. System updates include hardware, software, and firmware components.' WHERE [Requirement_Id] = 37654
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Maintain the currency, completeness, accuracy, and availability of the inventory of system components using automated mechanisms to maintain the accuracy of the CMDB.
[1: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Maintenance
Maintain the currency, completeness, accuracy, and availability of the inventory of system components using [Assignment: organization-defined automated mechanisms].
Discussion:Organizations maintain system inventories to the extent feasible. For example, virtual machines can be difficult to monitor because such machines are not visible to the network when not in use. In such cases, organizations maintain as up-to-date, complete, and accurate an inventory as is deemed reasonable. Automated maintenance can be achieved by the implementation of CM-2(2) for organizations that combine system component inventory and baseline configuration activities.' WHERE [Requirement_Id] = 37655
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Immediately (real-time) remediate any detected unauthorized hardware, software, and firmware components within the system using automated mechanisms such as rogue system or device detectors, and Network Access Control (NAC);
[1: Implementation Statement]
+(2) Take the following actions when unauthorized components are detected: quarantine the components; notify required stakeholders.
[2: Implementation Statement]
+(3) Authorized components that fail to meet vulnerability management requirements shall be placed into a remediation zone until requirements are met.
[3: Implementation Statement]
+
+Related Controls: AC-19, CA-7, RA-5, SC-3, SC-39, SI-3, SI-4, SI-7
+
+
+', [Supplemental_Info]=N' Automated Unauthorized Component Detection
(a) Detect the presence of unauthorized hardware, software, and firmware components within the system using [Assignment: organization-defined automated mechanisms] [Assignment: organization-defined frequency]; and
(b) Take the following actions when unauthorized components are detected: [Selection (one or more): disable network access by such components; isolate the components; notify [Assignment: organization-defined personnel or roles]].
Discussion:Automated unauthorized component detection is applied in addition to the monitoring for unauthorized remote connections and mobile devices. Monitoring for unauthorized system components may be accomplished on an ongoing basis or by the periodic scanning of systems for that purpose. Automated mechanisms may also be used to prevent the connection of unauthorized components (see CM-7(9)). Automated mechanisms can be implemented in systems or in separate system components. When acquiring and implementing automated mechanisms, organizations consider whether such mechanisms depend on the ability of the system component to support an agent or supplicant in order to be detected since some types of components do not have or cannot support agents (e.g., IoT devices, sensors). Isolation can be achieved , for example, by placing unauthorized system components in separate domains or subnets or quarantining such components. This type of component isolation is commonly referred to as “sandboxing.”' WHERE [Requirement_Id] = 37656
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Include in the system component inventory information, a means for identifying by name and position the System Owner accountable for administering those components and by name and/or position the System Administrator responsible for administering those components.
[1: Implementation Statement]
+
+Related Controls: AC-3
+
+
+', [Supplemental_Info]=N' Accountability Information
Include in the system component inventory information, a means for identifying by [Selection (one or more): name; position; role], individuals responsible and accountable for administering those components.
Discussion:Identifying individuals who are responsible and accountable for administering system components ensures that the assigned components are properly administered and that organizations can contact those individuals if some action is required (e.g., when the component is determined to be the source of a breach, needs to be recalled or replaced, or needs to be relocated).' WHERE [Requirement_Id] = 37657
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop, document, and implement a configuration management plan for the system that:
[a: Implementation Statement]
+ i) Addresses roles, responsibilities, and configuration management processes and procedures;
[a.i: Implementation Statement]
+ ii) Establishes a process for identifying configuration items throughout the system development life cycle and for managing the configuration of the configuration items;
[a.ii: Implementation Statement]
+ iii) Defines the configuration items for the system and places the configuration items under configuration management;
[a.iii: Implementation Statement]
+ iv) Is reviewed and approved by the business owner(s), system owner, and CCB;
[a.iv: Implementation Statement]
+ v) Protects the configuration management plan from unauthorized disclosure and modification; and
[a.v: Implementation Statement]
+ vi) Identifies a process for configuration monitoring.
[a.vi: Implementation Statement]
+
+OT Systems Only:
+Configuration management plans apply to internal and external (e.g., contractors, integrators) resources responsible for device configuration.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CM-2, CM-3, CM-4, CM-5, CM-8, PL-2, RA-8, SA-10, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: Configuration management plans apply to the internal and external (e.g., contractors, integrators) resources responsible for device configuration.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Configuration Management Plan
Develop, document, and implement a configuration management plan for the system that:
a. Addresses roles, responsibilities, and configuration management processes and procedures;
b. Establishes a process for identifying configuration items throughout the system development life cycle and for managing the configuration of the configuration items;
c. Defines the configuration items for the system and places the configuration items under configuration management;
d. Is reviewed and approved by [Assignment: organization-defined personnel or roles]; and
e. Protects the configuration management plan from unauthorized disclosure and modification.
Discussion:Configuration management activities occur throughout the system development life cycle. As such, there are developmental configuration management activities (e.g., the control of code and software libraries) and operational configuration management activities (e.g., control of installed components and how the components are configured). Configuration management plans satisfy the requirements in configuration management policies while being tailored to individual systems. Configuration management plans define processes and procedures for how configuration management is used to support system development life cycle activities.
Configuration management plans are generated during the development and acquisition stage of the system development life cycle. The plans describe how to advance changes through change management processes; update configuration settings and baselines; maintain component inventories; control development, test, and operational environments; and develop, release, and update key documents.
Organizations can employ templates to help ensure the consistent and timely development and implementation of configuration management plans. Templates can represent a configuration management plan for the organization with subsets of the plan implemented on a system by system basis. Configuration management approval processes include the designation of key stakeholders responsible for reviewing and approving proposed changes to systems, and personnel who conduct security and privacy impact analyses prior to the implementation of changes to the systems. Configuration items are the system components, such as the hardware, software, firmware, and documentation to be configuration-managed. As systems continue through the system development life cycle, new configuration items may be identified, and some existing configuration items may no longer need to be under configuration control.
' WHERE [Requirement_Id] = 37658
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Contingency Planning Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] contingency planning policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the contingency planning policy and the associated contingency planning controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the contingency planning policy and procedures; and
c. Review and update the current contingency planning:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Contingency planning policy and procedures address the controls in the CP family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of contingency planning policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to contingency planning policy and procedures include assessment or audit findings, security incidents or breaches, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37659
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide for the recovery and reconstitution of the system to a known state within the time period specified in the CP consistent with recovery time and recovery point objectives in the BIA after a disruption, compromise, or failure.
[a: Implementation Statement]
+
+OT Systems Only:
+Reconstitution of the OT includes consideration whether system state variables should be restored to initial values or values before disruption (e.g., are valves restored to full open, full closed, or settings prior to disruption). Restoring system state variables may be disruptive to ongoing physical-processes (e.g., valves initially closed may adversely affect system cooling).
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-2, CP-4, CP-6, CP-7, CP-9, IR-4, SA-8, SC-24, SI-13
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Reconstitution of the OT includes considering whether system state variables should be restored to initial values or the values before disruption (e.g., are valves restored to full open, full closed, or settings prior to disruption). Restoring system state variables may be disruptive to ongoing physical processes (e.g., valves initially closed may adversely affect system cooling).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Recovery and Reconstitution
Provide for the recovery and reconstitution of the system to a known state within [Assignment: organization-defined time period consistent with recovery time and recovery point objectives] after a disruption, compromise, or failure.
Discussion:Recovery is executing contingency plan activities to restore organizational mission and business functions. Reconstitution takes place following recovery and includes activities for returning systems to fully operational states. Recovery and reconstitution operations reflect mission and business priorities; recovery point, recovery time, and reconstitution objectives; and organizational metrics consistent with contingency plan requirements. Reconstitution includes the deactivation of interim system capabilities that may have been needed during recovery operations. Reconstitution also includes assessments of fully restored system capabilities, reestablishment of continuous monitoring activities, system reauthorization (if required), and activities to prepare the system and organization for future disruptions, breaches, compromises, or failures. Recovery and reconstitution capabilities can include automated mechanisms and manual procedures. Organizations establish recovery time and recovery point objectives as part of contingency planning.' WHERE [Requirement_Id] = 37660
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement transaction recovery for systems that are transaction-based to include database management systems (DBMS) and other transaction processing systems (e.g., systems that process financial transactions). When available, transaction rollback and journaling shall be implemented.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Transaction Recovery
Implement transaction recovery for systems that are transaction-based.
Discussion:Transaction-based systems include database management systems and transaction processing systems. Mechanisms supporting transaction recovery include transaction rollback and transaction journaling.' WHERE [Requirement_Id] = 37661
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide the capability to restore system components from configuration-controlled and integrity-protected information representing a known, operational state for the components within restoration time periods consistent with objectives specified in the CP and associated BIA.
[Implementation Statement]
+
+Related Controls: CM-2, CM-6
+
+
+', [Supplemental_Info]=N' Restore Within Time Period
Provide the capability to restore system components within [Assignment: organization-defined restoration time periods] from configuration-controlled and integrity-protected information representing a known, operational state for the components.
Discussion:Restoration of system components includes reimaging, which restores the components to known, operational states.' WHERE [Requirement_Id] = 37662
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Protect system components used for recovery and reconstitution.
[Implementation Statement]
+
+Related Controls: AC-3, AC-6, MP-2, MP-4, PE-3, PE-6
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations should consider recovery and reconstitution timeframes when storing spare equipment, including environmental hazards that could damage the equipment. Storage locations and environments should be chosen appropriately for the type of backup equipment.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding CP-10 (6) to MOD and HIGH baselines: OT system components stored without protection against environmental threats and unauthorized physical or logical access can be susceptible to compromise or damage. Certain system components may include embedded electronics that must be protected from environmental hazards.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Recovery and Reconstitution | Component Protection
Protect system components used for recovery and reconstitution.
Discussion:Protection of system recovery and reconstitution components (i.e., hardware, firmware, and software) includes physical and technical controls. Backup and restoration components used for recovery and reconstitution include router tables, compilers, and other system software.' WHERE [Requirement_Id] = 37663
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'When [Assignment: organization-defined conditions] are detected, enter a safe mode of operation with [Assignment: organization-defined restrictions of safe mode of operation].
[Implementation Statement]
+
+Related Controls: CM-2, SA-8, SC-24, SI-13, SI-17
+
+NIST 800-82 Rev 3:
+Rationale for adding CP-12 to LOW, MOD, and HIGH baselines: This control provides a framework for the organization to plan its policy and procedures for dealing with IT and OT conditions beyond its control in the environment of operations to minimize potential safety and environmental impacts.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Safe Mode
When [Assignment: organization-defined conditions] are detected, enter a safe mode of operation with [Assignment: organization-defined restrictions of safe mode of operation].
Discussion:For systems that support critical mission and business functions—including military operations, civilian space operations, nuclear power plant operations, and air traffic control operations (especially real-time operational environments)—organizations can identify certain conditions under which those systems revert to a predefined safe mode of operation. The safe mode of operation, which can be activated either automatically or manually, restricts the operations that systems can execute when those conditions are encountered. Restriction includes allowing only selected functions to execute that can be carried out under limited power or with reduced communications bandwidth.' WHERE [Requirement_Id] = 37664
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop an ISCP for the system that:
[a: Implementation Statement]
+ i) Identifies essential mission and business functions and associated contingency requirements;
[a.i: Implementation Statement]
+ ii) Provides recovery objectives, restoration priorities, and metrics;
[a.ii: Implementation Statement]
+ iii) Addresses contingency roles, responsibilities, assigned individuals with contact information;
[a.iii: Implementation Statement]
+ iv) Addresses maintaining essential mission and business functions despite a system disruption, compromise, or failure;
[a.iv: Implementation Statement]
+ v) Addresses eventual, full system restoration without deterioration of the controls originally planned and implemented;
[a.v: Implementation Statement]
+ vi) Addresses the sharing of contingency information; and
[a.vi: Implementation Statement]
+ vii) Is reviewed and approved by the SO prior to submission to the AO for acceptance.
[a.vii: Implementation Statement]
+b. Distribute copies of the ISCP to required stakeholders;
[b: Implementation Statement]
+c. Coordinate contingency planning activities with incident handling activities;
[c: Implementation Statement]
+d. Review the ISCP for the system annually;
[d: Implementation Statement]
+e. Update the ISCP to address changes to the organization, system, or environment of operation and problems encountered during ISCP implementation, execution, or testing;
[e: Implementation Statement]
+f. Communicate ISCP changes to required stakeholders;
[f: Implementation Statement]
+g. Incorporate lessons learned from ISCP testing, training, or actual contingency activities into contingency testing and training; and
[g: Implementation Statement]
+h. Protect the ISCP from unauthorized disclosure and modification.
[h: Implementation Statement]
+i. Disaster Recovery Plan (DRP)
+Establish a DRP which applies to major, usually physical disruptions to service that deny access to the primary facility infrastructure for an extended period. A DRP is an information system-focused plan designed to restore operability of the target system, application, or computer facility infrastructure at an alternate site after an emergency. The DRP must provide for full restoration at the primary facility. The DRP may be supported by multiple information system contingency plans to address recovery of impacted individual systems once the alternate facility has been established. A DRP may support a Business Continuity Plan (BCP) or Continuity of Operation Plan (COOP) by recovering supporting systems for mission/business processes or mission essential functions at an alternate location. The DRP only addresses information system disruptions that require relocation of operations.
[i: Implementation Statement]
+
+OT Systems Only:
+The organization defines contingency plans for categories of disruptions or failures. In the case of a contingency, the OT equipment executes preprogrammed functions such as alert the operator of the failure and then do nothing, alert the operator and then safely shut down the industrial process, or alert the operator and then maintain the last operational setting prior to failure. Contingency plans for widespread disruption may involve specialized organizations (e.g., FEMA, emergency services, regulatory authorities).
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-3, CP-4, CP-6, CP-7, CP-8, CP-9, CP-10, IR-4, IR-6, IR-8, IR-9, MA-6, MP-2, MP-4, MP-5, PL-2, PM-8, PM-11, SA-15, SC-7, SC-23, SI-12
+
+j. Security Controls Enhancement(s):
[j: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization defines contingency plans for categories of disruptions or failures. In the case of a contingency, the OT equipment executes preprogrammed functions, such as alerting the operator of the failure and then doing nothing, alerting the operator and then safely shutting down the industrial process, or alerting the operator and then maintaining the last operational setting prior to failure. Contingency plans for widespread disruption may involve specialized organizations (e.g., FEMA, emergency services, regulatory authorities).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Contingency Plan
a. Develop a contingency plan for the system that:
1. Identifies essential mission and business functions and associated contingency requirements;
2. Provides recovery objectives, restoration priorities, and metrics;
3. Addresses contingency roles, responsibilities, assigned individuals with contact information;
4. Addresses maintaining essential mission and business functions despite a system disruption, compromise, or failure;
5. Addresses eventual, full system restoration without deterioration of the controls originally planned and implemented;
6. Addresses the sharing of contingency information; and
7. Is reviewed and approved by [Assignment: organization-defined personnel or roles];
b. Distribute copies of the contingency plan to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements];
c. Coordinate contingency planning activities with incident handling activities;
d. Review the contingency plan for the system [Assignment: organization-defined frequency];
e. Update the contingency plan to address changes to the organization, system, or environment of operation and problems encountered during contingency plan implementation, execution, or testing;
f. Communicate contingency plan changes to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements];
g. Incorporate lessons learned from contingency plan testing, training, or actual contingency activities into contingency testing and training; and
h. Protect the contingency plan from unauthorized disclosure and modification.
Discussion:Contingency planning for systems is part of an overall program for achieving continuity of operations for organizational mission and business functions. Contingency planning addresses system restoration and implementation of alternative mission or business processes when systems are compromised or breached. Contingency planning is considered throughout the system development life cycle and is a fundamental part of the system design. Systems can be designed for redundancy, to provide backup capabilities, and for resilience. Contingency plans reflect the degree of restoration required for organizational systems since not all systems need to fully recover to achieve the level of continuity of operations desired. System recovery objectives reflect applicable laws, executive orders, directives, regulations, policies, standards, guidelines, organizational risk tolerance, and system impact level.
Actions addressed in contingency plans include orderly system degradation, system shutdown, fallback to a manual mode, alternate information flows, and operating in modes reserved for when systems are under attack. By coordinating contingency planning with incident handling activities, organizations ensure that the necessary planning activities are in place and activated in the event of an incident. Organizations consider whether continuity of operations during an incident conflicts with the capability to automatically disable the system, as specified in IR-4(5). Incident response planning is part of contingency planning for organizations and is addressed in the IR (Incident Response) family.
' WHERE [Requirement_Id] = 37665
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Coordinate ISCP development and testing with organizational elements responsible for related plans ensuring that other contingency, continuity, disaster recovery, crisis communication, incident response, and occupant emergency plans are aligned and coordinated with CPs.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Coordinate with Related Plans
Coordinate contingency plan development with organizational elements responsible for related plans.
Discussion:Plans that are related to contingency plans include Business Continuity Plans, Disaster Recovery Plans, Critical Infrastructure Plans, Continuity of Operations Plans, Crisis Communications Plans, Insider Threat Implementation Plans, Data Breach Response Plans, Cyber Incident Response Plans, Breach Response Plans, and Occupant Emergency Plans.' WHERE [Requirement_Id] = 37666
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Conduct capacity planning so that necessary capacity for information processing, telecommunications, and environmental support exists during contingency operations.
[Implementation Statement]
+
+Related Controls: PE-11, PE-12, PE-13, PE-14, PE-18, SC-5
+
+
+', [Supplemental_Info]=N' Capacity Planning
Conduct capacity planning so that necessary capacity for information processing, telecommunications, and environmental support exists during contingency operations.
Discussion:Capacity planning is needed because different threats can result in a reduction of the available processing, telecommunications, and support services intended to support essential mission and business functions. Organizations anticipate degraded operations during contingency operations and factor the degradation into capacity planning. For capacity planning, environmental support refers to any environmental factor for which the organization determines that it needs to provide support in a contingency situation, even if in a degraded state. Such determinations are based on an organizational assessment of risk, system categorization (impact level), and organizational risk tolerance.' WHERE [Requirement_Id] = 37667
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Plan for the resumption of all mission and business functions within the RTO and RPO as specified as part of the business continuity planning and documented in the system’s Business Impact Analysis (BIA).
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Resume Mission and Business Functions
Plan for the resumption of [Selection: all; essential] mission and business functions within [Assignment: organization-defined time period] of contingency plan activation.
Discussion:Organizations may choose to conduct contingency planning activities to resume mission and business functions as part of business continuity planning or as part of business impact analyses. Organizations prioritize the resumption of mission and business functions. The time period for resuming mission and business functions may be dependent on the severity and extent of the disruptions to the system and its supporting infrastructure.' WHERE [Requirement_Id] = 37668
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Plan for the continuance of all mission and business functions with minimal or no loss of operational continuity and sustain that continuity until full system restoration at primary processing and/or storage sites as part of business continuity planning as documented in the system BIA.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Continue Mission and Business Functions
Plan for the continuance of [Selection: all; essential] mission and business functions with minimal or no loss of operational continuity and sustains that continuity until full system restoration at primary processing and/or storage sites.
Discussion:Organizations may choose to conduct the contingency planning activities to continue mission and business functions as part of business continuity planning or business impact analyses. Primary processing and/or storage sites defined by organizations as part of contingency planning may change depending on the circumstances associated with the contingency.' WHERE [Requirement_Id] = 37669
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Identify critical system assets supporting all mission and business functions as part of criticality analysis and/or business continuity planning as documented in the system BIA.
[Implementation Statement]
+
+Related Controls: CM-8, RA-9
+
+
+', [Supplemental_Info]=N' Identify Critical Assets
Identify critical system assets supporting [Selection: all; essential] mission and business functions.
Discussion:Organizations may choose to identify critical assets as part of criticality analysis, business continuity planning, or business impact analyses. Organizations identify critical system assets so that additional controls can be employed (beyond the controls routinely implemented) to help ensure that organizational mission and business functions can continue to be conducted during contingency operations. The identification of critical information assets also facilitates the prioritization of organizational resources. Critical system assets include technical and operational aspects. Technical aspects include system components, information technology services, information technology products, and mechanisms. Operational aspects include procedures (i.e., manually executed operations) and personnel (i.e., individuals operating technical controls and/or executing manual procedures). Organizational program protection plans can assist in identifying critical assets. If critical assets are resident within or supported by external service providers, organizations consider implementing CP-2(7) as a control enhancement.' WHERE [Requirement_Id] = 37670
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide contingency training to system users consistent with assigned roles and responsibilities:
[a: Implementation Statement]
+ i) Within 30 days of assuming a contingency role or responsibility;
[a.i: Implementation Statement]
+ ii) When required by system changes; and
[a.ii: Implementation Statement]
+ iii) Annually thereafter; and
[a.iii: Implementation Statement]
+b. Review and update contingency training content annually and following events to include, but not limited to, ISCP testing or an actual contingency (lessons learned), assessment or audit findings, security or privacy incidents, or changes in laws, directives, regulations, policies, standards, and guidelines.
[b: Implementation Statement]
+
+Related Controls: AT-2, AT-3, AT-4, CP-2, CP-4, CP-8, IR-2, IR-4, IR-9
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Contingency Training
a. Provide contingency training to system users consistent with assigned roles and responsibilities:
1. Within [Assignment: organization-defined time period] of assuming a contingency role or responsibility;
2. When required by system changes; and
3. [Assignment: organization-defined frequency] thereafter; and
b. Review and update contingency training content [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Contingency training provided by organizations is linked to the assigned roles and responsibilities of organizational personnel to ensure that the appropriate content and level of detail is included in such training. For example, some individuals may only need to know when and where to report for duty during contingency operations and if normal duties are affected; system administrators may require additional training on how to establish systems at alternate processing and storage sites; and organizational officials may receive more specific training on how to conduct mission-essential functions in designated off-site locations and how to establish communications with other governmental entities for purposes of coordination on contingency-related activities. Training for contingency roles or responsibilities reflects the specific continuity requirements in the contingency plan. Events that may precipitate an update to contingency training content include, but are not limited to, contingency plan testing or an actual contingency (lessons learned), assessment or audit findings, security incidents or breaches, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. At the discretion of the organization, participation in a contingency plan test or exercise, including lessons learned sessions subsequent to the test or exercise, may satisfy contingency plan training requirements.' WHERE [Requirement_Id] = 37671
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Incorporate simulated events into contingency training to facilitate effective response by personnel in crisis situations.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Simulated Events
Incorporate simulated events into contingency training to facilitate effective response by personnel in crisis situations.
Discussion:The use of simulated events creates an environment for personnel to experience actual threat events, including cyber-attacks that disable websites, ransomware attacks that encrypt organizational data on servers, hurricanes that damage or destroy organizational facilities, or hardware or software failures.' WHERE [Requirement_Id] = 37672
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Test the ISCP for the system annually using the following tests to determine the effectiveness of the plan and the readiness to execute the plan:
[a: Implementation Statement]
+ i) Full exercise consisting of a test of all instructions within an ISCP every two years;
[a.i: Implementation Statement]
+ ii) Tabletops can be conducted in lieu of the full exercise in the off years;
[a.ii: Implementation Statement]
+b. Review the ISCP test results; and
[b: Implementation Statement]
+c. Initiate corrective actions, if needed.
[c: Implementation Statement]
+
+Related Controls: AT-3, CP-2, CP-3, CP-8, CP-9, IR-3, IR-4, PL-2, PM-14, SR-2
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Contingency Plan Testing
a. Test the contingency plan for the system [Assignment: organization-defined frequency] using the following tests to determine the effectiveness of the plan and the readiness to execute the plan: [Assignment: organization-defined tests].
b. Review the contingency plan test results; and
c. Initiate corrective actions, if needed.
Discussion:Methods for testing contingency plans to determine the effectiveness of the plans and identify potential weaknesses include checklists, walk-through and tabletop exercises, simulations (parallel or full interrupt), and comprehensive exercises. Organizations conduct testing based on the requirements in contingency plans and include a determination of the effects on organizational operations, assets, and individuals due to contingency operations. Organizations have flexibility and discretion in the breadth, depth, and timelines of corrective actions.' WHERE [Requirement_Id] = 37673
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Coordinate ISCP testing with organizational elements responsible for related plans.
[Implementation Statement]
+
+Related Controls: IR-8, PM-8
+
+
+', [Supplemental_Info]=N' Coordinate with Related Plans
Coordinate contingency plan testing with organizational elements responsible for related plans.
Discussion:Plans related to contingency planning for organizational systems include Business Continuity Plans, Disaster Recovery Plans, Continuity of Operations Plans, Crisis Communications Plans, Critical Infrastructure Plans, Cyber Incident Response Plans, and Occupant Emergency Plans. Coordination of contingency plan testing does not require organizations to create organizational elements to handle related plans or to align such elements with specific plans. However, it does require that if such organizational elements are responsible for related plans, organizations coordinate with those elements.' WHERE [Requirement_Id] = 37674
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Test the ISCP at the alternate processing site:
[Implementation Statement]
+
+(1) To familiarize contingency personnel with the facility and available resources; and
[1: Implementation Statement]
+(2) To evaluate the capabilities of the alternate processing site to support contingency operations.
[2: Implementation Statement]
+
+OT Systems Only:
+Not all systems will have alternate processing sites as discussed in CP-7.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-7
+
+NIST 800-82 Rev 3:
+OT Discussion: Not all systems will have alternate processing sites, as discussed in CP-7.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Contingency Plan Testing | Alternate Processing Site
Test the contingency plan at the alternate processing site:
(a) To familiarize contingency personnel with the facility and available resources; and
(b) To evaluate the capabilities of the alternate processing site to support contingency operations.
Discussion:Conditions at the alternate processing site may be significantly different than the conditions at the primary site. Having the opportunity to visit the alternate site and experience the actual capabilities available at the site can provide valuable information on potential vulnerabilities that could affect essential organizational mission and business functions. The on-site visit can also provide an opportunity to refine the contingency plan to address the vulnerabilities discovered during testing.' WHERE [Requirement_Id] = 37675
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish an alternate storage site, maximizing geographical separation within the region, from the primary site. including necessary agreements to permit the storage and retrieval of system backup information; and
[a: Implementation Statement]
+b. Ensure that the alternate storage site provides controls equivalent to that of the primary site.
[b: Implementation Statement]
+c. Monthly, create (and transmit to the alternate storage site) full backups and maintain those backups for at least six months, and do not overwrite, purge, or delete the backups within the six-month period. The backups must be maintained and logically isolated from each other, from differential backups, and from primary and alternate data centers.
[c: Implementation Statement]
+ c.1). Daily, create (and transmit to the alternate storage site) a differential backup and maintain those backups for 30 days.
[c.1: Implementation Statement]
+d. All backups shall be encrypted using cryptographic modules validated under the Cryptographic Modula Validation Program (CMVP), configured in "FIPS Mode," and using tion algorithms approved by the AO.
[d: Implementation Statement]
+
+Related Controls: CP-2, CP-7, CP-8, CP-9, CP-10, MP-4, MP-5, PE-3, SI-13
+
+e. Security Controls Enhancement(s):
[e: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Alternate Storage Site
a. Establish an alternate storage site, including necessary agreements to permit the storage and retrieval of system backup information; and
b. Ensure that the alternate storage site provides controls equivalent to that of the primary site.
Discussion:Alternate storage sites are geographically distinct from primary storage sites and maintain duplicate copies of information and data if the primary storage site is not available. Similarly, alternate processing sites provide processing capability if the primary processing site is not available. Geographically distributed architectures that support contingency requirements may be considered alternate storage sites. Items covered by alternate storage site agreements include environmental conditions at the alternate sites, access rules for systems and facilities, physical and environmental protection requirements, and coordination of delivery and retrieval of backup media. Alternate storage sites reflect the requirements in contingency plans so that organizations can maintain essential mission and business functions despite compromise, failure, or disruption in organizational systems.' WHERE [Requirement_Id] = 37676
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Identify an alternate storage site that is sufficiently separated from the primary storage site to reduce susceptibility to the same threats.
[Implementation Statement]
+
+Related Controls: RA-3
+
+
+', [Supplemental_Info]=N' Separation from Primary Site
Identify an alternate storage site that is sufficiently separated from the primary storage site to reduce susceptibility to the same threats.
Discussion:Threats that affect alternate storage sites are defined in organizational risk assessments and include natural disasters, structural failures, hostile attacks, and errors of omission or commission. Organizations determine what is considered a sufficient degree of separation between primary and alternate storage sites based on the types of threats that are of concern. For threats such as hostile attacks, the degree of separation between sites is less relevant.' WHERE [Requirement_Id] = 37677
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Configure the alternate storage site to facilitate recovery operations in accordance with recovery time and recovery point objectives.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Recovery Time and Recovery Point Objectives
Configure the alternate storage site to facilitate recovery operations in accordance with recovery time and recovery point objectives.
Discussion:Organizations establish recovery time and recovery point objectives as part of contingency planning. Configuration of the alternate storage site includes physical facilities and the systems supporting recovery operations that ensure accessibility and correct execution.' WHERE [Requirement_Id] = 37678
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Identify potential accessibility problems to the alternate storage site in the event of an area-wide disruption or disaster and outline explicit mitigation actions.
[Implementation Statement]
+
+Related Controls: RA-3
+
+
+', [Supplemental_Info]=N' Accessibility
Identify potential accessibility problems to the alternate storage site in the event of an area-wide disruption or disaster and outline explicit mitigation actions.
Discussion:Area-wide disruptions refer to those types of disruptions that are broad in geographic scope with such determinations made by organizations based on organizational assessments of risk. Explicit mitigation actions include duplicating backup information at other alternate storage sites if access problems occur at originally designated alternate sites or planning for physical access to retrieve backup information if electronic accessibility to the alternate site is disrupted.' WHERE [Requirement_Id] = 37679
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish an alternate processing site, including necessary agreements to permit the transfer and resumption of system operations for essential mission and business functions within the time period specified in the CP consistent with recovery time and recovery point objectives specified in the BIA when the primary processing capabilities are unavailable. Minimally, recovery time shall meet the following standards;
[a: Implementation Statement]
+ i) High: Instantaneous to one minute;
[a.i: Implementation Statement]
+ ii) Moderate: Not to exceed 24 hours;
[a.ii: Implementation Statement]
+ iii) Low: Not to exceed two weeks (applications with no redundant capability at one of the primary data centers)
[a.iii: Implementation Statement]
+b. Make available at the alternate processing site, the equipment, and supplies (including hardware) required to transfer and resume operations or put contracts in place to support delivery to the site within the organization-defined time period for transfer and resumption; and
[b: Implementation Statement]
+c. Provide controls at the alternate processing site that are equivalent to those at the primary site.
[c: Implementation Statement]
+
+OT Systems Only:
+Many site-wide supervisory or optimization servers (i.e., Level 3 and above of the Purdue model ) can be supported from an alternative processing site. It is likely not feasible for control systems or field devices, such as sensors or final elements (i.e., Level 1 and 0 of the Purdue model), to be made available from an alternative processing site.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-2, CP-6, CP-8, CP-9, CP-10, MA-6, PE-3, PE-11, PE-12, PE-17, SI-13
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Many site-wide supervisory or optimization servers (i.e., Level 3 and above of the Purdue model) can be supported from an alternate processing site. It is likely not feasible for control systems or field devices, such as sensors or final elements (i.e., Level 1 and 0 of the Purdue model), to be made available from an alternate processing site.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Alternate Processing Site
a. Establish an alternate processing site, including necessary agreements to permit the transfer and resumption of [Assignment: organization-defined system operations] for essential mission and business functions within [Assignment: organization-defined time period consistent with recovery time and recovery point objectives] when the primary processing capabilities are unavailable;
b. Make available at the alternate processing site, the equipment and supplies required to transfer and resume operations or put contracts in place to support delivery to the site within the organization-defined time period for transfer and resumption; and
c. Provide controls at the alternate processing site that are equivalent to those at the primary site.
Discussion:Alternate processing sites are geographically distinct from primary processing sites and provide processing capability if the primary processing site is not available. The alternate processing capability may be addressed using a physical processing site or other alternatives, such as failover to a cloud-based service provider or other internally or externally provided processing service. Geographically distributed architectures that support contingency requirements may also be considered alternate processing sites. Controls that are covered by alternate processing site agreements include the environmental conditions at alternate sites, access rules, physical and environmental protection requirements, and the coordination for the transfer and assignment of personnel. Requirements are allocated to alternate processing sites that reflect the requirements in contingency plans to maintain essential mission and business functions despite disruption, compromise, or failure in organizational systems.' WHERE [Requirement_Id] = 37680
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Identify an alternate processing site that is sufficiently separated from the primary processing site to reduce susceptibility to the same threats.
[Implementation Statement]
+
+Related Controls: RA-3
+
+
+', [Supplemental_Info]=N' Separation from Primary Site
Identify an alternate processing site that is sufficiently separated from the primary processing site to reduce susceptibility to the same threats.
Discussion:Threats that affect alternate processing sites are defined in organizational assessments of risk and include natural disasters, structural failures, hostile attacks, and errors of omission or commission. Organizations determine what is considered a sufficient degree of separation between primary and alternate processing sites based on the types of threats that are of concern. For threats such as hostile attacks, the degree of separation between sites is less relevant.' WHERE [Requirement_Id] = 37681
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Identify potential accessibility problems to alternate processing sites in the event of an area-wide disruption or disaster and outlines explicit mitigation actions.
[Implementation Statement]
+
+Related Controls: RA-3
+
+
+', [Supplemental_Info]=N' Accessibility
Identify potential accessibility problems to alternate processing sites in the event of an area-wide disruption or disaster and outlines explicit mitigation actions.
Discussion:Area-wide disruptions refer to those types of disruptions that are broad in geographic scope with such determinations made by organizations based on organizational assessments of risk.' WHERE [Requirement_Id] = 37682
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Develop alternate processing site agreements that contain priority-of-service provisions in accordance with availability requirements (including recovery time objectives).
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Priority of Service
Develop alternate processing site agreements that contain priority-of-service provisions in accordance with availability requirements (including recovery time objectives).
Discussion:Priority of service agreements refer to negotiated agreements with service providers that ensure that organizations receive priority treatment consistent with their availability requirements and the availability of information resources for logical alternate processing and/or at the physical alternate processing site. Organizations establish recovery time objectives as part of contingency planning.' WHERE [Requirement_Id] = 37683
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prepare the alternate processing site so that the site can serve as the operational site supporting essential mission and business functions.
[Implementation Statement]
+
+Related Controls: CM-2, CM-6, CP-4
+
+
+', [Supplemental_Info]=N' Preparation for Use
Prepare the alternate processing site so that the site can serve as the operational site supporting essential mission and business functions.
Discussion:Site preparation includes establishing configuration settings for systems at the alternate processing site consistent with the requirements for such settings at the primary site and ensuring that essential supplies and logistical considerations are in place.' WHERE [Requirement_Id] = 37684
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish alternate telecommunications services, including necessary agreements to permit the resumption of system operations for essential mission and business functions within the time period specified in the CP consistent with the BIA when the primary telecommunications capabilities are unavailable at either the primary or alternate processing or storage sites.
[a: Implementation Statement]
+
+OT Systems Only:
+Quality of service factors for OT include latency and throughput.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-2, CP-6, CP-7, SC-7
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Quality of service factors for OT include latency and throughput.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Telecommunications Services
Establish alternate telecommunications services, including necessary agreements to permit the resumption of [Assignment: organization-defined system operations] for essential mission and business functions within [Assignment: organization-defined time period] when the primary telecommunications capabilities are unavailable at either the primary or alternate processing or storage sites.
Discussion:Telecommunications services (for data and voice) for primary and alternate processing and storage sites are in scope for CP-8. Alternate telecommunications services reflect the continuity requirements in contingency plans to maintain essential mission and business functions despite the loss of primary telecommunications services. Organizations may specify different time periods for primary or alternate sites. Alternate telecommunications services include additional organizational or commercial ground-based circuits or lines, network-based approaches to telecommunications, or the use of satellites. Organizations consider factors such as availability, quality of service, and access when entering into alternate telecommunications agreements.' WHERE [Requirement_Id] = 37685
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Develop primary and alternate telecommunications service agreements that contain priority-of-service provisions in accordance with availability requirements (including recovery time objectives); and
[1: Implementation Statement]
+(2) Request Telecommunications Service Priority for all telecommunications services used for national security emergency preparedness if the primary and/or alternate telecommunications services are provided by a common carrier.
[2: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Testing for reliability and integrity increases confidence that the system can be restored after an incident and minimizes the impact associated with downtime and outages. The ability to test backups is often dependent on the resources needed to appropriately represent the environment, such as the availability of spare devices and testing equipment. Testing backup and restoration on OT is often limited to systems with redundancy or spare equipment. In certain cases, sampling will be limited to those redundant systems. Compensating controls may include alternative methods for testing backups, such as hash or checksum validations.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Telecommunications Services | Priority of Service Provisions
(a) Develop primary and alternate telecommunications service agreements that contain priority-of-service provisions in accordance with availability requirements (including recovery time objectives); and
(b) Request Telecommunications Service Priority for all telecommunications services used for national security emergency preparedness if the primary and/or alternate telecommunications services are provided by a common carrier.
Discussion:Organizations consider the potential mission or business impact in situations where telecommunications service providers are servicing other organizations with similar priority of service provisions. Telecommunications Service Priority (TSP) is a Federal Communications Commission (FCC) program that directs telecommunications service providers (e.g., wireline and wireless phone companies) to give preferential treatment to users enrolled in the program when they need to add new lines or have their lines restored following a disruption of service, regardless of the cause. The FCC sets the rules and policies for the TSP program, and the Department of Homeland Security manages the TSP program. The TSP program is always in effect and not contingent on a major disaster or attack taking place. Federal sponsorship is required to enroll in the TSP program.' WHERE [Requirement_Id] = 37686
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Obtain alternate telecommunications services to reduce the likelihood of sharing a single point of failure with primary telecommunications services.
[Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Testing for reliability and integrity increases confidence that the system can be restored after an incident and minimizes the impact associated with downtime and outages. The ability to test backups is often dependent on the resources needed to appropriately represent the environment, such as the availability of spare devices and testing equipment. Testing backup and restoration on OT is often limited to systems with redundancy or spare equipment. In certain cases, sampling will be limited to those redundant systems. Compensating controls may include alternative methods for testing backups, such as hash or checksum validations.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Telecommunications Services | Single Points of Failure
Obtain alternate telecommunications services to reduce the likelihood of sharing a single point of failure with primary telecommunications services.
Discussion:In certain circumstances, telecommunications service providers or services may share the same physical lines, which increases the vulnerability of a single failure point. It is important to have provider transparency for the actual physical transmission capability for telecommunication services.' WHERE [Requirement_Id] = 37687
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Obtain alternate telecommunications services from providers that are separated from primary service providers to reduce susceptibility to the same threats.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Separation of Primary and Alternate Providers
Obtain alternate telecommunications services from providers that are separated from primary service providers to reduce susceptibility to the same threats.
Discussion:Threats that affect telecommunications services are defined in organizational assessments of risk and include natural disasters, structural failures, cyber or physical attacks, and errors of omission or commission. Organizations can reduce common susceptibilities by minimizing shared infrastructure among telecommunications service providers and achieving sufficient geographic separation between services. Organizations may consider using a single service provider in situations where the service provider can provide alternate telecommunications services that meet the separation needs addressed in the risk assessment.' WHERE [Requirement_Id] = 37688
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Require primary and alternate telecommunications service providers to have ISCPs;
[1: Implementation Statement]
+(2) Review provider ISCPS to ensure that the plans meet organizational contingency requirements; and
[2: Implementation Statement]
+(3) Obtain evidence of contingency testing and training by providers annually.
[3: Implementation Statement]
+
+Related Controls: CP-3, CP-4
+
+
+', [Supplemental_Info]=N' Provider Contingency Plan
(a) Require primary and alternate telecommunications service providers to have contingency plans;
(b) Review provider contingency plans to ensure that the plans meet organizational contingency requirements; and
(c) Obtain evidence of contingency testing and training by providers [Assignment: organization-defined frequency].
Discussion:Reviews of provider contingency plans consider the proprietary nature of such plans. In some situations, a summary of provider contingency plans may be sufficient evidence for organizations to satisfy the review requirement. Telecommunications service providers may also participate in ongoing disaster recovery exercises in coordination with the Department of Homeland Security and state and local governments. Organizations may use these types of activities to satisfy evidentiary requirements related to service provider contingency plan reviews, testing, and training.' WHERE [Requirement_Id] = 37689
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Conduct backups of user-level information contained in systems and system components based on the RPO, and leveraging a differential backup approach;
[a: Implementation Statement]
+b. Conduct backups of system-level information contained in systems and system components based on the RPO, and leveraging a differential backup approach;
[b: Implementation Statement]
+c. Conduct full backups of user-level information, system-level information, and system documentation, including security- and privacy-related documentation, at least weekly; and
[c: Implementation Statement]
+d. Protect the confidentiality, integrity, and availability of backup information.
[d: Implementation Statement]
+
+Related Controls: CP-2, CP-6, CP-10, MP-4, MP-5, SC-8, SC-12, SC-13, SI-4, SI-13
+
+e. Security Controls Enhancement(s):
[e: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Backup
a. Conduct backups of user-level information contained in [Assignment: organization-defined system components] [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];
b. Conduct backups of system-level information contained in the system [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];
c. Conduct backups of system documentation, including security- and privacy-related documentation [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives]; and
d. Protect the confidentiality, integrity, and availability of backup information.
Discussion:System-level information includes system state information, operating system software, middleware, application software, and licenses. User-level information includes information other than system-level information. Mechanisms employed to protect the integrity of system backups include digital signatures and cryptographic hashes. Protection of system backup information while in transit is addressed by MP-5 and SC-8. System backups reflect the requirements in contingency plans as well as other organizational requirements for backing up information. Organizations may be subject to laws, executive orders, directives, regulations, or policies with requirements regarding specific categories of information (e.g., personal health information). Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.' WHERE [Requirement_Id] = 37690
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Test backup information at least monthly to verify media reliability and information integrity.
[Implementation Statement]
+
+OT Systems Only:
+Testing for reliability and integrity increases confidence that the system can be restored after an incident, and minimizes the impact associated with downtime and outages. The ability to test backups is often dependent on resources, such as the availability of spare devices and testing equipment, needed to appropriately represent the environment. Testing backup and restoration on OT is often limited to systems with redundancy or spare equipment; in certain cases, sampling will be limited to those redundant systems. Compensating controls may include alternative methods for testing backups such as hash or checksum validations.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-4
+
+
+', [Supplemental_Info]=N' Testing for Reliability and Integrity
Test backup information [Assignment: organization-defined frequency] to verify media reliability and information integrity.
Discussion:Organizations need assurance that backup information can be reliably retrieved. Reliability pertains to the systems and system components where the backup information is stored, the operations used to retrieve the information, and the integrity of the information being retrieved. Independent and specialized tests can be used for each of the aspects of reliability. For example, decrypting and transporting (or transmitting) a random sample of backup files from the alternate storage or backup site and comparing the information to the same information at the primary processing site can provide such assurance.' WHERE [Requirement_Id] = 37691
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Use a sample of backup information in the restoration of selected system functions as part of ISCP testing, and at least monthly.
[Implementation Statement]
+
+OT Systems Only:
+Testing for reliability and integrity increases confidence that the system can be restored after an incident, and minimizes the impact associated with downtime and outages. The ability to test backups is often dependent on resources, such as the availability of spare devices and testing equipment, needed to appropriately represent the environment. Testing backup and restoration on OT is often limited to systems with redundancy or spare equipment; in certain cases, sampling will be limited to those redundant systems. Compensating controls may include alternative methods for testing backups such as hash or checksum validations.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-4
+
+
+', [Supplemental_Info]=N' Test Restoration Using Sampling
Use a sample of backup information in the restoration of selected system functions as part of contingency plan testing.
Discussion:Organizations need assurance that system functions can be restored correctly and can support established organizational missions. To ensure that the selected system functions are thoroughly exercised during contingency plan testing, a sample of backup information is retrieved to determine whether the functions are operating as intended. Organizations can determine the sample size for the functions and backup information based on the level of assurance needed.' WHERE [Requirement_Id] = 37692
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Store backup copies of critical system software and other security-related information in a separate facility or in a fire rated container that is not collocated with the operational system.
[Implementation Statement]
+
+Related Controls: CM-2, CM-6, CM-8
+
+
+', [Supplemental_Info]=N' Separate Storage for Critical Information
Store backup copies of [Assignment: organization-defined critical system software and other security-related information] in a separate facility or in a fire rated container that is not collocated with the operational system.
Discussion:Separate storage for critical information applies to all critical information regardless of the type of backup storage media. Critical system software includes operating systems, middleware, cryptographic key management systems, and intrusion detection systems. Security-related information includes inventories of system hardware, software, and firmware components. Alternate storage sites, including geographically distributed architectures, serve as separate storage facilities for organizations. Organizations may provide separate storage by implementing automated backup processes at alternative storage sites (e.g., data centers). The General Services Administration (GSA) establishes standards and specifications for security and fire rated containers.' WHERE [Requirement_Id] = 37693
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Transfer system backup information to the alternate storage site based on standards established in CP-6, “Alternate Storage Site”. System backup information can be transferred to alternate storage sites either electronically or by the physical shipment of storage media.
[Implementation Statement]
+
+Related Controls: CP-6, CP-7, MP-3, MP-4, MP-5
+
+
+', [Supplemental_Info]=N' Transfer to Alternate Storage Site
Transfer system backup information to the alternate storage site [Assignment: organization-defined time period and transfer rate consistent with the recovery time and recovery point objectives].
Discussion:System backup information can be transferred to alternate storage sites either electronically or by the physical shipment of storage media.' WHERE [Requirement_Id] = 37694
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement cryptographic mechanisms to prevent unauthorized disclosure and modification of system backup information in storage at both primary and alternate locations.
[Implementation Statement]
+
+Related Controls: SC-12, SC-13, SC-28
+
+
+', [Supplemental_Info]=N' Cryptographic Protection
Implement cryptographic mechanisms to prevent unauthorized disclosure and modification of [Assignment: organization-defined backup information].
Discussion:The selection of cryptographic mechanisms is based on the need to protect the confidentiality and integrity of backup information. The strength of mechanisms selected is commensurate with the security category or classification of the information. Cryptographic protection applies to system backup information in storage at both primary and alternate locations. Organizations that implement cryptographic mechanisms to protect information at rest also consider cryptographic key management solutions.' WHERE [Requirement_Id] = 37695
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: AC-1, PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.1. Identification and authentication policies and procedures designed to prevent unauthorized access to Critical Cyber Systems that include— (p.6)
[C.1: Implementation Statement]
+', [Supplemental_Info]=N'Identification and Authentication Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] identification and authentication policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the identification and authentication policy and the associated identification and authentication
controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the identification and authentication policy and procedures; and
c. Review and update the current identification and authentication:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Identification and authentication policy and procedures address the controls in the IA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of identification and authentication policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to identification and authentication policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37696
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require users to re-authenticate when roles, authenticators, or credentials change as a result of a security incident, when security categories of systems change, and after 15 minutes of a fixed time period (e.g., if a session has been idle).
[Implementation Statement]
+
+Related Controls: AC-3, AC-11, IA-2, IA-3, IA-4, IA-8
+
+
+', [Supplemental_Info]=N'Re-authentication
Require users to re-authenticate when [Assignment: organization-defined circumstances or situations requiring re-authentication].
Discussion:In addition to the re-authentication requirements associated with device locks, organizations may require re-authentication of individuals in certain situations, including when roles, authenticators or credentials change, when security categories of systems change, when the execution of privileged functions occurs, after a fixed time period, or periodically.' WHERE [Requirement_Id] = 37697
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Identity-proof users that require accounts for logical access to systems based on appropriate identity assurance level requirements as specified in applicable standards and guidelines;
[a: Implementation Statement]
+b. Resolve user identities to a unique individual; and
[b: Implementation Statement]
+c. Collect, validate, and verify identity evidence. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+OT Systems Only:
+Identity proofing is likely performed by different departments within the organization. It is encouraged to leverage existing organization systems (i.e., HR or IT processes) to perform this control. Security Controls Enhancement(s):
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-5, IA-1, IA-2, IA-3, IA-4, IA-5, IA-6, IA-8
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Identity proofing is likely performed by different departments within the organization. Existing organizational systems (e.g., HR or IT processes) should be leveraged to perform this control.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identity Proofing
a. Identity proof users that require accounts for logical access to systems based on appropriate identity assurance level requirements as specified in applicable standards and guidelines;
b. Resolve user identities to a unique individual; and
c. Collect, validate, and verify identity evidence.
Discussion:Identity proofing is the process of collecting, validating, and verifying a user’s identity information for the purposes of establishing credentials for accessing a system. Identity proofing is intended to mitigate threats to the registration of users and the establishment of their accounts. Standards and guidelines specifying identity assurance levels for identity proofing include [SP 800-63-3] and [SP 800-63A]. Organizations may be subject to laws, executive orders, directives, regulations, or policies that address the collection of identity evidence. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.' WHERE [Requirement_Id] = 37698
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require that the registration process to receive an account for logical access includes supervisor or sponsor authorization.
[Implementation Statement]
+
+OT Systems Only:
+Maintenance, Engineering, or third-party organizations may require OT access in order to support operations. The organization should determine the AO for proving identity prior to allowing access to the OT environment. Consider obtaining supervisor or sponsor authorization, where the sponsor may be someone within operations.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+Control Enhancement: (1) OT Discussion: Maintenance, engineering, or third-party organizations may require OT access in order to support operations. The organization should determine the AO for proving identity prior to allowing access to the OT environment. Consider obtaining supervisor or sponsor authorization, where the sponsor may be someone within operations.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identity Proofing | Supervisor Authorization
Require that the registration process to receive an account for logical access includes supervisor or sponsor authorization.
Discussion:Including supervisor or sponsor authorization as part of the registration process provides an additional level of scrutiny to ensure that the user’s management chain is aware of the account, the account is essential to carry out organizational missions and functions, and the user’s privileges are appropriate for the anticipated responsibilities and authorities within the organization.' WHERE [Requirement_Id] = 37699
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require evidence of individual identification be presented to the RA.
[Implementation Statement]
+
+OT Systems Only:
+If the organization already performs these controls, it is recommended to leverage existing organizational processes. For example, Human Resources may provide a system for tracking identity evidence. OT does not need to develop an independent system for achieving this control. Rather, it is advised to leverage the existing processes developed by other departments within the organization.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: If the organization already performs these controls, existing organizational processes should be leveraged. For example, HR may provide a system for tracking identity evidence. OT does not need to develop an independent system for achieving this control.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identity Proofing | Identity Evidence
Require evidence of individual identification be presented to the registration authority.
Discussion:Identity evidence, such as documentary evidence or a combination of documents and biometrics, reduces the likelihood of individuals using fraudulent identification to establish an identity or at least increases the work factor of potential adversaries. The forms of acceptable evidence are consistent with the risks to the systems, roles, and privileges associated with the user’s account.' WHERE [Requirement_Id] = 37700
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require that the presented identity evidence be validated and verified in accordance with acceptable identity source documents defined in Homeland Security Presidential Directive (HSPD) 12.
[Implementation Statement]
+
+OT Systems Only:
+If the organization already performs these controls, it is recommended to leverage existing organizational processes. For example, Human Resources may provide a system for tracking identity evidence. OT does not need to develop an independent system for achieving this control. Rather, it is advised to leverage the existing processes developed by other departments within the organization.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: If the organization already performs these controls, existing organizational processes should be leveraged. For example, HR may provide a system for tracking identity evidence. OT does not need to develop an independent system for achieving this control.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identity Proofing | Identity Evidence Validation and Verification
Require that the presented identity evidence be validated and verified through [Assignment: organizational defined methods of validation and verification].
Discussion:Validation and verification of identity evidence increases the assurance that accounts and identifiers are being established for the correct user and authenticators are being bound to that user. Validation refers to the process of confirming that the evidence is genuine and authentic, and the data contained in the evidence is correct, current, and related to an individual. Verification confirms and establishes a linkage between the claimed identity and the actual existence of the user presenting the evidence. Acceptable methods for validating and verifying identity evidence are consistent with the risks to the systems, roles, and privileges associated with the users account.' WHERE [Requirement_Id] = 37701
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require that the validation and verification of identity evidence be conducted in person before a designated RA.
[Implementation Statement]
+
+OT Systems Only:
+If the organization already performs these controls, it is recommended to leverage existing organizational processes. For example, Human Resources may provide a system for tracking identity evidence. OT does not need to develop an independent system for achieving this control. Rather, it is advised to leverage the existing processes developed by other departments within the organization.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: If the organization already performs these controls, existing organizational processes should be leveraged. For example, HR may provide a system for tracking identity evidence. OT does not need to develop an independent system for achieving this control.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identity Proofing | In-person Validation and Verification
Require that the validation and verification of identity evidence be conducted in person before a designated registration authority.
Discussion:In-person proofing reduces the likelihood of fraudulent credentials being issued because it requires the physical presence of individuals, the presentation of physical identity documents, and actual face-to-face interactions with designated registration authorities.' WHERE [Requirement_Id] = 37702
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require that a
[Selection: registration code; notice of proofing] be delivered through an out-of-band channel to verify the users address (physical or digital) of record.
[Implementation Statement]
+
+OT Systems Only:
+If the organization already performs these controls, it is recommended to leverage existing organizational processes. For example, Human Resources may provide a system for tracking identity evidence. OT does not need to develop an independent system for achieving this control. Rather, it is advised to leverage the existing processes developed by other departments within the organization.
[OT Systems Only: Implementation Statement]
+
+Related Controls: IA-12
+
+NIST 800-82 Rev 3:
+OT Discussion: If the organization already performs these controls, existing organizational processes should be leveraged. For example, HR may provide a system for tracking identity evidence. OT does not need to develop an independent system for achieving this control.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identity Proofing | Address Confirmation
Require that a [Selection: registration code; notice of proofing] be delivered through an out-of-band channel to verify the users address (physical or digital) of record.
Discussion:To make it more difficult for adversaries to pose as legitimate users during the identity proofing process, organizations can use out-of-band methods to ensure that the individual associated with an address of record is the same individual that participated in the registration. Confirmation can take the form of a temporary enrollment code or a notice of proofing. The delivery address for these artifacts is obtained from records and not self-asserted by the user. The address can include a physical or digital address. A home address is an example of a physical address. Email addresses and telephone numbers are examples of digital addresses.' WHERE [Requirement_Id] = 37703
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Uniquely identify and authenticate users and associate that unique identification with processes acting on behalf of those users leveraging an authorized Identity and Access Management (IAM) solution.
[a: Implementation Statement]
+Related Controls: AC-2, AC-3, AC-4, AC-14, AC-17, AC-18, AU-1, AU-6, IA-4, IA-5, IA-8, MA-4, MA-5, PE-2, PL-4, SA-4, SA-8
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: When shared accounts are required, compensating controls include providing increased physical security, personnel security, and auditing measures. For certain OT, the capability for immediate operator interaction is critical. Local emergency actions for OT are not hampered by identification or authentication requirements. Access to these systems may be restricted by appropriate physical controls.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.2. Multi-factor authentication, or other logical and physical security controls that supplement password authentication to provide risk mitigation commensurate to multi-factor authentication. If an Owner/Operator does not apply multi-factor authentication for access to Operational Technology components or assets, the Owner/Operator must specify what compensating controls are used to manage access. (p.7)
[C.2: Implementation Statement]
+', [Supplemental_Info]=N'Identification and Authentication (Organizational Users)
Uniquely identify and authenticate organizational users and associate that unique identification with processes acting on behalf of those users.
Discussion:Organizations can satisfy the identification and authentication requirements by complying with the requirements in [HSPD 12]. Organizational users include employees or individuals who organizations consider to have an equivalent status to employees (e.g., contractors and guest researchers). Unique identification and authentication of users applies to all accesses other than those that are explicitly identified in AC-14 and that occur through the authorized use of group authenticators without individual authentication. Since processes execute on behalf of groups and roles, organizations may require unique identification of individuals in group accounts or for detailed accountability of individual activity.
Organizations employ passwords, physical authenticators, or biometrics to authenticate user identities or, in the case of multi-factor authentication, some combination thereof. Access to organizational systems is defined as either local access or network access. Local access is any access to organizational systems by users or processes acting on behalf of users, where access is obtained through direct connections without the use of networks. Network access is access to organizational systems by users (or processes acting on behalf of users) where access is obtained through network connections (i.e., nonlocal accesses). Remote access is a type of network access that involves communication through external networks. Internal networks include local area networks and wide area networks.
The use of encrypted virtual private networks for network connections between organization-controlled endpoints and non-organization-controlled endpoints may be treated as internal networks with respect to protecting the confidentiality and integrity of information traversing the network. Identification and authentication requirements for non-organizational users are described in IA-8.
' WHERE [Requirement_Id] = 37704
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement multi-factor authentication for access to privileged accounts.
[Implementation Statement]
+
+OT Systems Only:
+As a compensating control, physical access restrictions may sufficiently represent one authentication factor, provided the system is not remotely accessible.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-5, AC-6
+
+NIST 800-82 Rev 3:
+OT Discussion: As a compensating control, physical access restrictions may sufficiently represent one authentication factor, provided that the system is not remotely accessible.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.2. Multi-factor authentication, or other logical and physical security controls that supplement password authentication to provide risk mitigation commensurate to multi-factor authentication. If an Owner/Operator does not apply multi-factor authentication for access to Operational Technology components or assets, the Owner/Operator must specify what compensating controls are used to manage access. (p.7)
[C.2: Implementation Statement]
+', [Supplemental_Info]=N'Identification and Authentication (organizational Users) | Multi-factor Authentication to Privileged Accounts
Implement multi-factor authentication for access to privileged accounts.
Discussion:Multi-factor authentication requires the use of two or more different factors to achieve authentication. The authentication factors are defined as follows: something you know (e.g., a personal identification number [PIN]), something you have (e.g., a physical authenticator such as a cryptographic private key), or something you are (e.g., a biometric). Multi-factor authentication solutions that feature physical authenticators include hardware authenticators that provide time-based or challenge-response outputs and smart cards such as the U.S. Government Personal Identity Verification (PIV) card or the Department of Defense (DoD) Common Access Card (CAC). In addition to authenticating users at the system level (i.e., at logon), organizations may employ authentication mechanisms at the application level, at their discretion, to provide increased security. Regardless of the type of access (i.e., local, network, remote), privileged accounts are authenticated using multi-factor options appropriate for the level of risk. Organizations can add additional security measures, such as additional or more rigorous authentication mechanisms, for specific types of access.' WHERE [Requirement_Id] = 37705
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Accept and electronically verify Personal Identity Verification-compliant credentials.
[Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The acceptance of PIV credentials is only required for federal organizations, as defined by OMB Memorandum M-19-17
[OMB-M1917]. Nonfederal organizations should refer to IA-2 (1) (2) for guidance on multi-factor authentication credentials. Furthermore, many OT systems do not have the ability to accept PIV credentials and will require compensating controls.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identification and Authentication (organizational Users) | Acceptance of PIV Credentials
Accept and electronically verify Personal Identity Verification-compliant credentials.
Discussion:Acceptance of Personal Identity Verification (PIV)-compliant credentials applies to organizations implementing logical access control and physical access control systems. PIV-compliant credentials are those credentials issued by federal agencies that conform to FIPS Publication 201 and supporting guidance documents. The adequacy and reliability of PIV card issuers are authorized using [SP 800-79-2]. Acceptance of PIV-compliant credentials includes derived PIV credentials, the use of which is addressed in [SP 800-166]. The DOD Common Access Card (CAC) is an example of a PIV credential.' WHERE [Requirement_Id] = 37706
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement multi-factor authentication for access to non-privileged accounts.
[Implementation Statement]
+
+OT Systems Only:
+As a compensating control, physical access restrictions may sufficiently represent one authentication factor, provided the system is not remotely accessible.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-5
+
+NIST 800-82 Rev 3:
+OT Discussion: As a compensating control, physical access restrictions may sufficiently represent one authentication factor, provided that the system is not remotely accessible.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.2. Multi-factor authentication, or other logical and physical security controls that supplement password authentication to provide risk mitigation commensurate to multi-factor authentication. If an Owner/Operator does not apply multi-factor authentication for access to Operational Technology components or assets, the Owner/Operator must specify what compensating controls are used to manage access. (p.7)
[C.2: Implementation Statement]
+', [Supplemental_Info]=N'Identification and Authentication (organizational Users) | Multi-factor Authentication to Non-privileged Accounts
Implement multi-factor authentication for access to non-privileged accounts.
Discussion:Multi-factor authentication requires the use of two or more different factors to achieve authentication. The authentication factors are defined as follows: something you know (e.g., a personal identification number [PIN]), something you have (e.g., a physical authenticator such as a cryptographic private key), or something you are (e.g., a biometric). Multi-factor authentication solutions that feature physical authenticators include hardware authenticators that provide time-based or challenge-response outputs and smart cards such as the U.S. Government Personal Identity Verification card or the DoD Common Access Card. In addition to authenticating users at the system level, organizations may also employ authentication mechanisms at the application level, at their discretion, to provide increased information security. Regardless of the type of access (i.e., local, network, remote), non-privileged accounts are authenticated using multi-factor options appropriate for the level of risk. Organizations can provide additional security measures, such as additional or more rigorous authentication mechanisms, for specific types of access.' WHERE [Requirement_Id] = 37707
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Identifiers and authenticators shall not be shared within the WMATA Enterprise unless authorized by the AO/AODR. When shared identifiers or authenticators are in use, users shall be individually authenticated before access is granted to a shared account or resource.
[Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: For local access, physical access controls and logging may be used as an alternative to individual authentication on an OT system. For remote access, the remote access authentication mechanism will be used to identify, permit, and log individual access before permitting the use of shared accounts.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.2. Multi-factor authentication, or other logical and physical security controls that supplement password authentication to provide risk mitigation commensurate to multi-factor authentication. If an Owner/Operator does not apply multi-factor authentication for access to Operational Technology components or assets, the Owner/Operator must specify what compensating controls are used to manage access. (p.7)
[C.2: Implementation Statement]
+
+C.4. Enforcement of standards that limit the availability and use of shared accounts to those that are critical for operations, and then only if absolutely necessary. When the Owner/Operator uses shared accounts for operational purposes, the policies and procedures must ensure— (p.7)
[C.4: Implementation Statement]
+', [Supplemental_Info]=N'Identification and Authentication (organizational Users) | Individual Authentication with Group Authentication
When shared accounts or authenticators are employed, require users to be individually authenticated before granting access to the shared accounts or resources.
Discussion:Individual authentication prior to shared group authentication mitigates the risk of using group accounts or authenticators.' WHERE [Requirement_Id] = 37708
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement replay-resistant authentication mechanisms for access to privileged and non-privileged accounts.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Access to Accounts — Replay Resistant
Implement replay-resistant authentication mechanisms for access to [Selection (one or more): privileged accounts; non-privileged accounts].
Discussion:Authentication processes resist replay attacks if it is impractical to achieve successful authentications by replaying previous authentication messages. Replay-resistant techniques include protocols that use nonces or challenges such as time synchronous or cryptographic authenticators.' WHERE [Requirement_Id] = 37709
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Uniquely identify and authenticate all devices and systems that connect to or access WMATA networks and/or systems before establishing a local, remote, or network connection. All certificates employed on WMATA systems and/or devices shall be from a trusted source identified by DMCS and authorized by the AO.
[Implementation Statement]
+
+Related Controls: AC-17, AC-18, AC-19, AU-6, CA-3, CA-9, IA-4, IA-5, IA-11, IR-9, SI-4
+
+a. Security Controls Enhancement(s):
[a: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: OT devices may not inherently support device authentication. If devices are local to one another, physical security measures that prevent unauthorized communication between devices can be used as compensating controls. For remote communication, additional hardware may be required to meet authentication requirements.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding IA-3 to LOW baseline: Given the variety of OT devices and physical locations of OT devices, organizations may consider whether OT devices that may be vulnerable to tampering or spoofing require unique identification and authentication and for what types of connections.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Device Identification and Authentication
Uniquely identify and authenticate [Assignment: organization-defined devices and/or types of devices] before establishing a [Selection (one or more): local; remote; network] connection.
Discussion:Devices that require unique device-to-device identification and authentication are defined by type, device, or a combination of type and device. Organization-defined device types include devices that are not owned by the organization. Systems use shared known information (e.g., Media Access Control [MAC], Transmission Control Protocol/Internet Protocol [TCP/IP] addresses) for device identification or organizational authentication solutions (e.g., Institute of Electrical and Electronics Engineers (IEEE) 802.1x and Extensible Authentication Protocol [EAP], RADIUS server with EAP-Transport Layer Security [TLS] authentication, Kerberos) to identify and authenticate devices on local and wide area networks. Organizations determine the required strength of authentication mechanisms based on the security categories of systems and mission or business requirements. Because of the challenges of implementing device authentication on a large scale, organizations can restrict the application of the control to a limited number/type of devices based on mission or business needs.' WHERE [Requirement_Id] = 37710
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Authenticate [Assignment: organization-defined devices and/or types of devices] before establishing
[Selection (one or more): local; remote; network] connection using bidirectional authentication that is cryptographically based.
[Implementation Statement]
+
+Related Controls: SC-8, SC-12, SC-13
+
+NIST 800-82 Rev 3:
+OT Discussion: For OT systems that include IIoT devices, these enhancements may be needed to protect device-to-device communication.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Device Identification and Authentication | Cryptographic Bidirectional Authentication
Authenticate [Assignment: organization-defined devices and/or types of devices] before establishing [Selection (one or more): local; remote; network] connection using bidirectional authentication that is cryptographically based.
Discussion:A local connection is a connection with a device that communicates without the use of a network. A network connection is a connection with a device that communicates through a network. A remote connection is a connection with a device that communicates through an external network. Bidirectional authentication provides stronger protection to validate the identity of other devices for connections that are of greater risk.' WHERE [Requirement_Id] = 37711
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Handle device identification and authentication based on attestation by [Assignment: organization-defined configuration management process].
[Implementation Statement]
+
+Related Controls: CM-2, CM-3, CM-6
+
+NIST 800-82 Rev 3:
+OT Discussion: For OT systems that include IIoT devices, these enhancements may be needed to protect device-to-device communication.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N'Device Identification and Authentication | Device Attestation
Handle device identification and authentication based on attestation by [Assignment: organization-defined configuration management process].
Discussion:Device attestation refers to the identification and authentication of a device based on its configuration and known operating state. Device attestation can be determined via a cryptographic hash of the device. If device attestation is the means of identification and authentication, then it is important that patches and updates to the device are handled via a configuration management process such that the patches and updates are done securely and do not disrupt identification and authentication to other devices.' WHERE [Requirement_Id] = 37712
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Manage system identifiers by:
[Implementation Statement]
+
+a. Receiving authorization from System Owners to assign an individual, group, role, service, or device identifier;
[a: Implementation Statement]
+b. Selecting an identifier that identifies an individual, group, role, service, or device;
[b: Implementation Statement]
+c. Assigning the identifier to the intended individual, group, role, service, or device;
[c: Implementation Statement]
+d. Not assigning the same identifier to a single individual for more than one role;
[d: Implementation Statement]
+e. Only allowing the use of identifiers by a single individual; and
[e: Implementation Statement]
+f. Preventing reuse of identifiers, except for users that are rehired.
[f: Implementation Statement]
+
+Related Controls: AC-5, IA-2, IA-3, IA-5, IA-8, IA-12, MA-4, PE-2, PE-3, PE-4, PL-4, PM-12, PS-3, PS-4, PS-5
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identifier Management
a. Receiving authorization from [Assignment: organization-defined personnel or roles] to assign an individual, group, role, service, or device identifier;
b. Selecting an identifier that identifies an individual, group, role, service, or device;
c. Assigning the identifier to the intended individual, group, role, service, or device; and
d. Preventing reuse of identifiers for [Assignment: organization-defined time period].
Discussion:Common device identifiers include Media Access Control (MAC) addresses, Internet Protocol (IP) addresses, or device-unique token identifiers. The management of individual identifiers is not applicable to shared system accounts. Typically, individual identifiers are the usernames of the system accounts assigned to those individuals. In such instances, the account management activities of AC-2 use account names provided by IA-4. Identifier management also addresses individual identifiers not necessarily associated with system accounts. Preventing the reuse of identifiers implies preventing the assignment of previously used individual, group, role, service, or device identifiers to different individuals, groups, roles, services, or devices.' WHERE [Requirement_Id] = 37713
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Manage individual identifiers by uniquely identifying each individual by their affiliation with WMATA, minimally differentiating between employees and non-employees (e.g., contractors, foreign nationals, non-organizational users, etc.). Ensure that badges have different visual markings to indicate the status of individuals.
[Implementation Statement]
+
+OT Systems Only:
+Non-organizational, including foreign national, support for OT systems shall only be authorized by the CISO.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: This control enhancement is typically implemented by the organization rather than at the system level. However, to manage risk for certain OT environments, identifiers (e.g., badges) may have different markings to indicate the status of individuals, such as contractors, foreign nationals, and non-organizational users.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identifier Management | Identify User Status
Manage individual identifiers by uniquely identifying each individual as [Assignment: organization-defined characteristic identifying individual status].
Discussion:Characteristics that identify the status of individuals include contractors, foreign nationals, and non-organizational users. Identifying the status of individuals by these characteristics provides additional information about the people with whom organizational personnel are communicating. For example, it might be useful for a government employee to know that one of the individuals on an email message is a contractor.' WHERE [Requirement_Id] = 37714
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Manage system authenticators by:
[Implementation Statement]
+
+a. Verifying, as part of the initial authenticator distribution, the identity of the individual, group, role, application, service, or device receiving the authenticator;
[a: Implementation Statement]
+b. Establishing initial authenticator content for any authenticators issued by the organization;
[b: Implementation Statement]
+c. Ensuring that authenticators have sufficient strength of mechanism for their intended use;
[c: Implementation Statement]
+d. Establishing and implementing administrative procedures for initial authenticator distribution, for lost or compromised or damaged authenticators, and for revoking authenticators;
[d: Implementation Statement]
+e. Changing default authenticators immediately upon first use;
[e: Implementation Statement]
+f. No limits will be set on frequency of authenticator changing or refreshing of passwords;
[f: Implementation Statement]
+g. Users shall be permitted to change passwords using self-service capabilities;
[g: Implementation Statement]
+h. Changing or refreshing authenticators as follows:
[h: Implementation Statement]
+ i) User Authenticators:
[h.i: Implementation Statement]
+ (1) Passwords (includes service accounts): 90 days;
[h.i.1: Implementation Statement]
+ (2) Certificates: three years; and
[h.i.2: Implementation Statement]
+ (3) One-time password (OTP) devices: at least every 30 seconds.
[h.i.3: Implementation Statement]
+ ii) Device, Service and Application Authenticators:
[h.ii: Implementation Statement]
+ (1) Certificates: one year; and
[h.ii.1: Implementation Statement]
+ (2) Passwords: 90 days.
[h.ii.2: Implementation Statement]
+i. Configuring to expire. Users and owners of group authenticators (e.g., service accounts) shall automatically receive notification 30 days prior to expiration;
[i: Implementation Statement]
+j. Changing authenticators when there is a security incident or compromise of the authenticator, or at the direction of DMCS;
[j: Implementation Statement]
+k. Protecting authenticator content from unauthorized disclosure and modification as defined in WMATA policy;
[k: Implementation Statement]
+l. Requiring individuals to use, and having devices implement, specific controls to protect authenticators; and
[l: Implementation Statement]
+m. Changing authenticators for group or role accounts when membership to those accounts changes.
[m: Implementation Statement]
+n. Maintaining a repository of certificates, associated expiration dates, and system administrators; and
[n: Implementation Statement]
+o. Notifying system administrators 30 days prior to expiration of certificates.
[o: Implementation Statement]
+
+OT Systems Only:
+Compensating controls for OT systems can include physical access controls and encapsulation of the OT to provide authentication external to the OT.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-6, CM-6, IA-2, IA-4, IA-7, IA-8, MA-4, PE-2, PL-4, SC-12, SC-13
+
+p. Security Controls Enhancement(s):
[p: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include physical access control and encapsulating the OT to provide authentication external to the OT.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.1.a. A policy for memorized secret authenticators resets that includes criteria for when resets must occur
[10]; and (p.7)
[C.1.a: Implementation Statement]
+', [Supplemental_Info]=N'Authenticator Management
a. Verifying, as part of the initial authenticator distribution, the identity of the individual, group, role, service, or device receiving the authenticator;
b. Establishing initial authenticator content for any authenticators issued by the organization;
c. Ensuring that authenticators have sufficient strength of mechanism for their intended use;
d. Establishing and implementing administrative procedures for initial authenticator distribution, for lost or compromised or damaged authenticators, and for revoking authenticators;
e. Changing default authenticators prior to first use;
f. Changing or refreshing authenticators [Assignment: organization-defined time period by authenticator type] or when [Assignment: organization-defined events] occur;
g. Protecting authenticator content from unauthorized disclosure and modification;
h. Requiring individuals to take, and having devices implement, specific controls to protect authenticators; and
i. Changing authenticators for group or role accounts when membership to those accounts changes.
Discussion:Authenticators include passwords, cryptographic devices, biometrics, certificates, one-time password devices, and ID badges. Device authenticators include certificates and passwords. Initial authenticator content is the actual content of the authenticator (e.g., the initial password). In contrast, the requirements for authenticator content contain specific criteria or characteristics (e.g., minimum password length). Developers may deliver system components with factory default authentication credentials (i.e., passwords) to allow for initial installation and configuration. Default authentication credentials are often well known, easily discoverable, and present a significant risk. The requirement to protect individual authenticators may be implemented via control PL-4 or PS-6 for authenticators in the possession of individuals and by controls AC-3, AC-6, and SC-28 for authenticators stored in organizational systems, including passwords stored in hashed or encrypted formats or files containing encrypted or hashed passwords accessible with administrator privileges.
Systems support authenticator management by organization-defined settings and restrictions for various authenticator characteristics (e.g., minimum password length, validation time window for time synchronous one-time tokens, and number of allowed rejections during the verification stage of biometric authentication). Actions can be taken to safeguard individual authenticators, including maintaining possession of authenticators, not sharing authenticators with others, and immediately reporting lost, stolen, or compromised authenticators. Authenticator management includes issuing and revoking authenticators for temporary access when no longer needed.
' WHERE [Requirement_Id] = 37715
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'For password-based authentication:
[Implementation Statement]
+
+(1) Maintain a Prohibited Password List (PPL) based on commonly-used, expected, or compromised passwords and update the list monthly;
[1: Implementation Statement]
+(2) When a password identified on the PPL is in use at WMATA or the password is identified as compromised, change immediately, but no later than:
[2: Implementation Statement]
+ (a) 30 minutes for High categorized systems, high-risk individuals and privileged accounts;
[2.a: Implementation Statement]
+ (b) 60 minutes for systems categorized as Moderate; and
[2.b: Implementation Statement]
+ (c) 24 hours for all other information systems and/or accounts. All passwords shall be changed immediately.
[2.c: Implementation Statement]
+(3) Verify, when users create or update passwords, that the passwords are not found on the PPL;
[3: Implementation Statement]
+(4) Transmit passwords only over cryptographically-protected channels;
[4: Implementation Statement]
+(5) Store passwords using an DMCS-approved salted key derivation function,
[5: Implementation Statement]
preferably using a keyed hash;
+(6) Require immediate selection of a new password upon account recovery;
[6: Implementation Statement]
+(7) If systems are enabled for use of passphrases they shall be allowed with the following requirements:
[7: Implementation Statement]
+ (a) Minimum password length is 16 characters;
[7.a: Implementation Statement]
+ (b) Maximum password age must be 90 days or less;
[7.b: Implementation Statement]
+ (c) Password history (reuse) must be configured for 24 passwords remembered; and
[7.c: Implementation Statement]
+ (d) Maximum number of three allowed unsuccessful logon attempts.
[7.d: Implementation Statement]
+(8) Employ automated tools to assist the user in selecting strong password authenticators; and
[8: Implementation Statement]
+(9) Enforce composition and complexity rules based on the following:
[9: Implementation Statement]
+ (a) Cannot contain significant portions of the user’s account name or full name;
[9.a: Implementation Statement]
+ (b) Minimum password length is 16 characters;
[9.b: Implementation Statement]
+ (c) Must contain characters from all of the following four categories:
[9.c: Implementation Statement]
+ (i) English uppercase character (A through Z);
[9.c.i: Implementation Statement]
+ (ii) English lowercase character (a through z);
[9.c.ii: Implementation Statement]
+ (iii) Base 10 digit (0 through 9); and
[9.c.iii: Implementation Statement]
+ (iv) Nonalphabetic character (for example, !, $, #, %).
[9.c.iv: Implementation Statement]
+ (d) Maximum number of repeating characters of the same character class is limited to four;
[9.d: Implementation Statement]
+ (e) Maximum password age must be 90 days or less;
[9.e: Implementation Statement]
+ (f) Password history (reuse) must be configured for 24 passwords remembered; and
[9.f: Implementation Statement]
+ (g) Maximum number of three allowed unsuccessful login attempts.
[9.g: Implementation Statement]
+
+Related Controls: IA-6
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.1.a. A policy for memorized secret authenticators resets that includes criteria for when resets must occur
[10]; and (p.7)
[C.1.a: Implementation Statement]
+', [Supplemental_Info]=N' Password-based Authentication
For password-based authentication:
(a) Maintain a list of commonly-used, expected, or compromised passwords and update the list [Assignment: organization-defined frequency] and when organizational passwords are suspected to have been compromised directly or indirectly;
(b) Verify, when users create or update passwords, that the passwords are not found on the list of commonly-used, expected, or compromised passwords in IA-5(1)(a);
(c) Transmit passwords only over cryptographically-protected channels;
(d) Store passwords using an approved salted key derivation function, preferably using a keyed hash;
(e) Require immediate selection of a new password upon account recovery;
(f) Allow user selection of long passwords and passphrases, including spaces and all printable characters;
(g) Employ automated tools to assist the user in selecting strong password authenticators; and
(h) Enforce the following composition and complexity rules: [Assignment: organization-defined composition and complexity rules].
Discussion:Password-based authentication applies to passwords regardless of whether they are used in single-factor or multi-factor authentication. Long passwords or passphrases are preferable over shorter passwords. Enforced composition rules provide marginal security benefits while decreasing usability. However, organizations may choose to establish certain rules for password generation (e.g., minimum character length for long passwords) under certain circumstances and can enforce this requirement in IA-5(1)(h). Account recovery can occur, for example, in situations when a password is forgotten. Cryptographically protected passwords include salted one-way cryptographic hashes of passwords. The list of commonly used, compromised, or expected passwords includes passwords obtained from previous breach corpuses, dictionary words, and repetitive or sequential characters. The list includes context-specific words, such as the name of the service, username, and derivatives thereof.' WHERE [Requirement_Id] = 37716
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) For public key-based authentication:
[1: Implementation Statement]
+ (a) Enforce authorized access to the corresponding private key; and
[1.a: Implementation Statement]
+ (b) Map the authenticated identity to the account of the individual or group; and
[1.b: Implementation Statement]
+(2) When a public key is used:
[2: Implementation Statement]
+ (a) Validate certificates by constructing and verifying a certification path to an accepted trust anchor, including checking certificate status information; and
[2.a: Implementation Statement]
+ (b) Implement a local cache of revocation data to support path discovery and validation.
[2.b: Implementation Statement]
+
+Related Controls: IA-3, SC-17
+
+
+', [Supplemental_Info]=N' Public Key-based Authentication
(a) For public key-based authentication:
(1) Enforce authorized access to the corresponding private key; and
(2) Map the authenticated identity to the account of the individual or group; and
(b) When public key infrastructure (PKI) is used:
(1) Validate certificates by constructing and verifying a certification path to an accepted trust anchor, including checking certificate status
information; and
(2) Implement a local cache of revocation data to support path discovery and validation.
Discussion:Public key cryptography is a valid authentication mechanism for individuals, machines, and devices. For PKI solutions, status information for certification paths includes certificate revocation lists or certificate status protocol responses. For PIV cards, certificate validation involves the construction and verification of a certification path to the Common Policy Root trust anchor, which includes certificate policy processing. Implementing a local cache of revocation data to support path discovery and validation also supports system availability in situations where organizations are unable to access revocation information via the network.' WHERE [Requirement_Id] = 37717
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Protect authenticators commensurate with the security category of the information to which use of the authenticator permits.
[Implementation Statement]
+
+Related Controls: RA-2
+
+
+', [Supplemental_Info]=N' Protection of Authenticators
Protect authenticators commensurate with the security category of the information to which use of the authenticator permits access.
Discussion:For systems that contain multiple security categories of information without reliable physical or logical separation between categories, authenticators used to grant access to the systems are protected commensurate with the highest security category of information on the systems. Security categories of information are determined as part of the security categorization process.' WHERE [Requirement_Id] = 37718
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Obscure feedback of authentication information during the authentication process to protect the information from possible exploitation and use by unauthorized individuals.
[Implementation Statement]
+
+Related Controls: AC-3
+
+NIST 800-82 Rev 3:
+OT Discussion: This control assumes a visual interface that provides feedback about authentication information during the authentication process. When OT authentication uses an interface that does not support visual feedback (e.g., protocol-based authentication), this control may be tailored out.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Authentication Feedback
Obscure feedback of authentication information during the authentication process to protect the information from possible exploitation and use by unauthorized individuals.
Discussion:Authentication feedback from systems does not provide information that would allow unauthorized individuals to compromise authentication mechanisms. For some types of systems, such as desktops or notebooks with relatively large monitors, the threat (referred to as shoulder surfing) may be significant. For other types of systems, such as mobile devices with small displays, the threat may be less significant and is balanced against the increased likelihood of typographic input errors due to small keyboards. Thus, the means for obscuring authentication feedback is selected accordingly. Obscuring authentication feedback includes displaying asterisks when users type passwords into input devices or displaying feedback for a very limited time before obscuring it.' WHERE [Requirement_Id] = 37719
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement mechanisms for authentication to a cryptographic module that meet the requirements of applicable laws, directives, policies, regulations, standards, and guidelines for such authentication.
[Implementation Statement]
+
+Related Controls: AC-3, IA-5, SA-4, SC-12, SC-13
+
+
+', [Supplemental_Info]=N'Cryptographic Module Authentication
Implement mechanisms for authentication to a cryptographic module that meet the requirements of applicable laws, executive orders, directives, policies, regulations, standards, and guidelines for such authentication.
Discussion:Authentication mechanisms may be required within a cryptographic module to authenticate an operator accessing the module and to verify that the operator is authorized to assume the requested role and perform services within that role.' WHERE [Requirement_Id] = 37720
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Access to WMATA systems shall be limited to users with credentials issued by WMATA.
[Implementation Statement]
+
+Related Controls: AC-2, AC-6, AC-14, AC-17, AC-18, AU-6, IA-2, IA-4, IA-5, IA-11, MA-4, RA-3, SA-4, SC-8
+
+a. Security Controls Enhancement(s):
[a: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The OT Discussion for IA-2, Identification and Authentication (Organizational Users) is applicable for non-organizational users.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identification and Authentication (non-organizational Users)
Uniquely identify and authenticate non-organizational users or processes acting on behalf of non-organizational users.
Discussion:Non-organizational users include system users other than organizational users explicitly covered by IA-2. Non-organizational users are uniquely identified and authenticated for accesses other than those explicitly identified and documented in AC-14. Identification and authentication of non-organizational users accessing federal systems may be required to protect federal, proprietary, or privacy-related information (with exceptions noted for national security systems). Organizations consider many factors—including security, privacy, scalability, and practicality—when balancing the need to ensure ease of use for access to federal information and systems with the need to protect and adequately mitigate risk.' WHERE [Requirement_Id] = 37721
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Accept and electronically verify Personal Identity Verification-compliant credentials from other federal agencies.
[Implementation Statement]
+
+OT Systems Only:
+Acceptance of PIV credentials is only required for organizations that follow OMB Memorandum M-19-17
[OMB-M1917] (e.g., federal agencies and contractors).
[OT Systems Only: Implementation Statement]
+
+Related Controls: PE-3
+
+NIST 800-82 Rev 3:
+OT Discussion: Acceptance of PIV credentials is only required for organizations that follow OMB Memorandum M-19-17
[OMB-M1917] (e.g., federal agencies and contractors).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identification and Authentication (non-organizational Users) | Acceptance of PIV Credentials from Other Agencies
Accept and electronically verify Personal Identity Verification-compliant credentials from other federal agencies.
Discussion:Acceptance of Personal Identity Verification (PIV) credentials from other federal agencies applies to both logical and physical access control systems. PIV credentials are those credentials issued by federal agencies that conform to FIPS Publication 201 and supporting guidelines. The adequacy and reliability of PIV card issuers are addressed and authorized using [SP 800-79-2].' WHERE [Requirement_Id] = 37722
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Accept only external authenticators that are NIST-compliant; and
[1: Implementation Statement]
+(2) Document and maintain a list of accepted external authenticators.
[2: Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include implementing support external to the OT and multi-factor authentication.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include implementing support external to the OT and multi-factor authentication.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Identification and Authentication (non-organizational Users) | Acceptance of External Authenticators
(a) Accept only external authenticators that are NIST-compliant; and
(b) Document and maintain a list of accepted external authenticators.
Discussion:Acceptance of only NIST-compliant external authenticators applies to organizational systems that are accessible to the public (e.g., public-facing websites). External authenticators are issued by nonfederal government entities and are compliant with [SP 800-63B]. Approved external authenticators meet or exceed the minimum Federal Government-wide technical, security, privacy, and organizational maturity requirements. Meeting or exceeding Federal requirements allows Federal Government relying parties to trust external authenticators in connection with an authentication transaction at a specified authenticator assurance level.' WHERE [Requirement_Id] = 37723
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Conform to the following profiles for identity management [Assignment: organization-defined identity management profiles].
[Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include implementing support external to the OT and multi-factor authentication.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include implementing support external to the OT and multi-factor authentication.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N'Identification and Authentication (non-organizational Users) | Use of Defined Profiles
Conform to the following profiles for identity management [Assignment: organization-defined identity management profiles].
Discussion:Organizations define profiles for identity management based on open identity management standards. To ensure that open identity management standards are viable, robust, reliable, sustainable, and interoperable as documented, the Federal Government assesses and scopes the standards and technology implementations against applicable laws, executive orders, directives, policies, regulations, standards, and guidelines.' WHERE [Requirement_Id] = 37724
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Cybersecurity Incident Response Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] incident response policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the incident response policy and the associated incident response controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the incident response policy and procedures; and
c. Review and update the current incident response:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Incident response policy and procedures address the controls in the IR family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of incident response policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to incident response policy and procedures include assessment or audit findings, security incidents or breaches, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37725
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Incident response training shall be provided to designated system users consistent with their assigned roles and responsibilities:
[a: Implementation Statement]
+ i) Within 30 days of assuming an incident response role or responsibility or acquiring system access;
[a.i: Implementation Statement]
+ ii) When required by system changes; and
[a.ii: Implementation Statement]
+ iii) Annually thereafter.
[a.iii: Implementation Statement]
+b. Review and update incident response training content annually and following substantial changes in WMATA incident response controls or Standard Operating Procedures (SOPs).
[b: Implementation Statement]
+
+Related Controls: AT-2, AT-3, AT-4, CP-3, IR-3, IR-4, IR-8, IR-9
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Incident Response Training
a. Provide incident response training to system users consistent with assigned roles and responsibilities:
1. Within [Assignment: organization-defined time period] of assuming an incident response role or responsibility or acquiring system access;
2. When required by system changes; and
3. [Assignment: organization-defined frequency] thereafter; and
b. Review and update incident response training content [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Incident response training is associated with the assigned roles and responsibilities of organizational personnel to ensure that the appropriate content and level of detail are included in such training. For example, users may only need to know who to call or how to recognize an incident; system administrators may require additional training on how to handle incidents; and incident responders may receive more specific training on forensics, data collection techniques, reporting, system recovery, and system restoration. Incident response training includes user training in identifying and reporting suspicious activities from external and internal sources. Incident response training for users may be provided as part of AT-2 or AT-3. Events that may precipitate an update to incident response training content include, but are not limited to, incident response plan testing or response to an actual incident (lessons learned), assessment or audit findings, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.' WHERE [Requirement_Id] = 37726
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Incorporate simulated events into incident response training to facilitate the required response by personnel in crisis situations.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Simulated Events
Incorporate simulated events into incident response training to facilitate the required response by personnel in crisis situations.
Discussion:Organizations establish requirements for responding to incidents in incident response plans. Incorporating simulated events into incident response training helps to ensure that personnel understand their individual responsibilities and what specific actions to take in crisis situations.' WHERE [Requirement_Id] = 37727
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide an incident response training environment using automated mechanisms which facilitate more thorough and realistic incident response training, more coverage of incident response issues, more realistic training scenarios and environments, and which stress the response capability.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Training Environments
Provide an incident response training environment using [Assignment: organization-defined automated mechanisms].
Discussion:Automated mechanisms can provide a more thorough and realistic incident response training environment. This can be accomplished, for example, by providing more complete coverage of incident response issues, selecting more realistic training scenarios and environments, and stressing the response capability.' WHERE [Requirement_Id] = 37728
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide incident response training on how to identify and respond to a breach, including the organization’s process for reporting a breach.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Breach
Provide incident response training on how to identify and respond to a breach, including the organization’s process for reporting a breach.
Discussion:For federal agencies, an incident that involves personally identifiable information is considered a breach. A breach results in the loss of control, compromise, unauthorized disclosure, unauthorized acquisition, or a similar occurrence where a person other than an authorized user accesses or potentially accesses personally identifiable information or an authorized user accesses or potentially accesses such information for other than authorized purposes. The incident response training emphasizes the obligation of individuals to report both confirmed and suspected breaches involving information in any medium or form, including paper, oral, and electronic. Incident response training includes tabletop exercises that simulate a breach. See IR-2(1).' WHERE [Requirement_Id] = 37729
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Test the effectiveness of the incident response capability on a monthly basis using standardization and evaluation quizzes and incident response drills, and on a quarterly basis using tabletop or full-scale exercises.
[a: Implementation Statement]
+
+Related Controls: CP-3, CP-4, IR-2, IR-4, IR-8, PM-14
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Incident Response Testing
Test the effectiveness of the incident response capability for the system [Assignment: organization-defined frequency] using the following tests: [Assignment: organization-defined tests].
Discussion:Organizations test incident response capabilities to determine their effectiveness and identify potential weaknesses or deficiencies. Incident response testing includes the use of checklists, walk-through or tabletop exercises, and simulations (parallel or full interrupt). Incident response testing can include a determination of the effects on organizational operations and assets and individuals due to incident response. The use of qualitative and quantitative data aids in determining the effectiveness of incident response processes.' WHERE [Requirement_Id] = 37730
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Coordinate incident response testing with organizational elements responsible for related plans.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Coordination with Related Plans
Coordinate incident response testing with organizational elements responsible for related plans.
Discussion:Organizational plans related to incident response testing include business continuity plans, disaster recovery plans, continuity of operations plans, contingency plans, crisis communications plans, critical infrastructure plans, and occupant emergency plans.' WHERE [Requirement_Id] = 37731
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Implement an incident handling capability for incidents that is consistent with the incident response plan and includes preparation, detection and analysis, containment, eradication, and recovery;
[a: Implementation Statement]
+b. Support incident response at the system level as dictated by the nature of the incident;
[b: Implementation Statement]
+c. Coordinate incident handling activities with contingency planning activities;
[c: Implementation Statement]
+d. Incorporate lessons learned from ongoing incident handling activities into incident response procedures, training, and testing, and implement the resulting changes accordingly; and
[d: Implementation Statement]
+e. Ensure the rigor, intensity, scope, and results of incident handling activities are comparable and predictable across the organization.
[e: Implementation Statement]
+
+OT Systems Only:
+As part of the incident handling capability, the organization coordinates with external vendors, integrators, or suppliers as necessary to ensure they have the capability to address events specific to embedded components and devices.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-19, AU-6, AU-7, CM-6, CP-2, CP-3, CP-4, IR-2, IR-3, IR-5, IR-6, IR-8, PE-6, PL-2, PM-12, SA-8, SC-5, SC-7, SI-3, SI-4, SI-7
+
+f. Security Controls Enhancement(s):
[f: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: As part of the incident handling capability, the organization coordinates with external vendors, integrators, or suppliers as necessary to ensure that they have the capability to address events that are specific to embedded components and devices.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to—
+
+d. Implement capabilities (such as Security, Orchestration, Automation, and Response) to define, prioritize, and drive standardized incident response activities. (p.8)
[D.2: Implementation Statement]
+
+D.4. Mitigation measures or manual controls to ensure industrial control systems can be isolated when a cybersecurity incident in the Information Technology system creates risk to the safety and reliability of the Operational Technology system. (p.8)
[D.4: Implementation Statement]
+', [Supplemental_Info]=N'Incident Handling
a. Implement an incident handling capability for incidents that is consistent with the incident response plan and includes preparation, detection and analysis, containment, eradication, and recovery;
b. Coordinate incident handling activities with contingency planning activities;
c. Incorporate lessons learned from ongoing incident handling activities into incident response procedures, training, and testing, and implement the resulting changes accordingly; and
d. Ensure the rigor, intensity, scope, and results of incident handling activities are comparable and predictable across the organization.
Discussion:Organizations recognize that incident response capabilities are dependent on the capabilities of organizational systems and the mission and business processes being supported by those systems. Organizations consider incident response as part of the definition, design, and development of mission and business processes and systems. Incident-related information can be obtained from a variety of sources, including audit monitoring, physical access monitoring, and network monitoring; user or administrator reports; and reported supply chain events. An effective incident handling capability includes coordination among many organizational entities (e.g., mission or business owners, system owners, authorizing officials, human resources offices, physical security offices, personnel security offices, legal departments, risk executive [function], operations personnel, procurement offices). Suspected security incidents include the receipt of suspicious email communications that can contain malicious code. Suspected supply chain incidents include the insertion of counterfeit hardware or malicious code into organizational systems or system components. For federal agencies, an incident that involves personally identifiable information is considered a breach. A breach results in unauthorized disclosure, the loss of control, unauthorized acquisition, compromise, or a similar occurrence where a person other than an authorized user accesses or potentially accesses personally identifiable information or an authorized user accesses or potentially accesses such information for other than authorized purposes.' WHERE [Requirement_Id] = 37732
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Support the incident handling process using automated mechanisms that support incident handling processes, including online incident management systems and tools that support the collection of live response data, full network packet capture, and forensic analysis.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Incident Handling Processes
Support the incident handling process using [Assignment: organization-defined automated mechanisms].
Discussion:Automated mechanisms that support incident handling processes include online incident management systems and tools that support the collection of live response data, full network packet capture, and forensic analysis.' WHERE [Requirement_Id] = 37733
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish and maintain an integrated incident response team that can be activated by the organization within one hour.
[Implementation Statement]
+
+Related Controls: AT-3
+
+
+', [Supplemental_Info]=N' Integrated Incident Response Team
Establish and maintain an integrated incident response team that can be deployed to any location identified by the organization in [Assignment: organization-defined time period].
Discussion:An integrated incident response team is a team of experts that assesses, documents, and responds to incidents so that organizational systems and networks can recover quickly and implement the necessary controls to avoid future incidents. Incident response team personnel include forensic and malicious code analysts, tool developers, systems security and privacy engineers, and real-time operations personnel. The incident handling capability includes performing rapid forensic preservation of evidence and analysis of and response to intrusions. For some organizations, the incident response team can be a cross-organizational entity.
An integrated incident response team facilitates information sharing and allows organizational personnel (e.g., developers, implementers, and operators) to leverage team knowledge of the threat and implement defensive measures that enable organizations to deter intrusions more effectively. Moreover, integrated teams promote the rapid detection of intrusions, the development of appropriate mitigations, and the deployment of effective defensive measures. For example, when an intrusion is detected, the integrated team can rapidly develop an appropriate response for operators to implement, correlate the new incident with information on past intrusions, and augment ongoing cyber intelligence development. Integrated incident response teams are better able to identify adversary tactics, techniques, and procedures that are linked to the operations tempo or specific mission and business functions and to define responsive actions in a way that does not disrupt those mission and business functions. Incident response teams can be distributed within organizations to make the capability resilient.
' WHERE [Requirement_Id] = 37734
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Correlate incident information and individual incident responses to achieve an organization-wide perspective on incident awareness and response.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Information Correlation
Correlate incident information and individual incident responses to achieve an organization-wide perspective on incident awareness and response.
Discussion:Sometimes, a threat event, such as a hostile cyber-attack, can only be observed by bringing together information from different sources, including various reports and reporting procedures established by organizations.' WHERE [Requirement_Id] = 37735
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Track and document incidents.
[a: Implementation Statement]
+
+Related Controls: AU-6, AU-7, IR-4, IR-6, IR-8, PE-6, PM-5, SC-5, SC-7, SI-3, SI-4, SI-7
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to—
+
+d. Implement capabilities (such as Security, Orchestration, Automation, and Response) to define, prioritize, and drive standardized incident response activities. (p.8)
[D.2: Implementation Statement]
+', [Supplemental_Info]=N'Incident Monitoring
Track and document incidents.
Discussion:Documenting incidents includes maintaining records about each incident, the status of the incident, and other pertinent information necessary for forensics as well as evaluating incident details, trends, and handling. Incident information can be obtained from a variety of sources, including network monitoring, incident reports, incident response teams, user complaints, supply chain partners, audit monitoring, physical access monitoring, and user and administrator reports. IR-4 provides information on the types of incidents that are appropriate for monitoring.' WHERE [Requirement_Id] = 37736
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Track incidents and collect and analyze incident information.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Tracking, Data Collection, and Analysis
Track incidents and collect and analyze incident information using [Assignment: organization-defined automated mechanisms].
Discussion:Automated mechanisms for tracking incidents and collecting and analyzing incident information include Computer Incident Response Centers or other electronic databases of incidents and network monitoring devices.' WHERE [Requirement_Id] = 37737
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Require personnel to report suspected incidents to the organizational incident response capability immediately, but not to exceed 24 hours; and
[a: Implementation Statement]
+b. Report incident information to the CISO via the Cyber Fusion Center’s (CFC) Security Operations Center (SOC).
[b: Implementation Statement]
+
+OT Systems Only:
+The organization should report incidents on a timely basis. CISA collaborates with international and private sector Computer Emergency Response Teams (CERTs) to share control systems-related security incidents and mitigation measures.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CM-6, CP-2, IR-4, IR-5, IR-8, IR-9
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization should report incidents on a timely basis. CISA collaborates with international and private-sector computer emergency response teams (CERTs) to share control systems-related security incidents and mitigation measures.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to—
+
+d. Implement capabilities (such as Security, Orchestration, Automation, and Response) to define, prioritize, and drive standardized incident response activities. (p.8)
[D.2: Implementation Statement]
+', [Supplemental_Info]=N'Incident Reporting
a. Require personnel to report suspected incidents to the organizational incident response capability within [Assignment: organization-defined time period]; and
b. Report incident information to [Assignment: organization-defined authorities].
Discussion:The types of incidents reported, the content and timeliness of the reports, and the designated reporting authorities reflect applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Incident information can inform risk assessments, control effectiveness assessments, security requirements for acquisitions, and selection criteria for technology products.' WHERE [Requirement_Id] = 37738
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Report incidents using the designated Security Orchestration, Automation and Response (SOAR).
[Implementation Statement]
+
+OT Systems Only:
+The automated mechanisms used to support the incident reporting process are not necessarily part of, or connected to, the OT.
[OT Systems Only: Implementation Statement]
+
+Related Controls: IR-7
+
+NIST 800-82 Rev 3:
+OT Discussion: The automated mechanisms used to support the incident reporting process are not necessarily part of or connected to the OT.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.2. Procedures to—
+
+d. Implement capabilities (such as Security, Orchestration, Automation, and Response) to define, prioritize, and drive standardized incident response activities. (p.8)
[D.2: Implementation Statement]
+', [Supplemental_Info]=N'Incident Reporting | Automated Reporting
Report incidents using [Assignment: organization-defined automated mechanisms].
Discussion:The recipients of incident reports are specified in IR-6b. Automated reporting mechanisms include email, posting on websites (with automatic updates), and automated incident response tools and programs.' WHERE [Requirement_Id] = 37739
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide incident information to the provider of the product or service and other organizations involved in the supply chain or supply chain governance for systems or system components related to the incident.
[Implementation Statement]
+
+Related Controls: SR-8
+
+
+
+', [Supplemental_Info]=N' Supply Chain Coordination
Provide incident information to the provider of the product or service and other organizations involved in the supply chain or supply chain governance for systems or system components related to the incident.
Discussion:Organizations involved in supply chain activities include product developers, system integrators, manufacturers, packagers, assemblers, distributors, vendors, and resellers. Entities that provide supply chain governance include the Federal Acquisition Security Council (FASC). Supply chain incidents include compromises or breaches that involve information technology products, system components, development processes or personnel, distribution processes, or warehousing facilities. Organizations determine the appropriate information to share and consider the value gained from informing external organizations about supply chain incidents, including the ability to improve processes or to identify the root cause of an incident.' WHERE [Requirement_Id] = 37740
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide an incident response support resource, integral to the organizational incident response capability, that offers advice and assistance to users of the system for the handling and reporting of incidents.
[a: Implementation Statement]
+
+Related Controls: AT-2, AT-3, IR-4, IR-6, IR-8, PM-22, PM-26, SA-9, SI-18
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Incident Response Assistance
Provide an incident response support resource, integral to the organizational incident response capability, that offers advice and assistance to users of the system for the handling and reporting of incidents.
Discussion:Incident response support resources provided by organizations include help desks, assistance groups, automated ticketing systems to open and track incident response tickets, and access to forensics services or consumer redress services, when required.' WHERE [Requirement_Id] = 37741
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Increase the availability of incident response information and support using automated mechanisms which provide a push or pull capability for users to obtain incident response assistance (e.g., access to a website to query the assistance capability, the assistance capability to proactively send incident response information to users as part of increasing understanding of current response capabilities and support, etc.).
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automation Support for Availability of Information and Support
Increase the availability of incident response information and support using [Assignment: organization-defined automated mechanisms].
Discussion:Automated mechanisms can provide a push or pull capability for users to obtain incident response assistance. For example, individuals may have access to a website to query the assistance capability, or the assistance capability can proactively send incident response information to users (general distribution or targeted) as part of increasing understanding of current response capabilities and support.' WHERE [Requirement_Id] = 37742
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop an incident response plan that:
[a: Implementation Statement]
+ i) Provides the organization with a roadmap for implementing its incident response capability;
[a.i: Implementation Statement]
+ ii) Describes the structure and organization of the incident response capability;
[a.ii: Implementation Statement]
+ iii) Provides a high-level approach for how the incident response capability fits into the overall organization;
[a.iii: Implementation Statement]
+ iv) Meets the unique requirements of the organization, which relate to mission, size, structure, and functions;
[a.iv: Implementation Statement]
+ v) Defines reportable incidents;
[a.v: Implementation Statement]
+ vi) Provides metrics for measuring the incident response capability within the organization;
[a.vi: Implementation Statement]
+ vii) Defines the resources and management support needed to effectively maintain and mature an incident response capability;
[a.vii: Implementation Statement]
+ viii) Addresses the sharing of incident information;
[a.viii: Implementation Statement]
+ ix) Is reviewed and approved by the CISO or CISO’s designated representative annually; and
[a.ix: Implementation Statement]
+ x) Explicitly designates responsibility for incident response to the Cyber Fusion Officer (CFO).
[a.x: Implementation Statement]
+b. Create a Cybersecurity Incident Response Team (CIRT) charter which identifies the roles and responsibilities of members of the CIRT;
[b: Implementation Statement]
+c. Distribute copies of the incident response plan to all members of the CFC and the CIRT;
[c: Implementation Statement]
+d. Update the incident response plan to address system and organizational changes or problems encountered during plan implementation, execution, or testing;
[d: Implementation Statement]
+e. Communicate incident response plan changes to all members of the CFC and the CIRT;
[e: Implementation Statement]
+f. Protect the incident response plan from unauthorized disclosure and modification;
[f: Implementation Statement]
+g. Identify personnel associated with incident response activities at the system level within the corresponding SSP addendum and at the CIRT (organizational) level within the CIRT charter addendum;
[g: Implementation Statement]
+h. Notify DMCS within seven calendar days of the appointment of an individual to a qualifying incident response capacity; and
[h: Implementation Statement]
+i. Certify personnel associated with incident response annually.
[i: Implementation Statement]
+
+Related Controls: AC-2, CP-2, CP-4, IR-4, IR-7, IR-9, PE-6, PL-2, SA-15, SI-12, SR-8
+
+j. Security Controls Enhancement(s):
[j: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Incident Response Plan
a. Develop an incident response plan that:
1. Provides the organization with a roadmap for implementing its incident response capability;
2. Describes the structure and organization of the incident response capability;
3. Provides a high-level approach for how the incident response capability fits into the overall organization;
4. Meets the unique requirements of the organization, which relate to mission, size, structure, and functions;
5. Defines reportable incidents;
6. Provides metrics for measuring the incident response capability within the organization;
7. Defines the resources and management support needed to effectively maintain and mature an incident response capability;
8. Addresses the sharing of incident information;
9. Is reviewed and approved by [Assignment: organization-defined personnel or roles] [Assignment: organization-defined frequency]; and
10. Explicitly designates responsibility for incident response to [Assignment: organization-defined entities, personnel, or roles].
b. Distribute copies of the incident response plan to [Assignment: organization-defined incident response personnel (identified by name and/or by role) and organizational elements];
c. Update the incident response plan to address system and organizational changes or problems encountered during plan implementation, execution, or testing;
d. Communicate incident response plan changes to [Assignment: organization-defined incident response personnel (identified by name and/or by role) and organizational elements]; and
e. Protect the incident response plan from unauthorized disclosure and modification.
Discussion:It is important that organizations develop and implement a coordinated approach to incident response. Organizational mission and business functions determine the structure of incident response capabilities. As part of the incident response capabilities, organizations consider the coordination and sharing of information with external organizations, including external service providers and other organizations involved in the supply chain. For incidents involving personally identifiable information (i.e., breaches), include a process to determine whether notice to oversight organizations or affected individuals is appropriate and provide that notice accordingly.' WHERE [Requirement_Id] = 37743
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Include the following in the Incident Response Plan for breaches involving sensitive information:
[1: Implementation Statement]
+ (a) A process to determine if notice to individuals or other organizations, including oversight organizations, is needed;
[1.a: Implementation Statement]
+ (b) An assessment process to determine the extent of the harm, embarrassment, inconvenience, or unfairness to affected individuals and any mechanisms to mitigate such harms; and
[1.b: Implementation Statement]
+ (c) Identification of applicable privacy requirements.
[1.c: Implementation Statement]
+
+Related Controls: PT-1, PT-2, PT-3, PT-4, PT-5, PT-7
+
+
+', [Supplemental_Info]=N' Breaches
Include the following in the Incident Response Plan for breaches involving personally identifiable information:
(a) A process to determine if notice to individuals or other organizations, including oversight organizations, is needed;
(b) An assessment process to determine the extent of the harm, embarrassment, inconvenience, or unfairness to affected individuals and any mechanisms to mitigate such harms; and
(c) Identification of applicable privacy requirements.
Discussion:Organizations may be required by law, regulation, or policy to follow specific procedures relating to breaches, including notice to individuals, affected organizations, and oversight bodies; standards of harm; and mitigation or other specific requirements.' WHERE [Requirement_Id] = 37744
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Assigning CFC with responsibility for responding to information spills;
[a: Implementation Statement]
+b. Identifying the specific information involved in the system contamination;
[b: Implementation Statement]
+c. Alerting CIRT of the information spill using a method of communication not associated with the spill;
[c: Implementation Statement]
+d. Isolating the contaminated system or system component;
[d: Implementation Statement]
+e. Eradicating the information from the contaminated system or component;
[e: Implementation Statement]
+f. Identifying other systems or system components that may have been subsequently contaminated; and
[f: Implementation Statement]
+g. Performing the following additional actions:
[g: Implementation Statement]
+ i. Notification to the Cyber Fusion Officer (CFO) to notify any third parties to include cyber insurers and federal, state, and local authorities to initiate recovery or remediation efforts.
[g.i: Implementation Statement]
+ ii. Review and update incident response plans and procedures, and relevant SOPs and work instructions.
[g.ii: Implementation Statement]
+ iii. Ensure that all users/handlers are in compliance with AT-2 and AT-3.
[g.iii: Implementation Statement]
+
+Related Controls: CP-2, IR-6, PM-26, PM-27, PT-2, PT-3, PT-7, RA-7
+
+h. Security Controls Enhancement(s):
[h: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Information Spillage Response
Respond to information spills by:
a. Assigning [Assignment: organization-defined personnel or roles] with responsibility for responding to information spills;
b. Identifying the specific information involved in the system contamination;
c. Alerting [Assignment: organization-defined personnel or roles] of the information spill using a method of communication not associated with the spill;
d. Isolating the contaminated system or system component;
e. Eradicating the information from the contaminated system or component;
f. Identifying other systems or system components that may have been subsequently contaminated; and
g. Performing the following additional actions: [Assignment: organization-defined actions].
Discussion:Information spillage refers to instances where information is placed on systems that are not authorized to process such information. Information spills occur when information that is thought to be a certain classification or impact level is transmitted to a system and subsequently is determined to be of a higher classification or impact level. At that point, corrective action is required. The nature of the response is based on the classification or impact level of the spilled information, the security capabilities of the system, the specific nature of the contaminated storage media, and the access authorizations of individuals with authorized access to the contaminated system. The methods used to communicate information about the spill after the fact do not involve methods directly associated with the actual spill to minimize the risk of further spreading the contamination before such contamination is isolated and eradicated.' WHERE [Requirement_Id] = 37745
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide information spillage response training annually.
[Implementation Statement]
+
+Related Controls: AT-2, AT-3, CP-3, IR-2
+
+
+', [Supplemental_Info]=N'Training
Provide information spillage response training [Assignment: organization-defined frequency].
Discussion:Organizations establish requirements for responding to information spillage incidents in incident response plans. Incident response training on a regular basis helps to ensure that organizational personnel understand their individual responsibilities and what specific actions to take when spillage incidents occur.' WHERE [Requirement_Id] = 37746
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'The CFC shall develop procedures to ensure that organizational personnel impacted by information spills can continue to carry out assigned tasks while contaminated systems are undergoing corrective actions.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'Post-Spill Operations
Implement the following procedures to ensure that organizational personnel impacted by information spills can continue to carry out assigned tasks while contaminated systems are undergoing corrective actions: [Assignment: organization-defined procedures].
Discussion:Corrective actions for systems contaminated due to information spillages may be time-consuming. Personnel may not have access to the contaminated systems while corrective actions are being taken, which may potentially affect their ability to conduct organizational business.' WHERE [Requirement_Id] = 37747
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'The CFC will make persons exposed to information to which they have not been authorized aware of any restrictions imposed by applicable law, regulation or other requirement based on exposure to such information. In addition, the CFC shall facilitate the notification to organizations and entities whose information has been compromised in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'Exposure to Unauthorized Personnel
Employ the following controls for personnel exposed to information not within assigned access authorizations: [Assignment: organization-defined controls].
Discussion:Controls include ensuring that personnel who are exposed to spilled information are made aware of the laws, executive orders, directives, regulations, policies, standards, and guidelines regarding the information and the restrictions imposed based on exposure to such information.' WHERE [Requirement_Id] = 37748
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N'Maintenance Policy and Procedures
Control:
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] maintenance policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the maintenance policy and the associated maintenance controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the maintenance policy and procedures; and
c. Review and update the current maintenance:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Maintenance policy and procedures address the controls in the MA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of maintenance policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to maintenance policy and procedures assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37749
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Schedule, document, and review records of maintenance, repair, and replacement of system components in accordance with manufacturer or vendor specifications and/or organizational requirements;
[a: Implementation Statement]
+b. Approve and monitor all maintenance activities, whether performed on-site or remotely and whether the system or system components are serviced on site or removed to another location;
[b: Implementation Statement]
+c. Require that System Owners or the CDO initiate the approval process for the removal of the system or system components from organizational facilities for off-site maintenance, repair, or replacement;
[c: Implementation Statement]
+d. Require that the CDO explicitly approve the removal of the system or system components from organizational facilities for off-site maintenance, repair, or replacement;
[d: Implementation Statement]
+e. Sanitize equipment in accordance with Control 3.12 Media Protection to remove information from associated media prior to removal from organizational facilities for off-site maintenance, repair, or replacement;
[e: Implementation Statement]
+f. Check all potentially impacted controls to verify that the controls are still functioning properly following maintenance, repair, or replacement actions; and
[f: Implementation Statement]
+g. Include the following information in organizational maintenance records: date and time of maintenance, a description of the maintenance performed, full names and organization of individuals or groups performing the maintenance, name of the authorized escort, and system components with associated barcode or other identifier or equipment that are removed or replaced.
[g: Implementation Statement]
+
+Related Controls: CM-2, CM-3, CM-4, CM-5, CM-8, MA-4, MP-6, PE-16, SI-2, SR-3, SR-4, SR-11
+
+h. Security Controls Enhancement(s):
[h: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Controlled Maintenance
a. Schedule, document, and review records of maintenance, repair, and replacement on system components in accordance with manufacturer or vendor specifications and/or organizational requirements;
b. Approve and monitor all maintenance activities, whether performed on site or remotely and whether the system or system components are serviced on site or removed to another location;
c. Require that [Assignment: organization-defined personnel or roles] explicitly approve the removal of the system or system components from organizational facilities for off-site maintenance, repair, or replacement;
d. Sanitize equipment to remove the following information from associated media prior to removal from organizational facilities for off-site maintenance, repair, or replacement: [Assignment: organization-defined information];
e. Check all potentially impacted controls to verify that the controls are still functioning properly following maintenance, repair, or replacement actions; and
f. Include the following information in organizational maintenance records: [Assignment: organization-defined information].
Discussion:Controlling system maintenance addresses the information security aspects of the system maintenance program and applies to all types of maintenance to system components conducted by local or nonlocal entities. Maintenance includes peripherals such as scanners, copiers, and printers. Information necessary for creating effective maintenance records includes the date and time of maintenance, a description of the maintenance performed, names of the individuals or group performing the maintenance, name of the escort, and system components or equipment that are removed or replaced. Organizations consider supply chain-related risks associated with replacement components for systems.' WHERE [Requirement_Id] = 37750
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Schedule and document maintenance, repair, and replacement actions for the system using an enterprise configuration management database (CMDB);
[1: Implementation Statement]
+(2) Conduct maintenance, repair, and replacement actions for the system using automated mechanisms whenever possible; and
[2: Implementation Statement]
+(3) Produce up-to date, accurate, and complete records of all maintenance, repair, and replacement actions requested, scheduled, in process, and completed.
[3: Implementation Statement]
+
+Related Controls: MA-3
+
+
+', [Supplemental_Info]=N' Automated Maintenance Activities
(a) Schedule, conduct, and document maintenance, repair, and replacement actions for the system using [Assignment: organization-defined automated mechanisms]; and
(b) Produce up-to date, accurate, and complete records of all maintenance, repair, and replacement actions requested, scheduled, in process, and completed.
Discussion:The use of automated mechanisms to manage and control system maintenance programs and activities helps to ensure the generation of timely, accurate, complete, and consistent maintenance records.' WHERE [Requirement_Id] = 37751
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Approve, control, and monitor the use of system maintenance tools; and
[a: Implementation Statement]
+b. Review previously approved system maintenance tools on a continual basis.
[b: Implementation Statement]
+
+Related Controls: MA-2, PE-16
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+2. Develop a Cybersecurity Assessment Plan and submit (a) an annual update, for approval, that describes how the Owner/Operator will proactively and regularly assess the effectiveness of cybersecurity measures, and identify and resolve device, network, and/or system vulnerabilities, and (b) an annual report that provides Cybersecurity Assessment Plan results from the previous year. See Section III.F. (p.3)
[2: Implementation Statement]
+', [Supplemental_Info]=N'Maintenance Tools
a. Approve, control, and monitor the use of system maintenance tools; and
b. Review previously approved system maintenance tools [Assignment: organization-defined frequency].
Discussion:Approving, controlling, monitoring, and reviewing maintenance tools address security-related issues associated with maintenance tools that are not within system authorization boundaries and are used specifically for diagnostic and repair actions on organizational systems. Organizations have flexibility in determining roles for the approval of maintenance tools and how that approval is documented. A periodic review of maintenance tools facilitates the withdrawal of approval for outdated, unsupported, irrelevant, or no-longer-used tools. Maintenance tools can include hardware, software, and firmware items and may be pre-installed, brought in with maintenance personnel on media, cloud-based, or downloaded from a website. Such tools can be vehicles for transporting malicious code, either intentionally or unintentionally, into a facility and subsequently into systems. Maintenance tools can include hardware and software diagnostic test equipment and packet sniffers. The hardware and software components that support maintenance and are a part of the system (including the software implementing utilities such as “ping,” “ls,” “ipconfig,” or the hardware and software implementing the monitoring port of an Ethernet switch) are not addressed by maintenance tools.' WHERE [Requirement_Id] = 37752
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Inspect the maintenance tools used by maintenance personnel for improper or unauthorized modifications.
[Implementation Statement]
+
+Related Controls: SI-7
+
+
+', [Supplemental_Info]=N' Inspect Tools
Inspect the maintenance tools used by maintenance personnel for improper or unauthorized modifications.
Discussion:Maintenance tools can be directly brought into a facility by maintenance personnel or downloaded from a vendor’s website. If, upon inspection of the maintenance tools, organizations determine that the tools have been modified in an improper manner or the tools contain malicious code, the incident is handled consistent with organizational policies and procedures for incident handling.' WHERE [Requirement_Id] = 37753
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Check media containing diagnostic and test programs for malicious code before the media are used in the system.
[Implementation Statement]
+
+Related Controls: SI-3
+
+
+', [Supplemental_Info]=N' Inspect Media
Check media containing diagnostic and test programs for malicious code before the media are used in the system.
Discussion:If, upon inspection of media containing maintenance, diagnostic, and test programs, organizations determine that the media contains malicious code, the incident is handled consistent with organizational incident handling policies and procedures.' WHERE [Requirement_Id] = 37754
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent the removal of maintenance equipment containing organizational information by:
[Implementation Statement]
+
+(1) Verifying that there is no organizational information contained on the equipment;
[1: Implementation Statement]
+(2) Sanitizing or destroying the equipment in accordance with Control 3.12 Media Protection;
[2: Implementation Statement]
+(3) Retaining the equipment within the facility; or
[3: Implementation Statement]
+(4) Obtaining an exemption from the CDO explicitly authorizing removal of the equipment from the facility.
[4: Implementation Statement]
+
+Related Controls: MP-6
+
+
+', [Supplemental_Info]=N' Prevent Unauthorized Removal
Prevent the removal of maintenance equipment containing organizational information by:
(a) Verifying that there is no organizational information contained on the equipment;
(b) Sanitizing or destroying the equipment;
(c) Retaining the equipment within the facility; or
(d) Obtaining an exemption from [Assignment: organization-defined personnel or roles] explicitly authorizing removal of the equipment from the facility.
Discussion:Organizational information includes all information owned by organizations and any information provided to organizations for which the organizations serve as information stewards.' WHERE [Requirement_Id] = 37755
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Inspect maintenance tools to ensure the latest software updates and patches are installed.
[Implementation Statement]
+
+Related Controls: AC-3, AC-6
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+2. Develop a Cybersecurity Assessment Plan and submit (a) an annual update, for approval, that describes how the Owner/Operator will proactively and regularly assess the effectiveness of cybersecurity measures, and identify and resolve device, network, and/or system vulnerabilities, and (b) an annual report that provides Cybersecurity Assessment Plan results from the previous year. See Section III.F. (p.3)
[2: Implementation Statement]
+', [Supplemental_Info]=N' Software Updates and Patches
Inspect maintenance tools to ensure the latest software updates and patches are installed.
Discussion:Maintenance tools using outdated and/or unpatched software can provide a threat vector for adversaries and result in a significant vulnerability for organizations.' WHERE [Requirement_Id] = 37756
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Approve and monitor nonlocal maintenance and diagnostic activities;
[a: Implementation Statement]
+b. Allow the use of nonlocal maintenance and diagnostic tools only as consistent with organizational policy and documented in the security plan for the system;
[b: Implementation Statement]
+c. Employ strong authentication in the establishment of nonlocal maintenance and diagnostic sessions;
[c: Implementation Statement]
+d. Maintain records for nonlocal maintenance and diagnostic activities; and
[d: Implementation Statement]
+e. Terminate session and network connections when nonlocal maintenance is completed.
[e: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-6, AC-17, AU-2, AU-3, IA-2, IA-4, IA-5, IA-8, MA-2, MA-5, PL-2, SC-7, SC-10
+
+f. Security Controls Enhancement(s):
[f: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Nonlocal Maintenance
a. Approve and monitor nonlocal maintenance and diagnostic activities;
b. Allow the use of nonlocal maintenance and diagnostic tools only as consistent with organizational policy and documented in the security plan for the system;
c. Employ strong authentication in the establishment of nonlocal maintenance and diagnostic sessions;
d. Maintain records for nonlocal maintenance and diagnostic activities; and
e. Terminate session and network connections when nonlocal maintenance is completed.
Discussion:Nonlocal maintenance and diagnostic activities are conducted by individuals who communicate through either an external or internal network. Local maintenance and diagnostic activities are carried out by individuals who are physically present at the system location and not communicating across a network connection. Authentication techniques used to establish nonlocal maintenance and diagnostic sessions reflect the network access requirements in IA-2. Strong authentication requires authenticators that are resistant to replay attacks and employ multi-factor authentication. Strong authenticators include PKI where certificates are stored on a token protected by a password, passphrase, or biometric. Enforcing requirements in MA-4 is accomplished, in part, by other controls. [SP 800-63B] provides additional guidance on strong authentication and authenticators.' WHERE [Requirement_Id] = 37757
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Log [Assignment: organization-defined audit events] for nonlocal maintenance and diagnostic sessions; and
[1: Implementation Statement]
+(2) Review the audit records of the maintenance and diagnostic sessions to detect anomalous behavior.
[2: Implementation Statement]
+
+Related Controls: AU-6, AU-12
+
+NIST 800-82 Rev 3:
+Rationale for adding MA-4 (1) to MOD and HIGH baselines: OT environments are often heavily dependent on nonlocal maintenance providers, so organizations should have the ability to review logs about relevant maintenance activities.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Nonlocal Maintenance | Logging and Review
(a) Log [Assignment: organization-defined audit events] for nonlocal maintenance and diagnostic sessions; and
(b) Review the audit records of the maintenance and diagnostic sessions to detect anomalous behavior.
Discussion:Audit logging for nonlocal maintenance is enforced by AU-2. Audit events are defined in AU-2a.' WHERE [Requirement_Id] = 37758
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Require that nonlocal maintenance and diagnostic services be performed from a system that implements a security capability comparable to the capability implemented on the system being serviced; or
[1: Implementation Statement]
+(2) Remove the component to be serviced from the system prior to nonlocal maintenance or diagnostic services; sanitize the component (for organizational information); and after the service is performed, inspect, and sanitize the component (for potentially malicious software) before reconnecting the component to the system.
[2: Implementation Statement]
+
+OT Systems Only:
+The organization may need access to nonlocal maintenance and diagnostic services in order to restore essential OT operations or services. Example compensating controls include limiting the extent of the maintenance and diagnostic services to the minimum essential activities, and carefully monitoring and auditing the non-local maintenance and diagnostic activities.
[OT Systems Only: Implementation Statement]
+
+Related Controls: MP-6, SI-3, SI-7
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization may need access to nonlocal maintenance and diagnostic services in order to restore essential OT operations or services. Example compensating controls include limiting the extent of the maintenance and diagnostic services to the minimum essential activities and carefully monitoring and auditing the nonlocal maintenance and diagnostic activities.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Nonlocal Maintenance | Comparable Security and Sanitization
(a) Require that nonlocal maintenance and diagnostic services be performed from a system that implements a security capability comparable to the capability implemented on the system being serviced; or
(b) Remove the component to be serviced from the system prior to nonlocal maintenance or diagnostic services; sanitize the component (for organizational information); and after the service is performed, inspect and sanitize the component (for potentially malicious software) before reconnecting the component to the system.
Discussion:Comparable security capability on systems, diagnostic tools, and equipment providing maintenance services implies that the implemented controls on those systems, tools, and equipment are at least as comprehensive as the controls on the system being serviced.' WHERE [Requirement_Id] = 37759
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish a process for maintenance personnel authorization and maintain a list of authorized maintenance organizations or personnel;
[a: Implementation Statement]
+b. Verify that non-escorted personnel performing maintenance on the system possess the required access authorizations; and
[b: Implementation Statement]
+c. Designate organizational personnel with required access authorizations and technical competence to supervise the maintenance activities of personnel who do not possess the required access authorizations.
[c: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-5, AC-6, IA-2, IA-8, MA-4, MP-2, PE-2, PE-3, PS-7, RA-3
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Maintenance Personnel
a. Establish a process for maintenance personnel authorization and maintain a list of authorized maintenance organizations or personnel;
b. Verify that non-escorted personnel performing maintenance on the system possess the required access authorizations; and
c. Designate organizational personnel with required access authorizations and technical competence to supervise the maintenance activities of personnel who do not possess the required access authorizations.
Discussion:Maintenance personnel refers to individuals who perform hardware or software maintenance on organizational systems, while PE-2 addresses physical access for individuals whose maintenance duties place them within the physical protection perimeter of the systems. Technical competence of supervising individuals relates to the maintenance performed on the systems, while having required access authorizations refers to maintenance on and near the systems. Individuals not previously identified as authorized maintenance personnel—such as information technology manufacturers, vendors, systems integrators, and consultants—may require privileged access to organizational systems, such as when they are required to conduct maintenance activities with little or no notice. Based on organizational assessments of risk, organizations may issue temporary credentials to these individuals. Temporary credentials may be for one-time use or for very limited time periods.' WHERE [Requirement_Id] = 37760
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Implement procedures for the use of maintenance personnel that lack appropriate security clearances or are not U.S. citizens, that include the following requirements:
[1: Implementation Statement]
+ (a) Maintenance personnel who do not have needed access authorizations, clearances, or formal access approvals are escorted and supervised during the performance of maintenance and diagnostic activities on the system by approved organizational personnel who are fully cleared, have appropriate access authorizations, and are technically qualified; and
[1.a: Implementation Statement]
+ (b) Personnel who do not have needed access authorizations, clearances or formal access approvals shall not be permitted to initiate maintenance or diagnostic activities on the system. All exceptions shall be authorized by the Authorizing Official (AO); and
[1.b: Implementation Statement]
+(2) Develop, document, and receive approval from the AO for any alternate controls to be implemented or used in the event a system component cannot be sanitized, removed, or disconnected from the system.
[2: Implementation Statement]
+
+Related Controls: MP-6, PL-2
+
+
+', [Supplemental_Info]=N' Individuals Without Appropriate Access
(a) Implement procedures for the use of maintenance personnel that lack appropriate security clearances or are not U.S. citizens, that include the following requirements:
(1) Maintenance personnel who do not have needed access authorizations, clearances, or formal access approvals are escorted and
supervised during the performance of maintenance and diagnostic activities on the system by approved organizational personnel who are fully
cleared, have appropriate access authorizations, and are technically qualified; and
(2) Prior to initiating maintenance or diagnostic activities by personnel who do not have needed access authorizations, clearances or formal
access approvals, all volatile information storage components within the system are sanitized and all nonvolatile storage media are removed or
physically disconnected from the system and secured; and
(b) Develop and implement [Assignment: organization-defined alternate controls] in the event a system component cannot be sanitized, removed, or disconnected from the system.
Discussion:Procedures for individuals who lack appropriate security clearances or who are not U.S. citizens are intended to deny visual and electronic access to classified or controlled unclassified information contained on organizational systems. Procedures for the use of maintenance personnel can be documented in security plans for the systems.' WHERE [Requirement_Id] = 37761
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Obtain maintenance support and/or spare parts and perform or complete maintenance activities for critical system components within the maximum tolerable downtime (MTD) specified for a system.
[Implementation Statement]
+
+Related Controls: CM-8, CP-2, CP-7, RA-7, SA-15, SI-13, SR-2, SR-3, SR-4
+
+
+', [Supplemental_Info]=N'Timely Maintenance
Obtain maintenance support and/or spare parts for [Assignment: organization-defined system components] within [Assignment: organization-defined time period] of failure.
Discussion:Organizations specify the system components that result in increased risk to organizational operations and assets, individuals, other organizations, or the Nation when the functionality provided by those components is not operational. Organizational actions to obtain maintenance support include having appropriate contracts in place.' WHERE [Requirement_Id] = 37762
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Media Protection Policy and Procedures
Control:
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] media protection policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the media protection policy and the associated media protection controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the media protection policy and procedures; and
c. Review and update the current media protection:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Media protection policy and procedures address the controls in the MP family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of media protection policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to media protection policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37763
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Restrict access to digital and non-digital media to authorized personnel with media protection responsibilities.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'Media Access
Restrict access to [Assignment: organization-defined types of digital and/or non-digital media] to [Assignment: organization-defined personnel or roles].
Discussion:System media includes digital and non-digital media. Digital media includes flash drives, diskettes, magnetic tapes, external or removable hard disk drives (e.g., solid state, magnetic), compact discs, and digital versatile discs. Non-digital media includes paper and microfilm. Denying access to patient medical records in a community hospital unless the individuals seeking access to such records are authorized healthcare providers is an example of restricting access to non-digital media. Limiting access to the design specifications stored on compact discs in the media library to individuals on the system development team is an example of restricting access to digital media.' WHERE [Requirement_Id] = 37764
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Mark system media indicating the distribution limitations, handling caveats, and applicable security markings (if any) of the information;
[a: Implementation Statement]
+b. Media that stores information deemed to be in the public domain (or to be publicly releasable) shall be exempt from media marking requirements only if approved by the AO; and
[b: Implementation Statement]
+c. All other digital and non-digital media shall be subject to media marking requirements.
[c: Implementation Statement]
+
+Related Controls: AC-19, AU-9, CP-2, CP-9, CP-10, MA-5, MP-4, MP-6, PE-2, PE-3, SC-12, SC-13, SI-12
+
+
+', [Supplemental_Info]=N'Media Marking
a. Mark system media indicating the distribution limitations, handling caveats, and applicable security markings (if any) of the information; and
b. Exempt [Assignment: organization-defined types of system media] from marking if the media remain within [Assignment: organization-defined controlled areas].
Discussion:Security marking refers to the application or use of human-readable security attributes. Digital media includes diskettes, magnetic tapes, external or removable hard disk drives (e.g., solid state, magnetic), flash drives, compact discs, and digital versatile discs. Non-digital media includes paper and microfilm. Controlled unclassified information is defined by the National Archives and Records Administration along with the appropriate safeguarding and dissemination requirements for such information and is codified in [32 CFR 2002]. Security markings are generally not required for media that contains information determined by organizations to be in the public domain or to be publicly releasable. Some organizations may require markings for public information indicating that the information is publicly releasable. System media marking reflects applicable laws, executive orders, directives, policies, regulations, standards, and guidelines.' WHERE [Requirement_Id] = 37765
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Digital and non-digital media shall be physically controlled and securely stored within authorized locked cabinets or safes in secure/controlled facilities; and
[a: Implementation Statement]
+b. Protect system media types until the media are destroyed or sanitized using approved equipment, techniques, and procedures.
[b: Implementation Statement]
+
+Related Controls: AC-19, CP-2, CP-6, CP-9, CP-10, MP-2, MP-7, PE-3, PL-2, SC-12, SC-13, SC-28, SI-12
+
+
+', [Supplemental_Info]=N'Media Storage
a. Physically control and securely store [Assignment: organization-defined types of digital and/or non-digital media] within [Assignment: organization-defined controlled areas]; and
b. Protect system media types defined in MP-4a until the media are destroyed or sanitized using approved equipment, techniques, and procedures.
Discussion:System media includes digital and non-digital media. Digital media includes flash drives, diskettes, magnetic tapes, external or removable hard disk drives (e.g., solid state, magnetic), compact discs, and digital versatile discs. Non-digital media includes paper and microfilm. Physically controlling stored media includes conducting inventories, ensuring procedures are in place to allow individuals to check out and return media to the library, and maintaining accountability for stored media. Secure storage includes a locked drawer, desk, or cabinet or a controlled media library. The type of media storage is commensurate with the security category or classification of the information on the media. Controlled areas are spaces that provide physical and procedural controls to meet the requirements established for protecting information and systems. Fewer controls may be needed for media that contains information determined to be in the public domain, publicly releasable, or have limited adverse impacts on organizations, operations, or individuals if accessed by other than authorized personnel. In these situations, physical access controls provide adequate protection.' WHERE [Requirement_Id] = 37766
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Protect and control sensitive digital media during transport outside of WMATA facilities using a FIPS 140-2 certified encryption module;
[a: Implementation Statement]
+b. Maintain accountability for sensitive system media during transport outside of controlled areas;
[b: Implementation Statement]
+c. Document activities in accordance with Control 3.8 Data Sensitivity associated with the transport of sensitive system media; and
[c: Implementation Statement]
+d. Restrict the activities as referenced in the Data Centers associated with the transport of sensitive system media to authorized personnel.
[d: Implementation Statement]
+
+Related Controls: AC-7, AC-19, CP-2, CP-9, MP-3, MP-4, PE-16, PL-2, SC-12, SC-13, SC-28
+
+In addition to the above NIST controls, the following cybersecurity requirements further define WMATA policy:
+
+1. Media Transport: Employ the following controls when using WMATA media at alternate work sites:
[1: Implementation Statement]
+ a. Controls in accordance with P/I 7.4.3 Telework Policy and associated appendices.
[1.a: Implementation Statement]
+ b. Any personnel working outside of the United States shall use virtual infrastructures to access WMATA systems and/or networks.
[1.b: Implementation Statement]
+ i) No WMATA information shall be transported or stored on physical or virtual systems or devices that are not owned and controlled by WMATA.
[1.b.i: Implementation Statement]
+ ii) Specific exemptions shall be documented for submittal and approved in advance by the AO.
[1.b.ii: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Media Transport
a. Protect and control [Assignment: organization-defined types of system media] during transport outside of controlled areas using [Assignment: organization-defined controls];
b. Maintain accountability for system media during transport outside of controlled areas;
c. Document activities associated with the transport of system media; and
d. Restrict the activities associated with the transport of system media to authorized personnel.
Discussion:System media includes digital and non-digital media. Digital media includes flash drives, diskettes, magnetic tapes, external or removable hard disk drives (e.g., solid state and magnetic), compact discs, and digital versatile discs. Non-digital media includes microfilm and paper. Controlled areas are spaces for which organizations provide physical or procedural controls to meet requirements established for protecting information and systems. Controls to protect media during transport include cryptography and locked containers. Cryptographic mechanisms can provide confidentiality and integrity protections depending on the mechanisms implemented. Activities associated with media transport include releasing media for transport, ensuring that media enters the appropriate transport processes, and the actual transport. Authorized transport and courier personnel may include individuals external to the organization. Maintaining accountability of media during transport includes restricting transport activities to authorized personnel and tracking and/or obtaining records of transport activities as the media moves through the transportation system to prevent and detect loss, destruction, or tampering. Organizations establish documentation requirements for activities associated with the transport of system media in accordance with organizational assessments of risk. Organizations maintain the flexibility to define record-keeping methods for the different types of media transport as part of a system of transport-related records.' WHERE [Requirement_Id] = 37767
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Sanitize digital media including prior to disposal, release out of organizational control, or release for reuse in alignment with NIST requirements; and
[a: Implementation Statement]
+b. Employ sanitization mechanisms with the strength and integrity commensurate with the sensitivity of the information.
[b: Implementation Statement]
+
+Related Controls: AC-3, AC-7, AU-11, MA-2, MA-3, MA-4, MA-5, PM-22, SI-12, SI-18, SI-19, SR-11
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+In addition to the above NIST controls, the following cybersecurity requirements further define WMATA policy:
+
+1. Destructive Techniques: For assets that are not sanitized, destructive techniques may be used to protect WMATA information.
[1: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Media Sanitization
a. Sanitize [Assignment: organization-defined system media] prior to disposal, release out of organizational control, or release for reuse using [Assignment: organization-defined sanitization techniques and procedures]; and
b. Employ sanitization mechanisms with the strength and integrity commensurate with the security category or classification of the information.
Discussion:Media sanitization applies to all digital and non-digital system media subject to disposal or reuse, whether or not the media is considered removable. Examples include digital media in scanners, copiers, printers, notebook computers, workstations, network components, mobile devices, and non-digital media (e.g., paper and microfilm). The sanitization process removes information from system media such that the information cannot be retrieved or reconstructed. Sanitization techniques—including clearing, purging, cryptographic erase, de-identification of personally identifiable information, and destruction—prevent the disclosure of information to unauthorized individuals when such media is reused or released for disposal. Organizations determine the appropriate sanitization methods, recognizing that destruction is sometimes necessary when other methods cannot be applied to media requiring sanitization.
Organizations use discretion on the employment of approved sanitization techniques and procedures for media that contains information deemed to be in the public domain or publicly releasable or information deemed to have no adverse impact on organizations or individuals if released for reuse or disposal. Sanitization of non-digital media includes destruction, removing a classified appendix from an otherwise unclassified document, or redacting selected sections or words from a document by obscuring the redacted sections or words in a manner equivalent in effectiveness to removing them from the document. NSA standards and policies control the sanitization process for media that contains classified information. NARA policies control the sanitization process for controlled unclassified information.
' WHERE [Requirement_Id] = 37768
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Review, approve, track, document, and verify media sanitization and disposal actions.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Review, Approve, Track, Document, and Verify
Review, approve, track, document, and verify media sanitization and disposal actions.
Discussion:Organizations review and approve media to be sanitized to ensure compliance with records retention policies. Tracking and documenting actions include listing personnel who reviewed and approved sanitization and disposal actions, types of media sanitized, files stored on the media, sanitization methods used, date and time of the sanitization actions, personnel who performed the sanitization, verification actions taken and personnel who performed the verification, and the disposal actions taken. Organizations verify that the sanitization of the media was effective prior to disposal.' WHERE [Requirement_Id] = 37769
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Test sanitization equipment and procedures annually to ensure that the intended sanitization is being achieved.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Equipment Testing
Test sanitization equipment and procedures [Assignment: organization-defined frequency] to ensure that the intended sanitization is being achieved.
Discussion:Testing of sanitization equipment and procedures may be conducted by qualified and authorized external entities, including federal agencies or external service providers.' WHERE [Requirement_Id] = 37770
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Apply nondestructive sanitization techniques to portable storage devices including internal and external hard disk drives (e.g., solid state, magnetic), optical discs, magnetic or optical tapes, flash memory devices, flash memory cards, and other external or removable disks prior to connecting such devices to the system.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Nondestructive Techniques
Apply nondestructive sanitization techniques to portable storage devices prior to connecting such devices to the system under the following circumstances: [Assignment: organization-defined circumstances requiring sanitization of portable storage devices].
Discussion:Portable storage devices include external or removable hard disk drives (e.g., solid state, magnetic), optical discs, magnetic or optical tapes, flash memory devices, flash memory cards, and other external or removable disks. Portable storage devices can be obtained from untrustworthy sources and contain malicious code that can be inserted into or transferred to organizational systems through USB ports or other entry portals. While scanning storage devices is recommended, sanitization provides additional assurance that such devices are free of malicious code. Organizations consider nondestructive sanitization of portable storage devices when the devices are purchased from manufacturers or vendors prior to initial use or when organizations cannot maintain a positive chain of custody for the devices.' WHERE [Requirement_Id] = 37771
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Supplemental_Info]=N'Field Maintenance
Restrict or prohibit field maintenance on [Assignment: organization-defined systems or system components] to [Assignment: organization-defined trusted maintenance facilities].
Discussion:Field maintenance is the type of maintenance conducted on a system or system component after the system or component has been deployed to a specific site (i.e., operational environment). In certain instances, field maintenance (i.e., local maintenance at the site) may not be executed with the same degree of rigor or with the same quality control checks as depot maintenance. For critical systems designated as such by the organization, it may be necessary to restrict or prohibit field maintenance at the local site and require that such maintenance be conducted in trusted facilities with additional controls.' WHERE [Requirement_Id] = 37772
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Restrict the use of disk drives, diskettes, internal and external hard drives, and portable devices, including backup media, removable media, and mobile devices on information systems or system components using security safeguards; and
[a: Implementation Statement]
+b. Prohibit the use of non-WMATA-issued portable storage devices in organizational systems when such devices have no identifiable owner.
[b: Implementation Statement]
+
+Related Controls: AC-19, AC-20, PL-4, PM-12, SC-41
+
+In addition to the above NIST controls, the following cybersecurity requirements further define WMATA policy:
+
+1. Destructive Techniques: For assets that are not sanitized, destructive techniques may be used to protect WMATA information.
[1: Implementation Statement]
+
+
+
+
+', [Supplemental_Info]=N'Media Use
a. [Selection: Restrict; Prohibit] the use of [Assignment: organization-defined types of system media] on [Assignment: organization-defined systems or system components] using [Assignment: organization-defined controls]; and
b. Prohibit the use of portable storage devices in organizational systems when such devices have no identifiable owner.
Discussion:System media includes both digital and non-digital media. Digital media includes diskettes, magnetic tapes, flash drives, compact discs, digital versatile discs, and removable hard disk drives. Non-digital media includes paper and microfilm. Media use protections also apply to mobile devices with information storage capabilities. In contrast to MP-2, which restricts user access to media, MP-7 restricts the use of certain types of media on systems, for example, restricting or prohibiting the use of flash drives or external hard disk drives. Organizations use technical and nontechnical controls to restrict the use of system media. Organizations may restrict the use of portable storage devices, for example, by using physical cages on workstations to prohibit access to certain external ports or disabling or removing the ability to insert, read, or write to such devices. Organizations may also limit the use of portable storage devices to only approved devices, including devices provided by the organization, devices provided by other approved organizations, and devices that are not personally owned. Finally, organizations may restrict the use of portable storage devices based on the type of device, such as by prohibiting the use of writeable, portable storage devices and implementing this restriction by disabling or removing the capability to write to such devices. Requiring identifiable owners for storage devices reduces the risk of using such devices by allowing organizations to assign responsibility for addressing known vulnerabilities in the devices.' WHERE [Requirement_Id] = 37773
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+OT Systems Only:
+The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems. The OT components can be distributed over a large facility footprint or geographic area and can be any entry point into the entire organizational network OT. Regulatory controls may also apply.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AT-3, PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems. The OT components can be distributed over a large facility footprint or geographic area and can be an entry point into the entire organizational network OT. Regulatory controls may also apply.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Physical and Environmental Protection Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] physical and environmental protection policy
that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the physical and environmental protection policy and the associated physical and
environmental protection controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the physical and environmental protection policy and procedures; and
c. Review and update the current physical and environmental protection:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Physical and environmental protection policy and procedures address the controls in the PE family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of physical and environmental protection policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to physical and environmental protection policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37774
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide the capability of shutting off power to systems or individual system components in emergency situations for facilities with concentrations of system resources (e.g., data centers, mainframe computer rooms, server rooms, and areas with computer-controlled machinery);
[a: Implementation Statement]
+b. Place emergency shutoff switches or devices in accessible locations to facilitate access for authorized personnel;
[b: Implementation Statement]
+c. Protect emergency power shutoff capability from unauthorized activation; and
[c: Implementation Statement]
+d. Appoint a WMATA employee or contractor to manage all emergency shutoff capabilities.
[d: Implementation Statement]
+
+OT Systems Only:
+It may not be possible or advisable to shut off power to some OT. The
[organization-defined parameters] for this control should be implemented in consultation with safety and operational personnel. Example compensating controls include failing to a known state and emergency procedures.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PE-15
+
+NIST 800-82 Rev 3:
+OT Discussion: It may not be possible or advisable to shut off power to some OT. The organizational-defined parameters for this control should be implemented in consultation with safety and operational personnel. Example compensating controls include failing to a known state and emergency procedures.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Emergency Shutoff
a. Provide the capability of shutting off power to [Assignment: organization-defined system or individual system components] in emergency situations;
b. Place emergency shutoff switches or devices in [Assignment: organization-defined location by system or system component] to facilitate access for authorized personnel; and
c. Protect emergency power shutoff capability from unauthorized activation.
Discussion:Emergency power shutoff primarily applies to organizational facilities that contain concentrations of system resources, including data centers, mainframe computer rooms, server rooms, and areas with computer-controlled machinery.' WHERE [Requirement_Id] = 37775
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide an uninterruptible power supply to facilitate an orderly shutdown of the system and transition of the system to long-term alternate power in the event of a primary power source loss; and
[a: Implementation Statement]
+b. Appoint a WMATA employee or contractor to manage all emergency power capabilities.
[b: Implementation Statement]
+
+Related Controls: AT-3, CP-2, CP-7
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Emergency Power
Provide an uninterruptible power supply to facilitate [Selection (one or more): an orderly shutdown of the system; transition of the system to long-term alternate power] in the event of a primary power source loss.
Discussion:An uninterruptible power supply (UPS) is an electrical system or mechanism that provides emergency power when there is a failure of the main power source. A UPS is typically used to protect computers, data centers, telecommunication equipment, or other electrical equipment where an unexpected power disruption could cause injuries, fatalities, serious mission or business disruption, or loss of data or information. A UPS differs from an emergency power system or backup generator in that the UPS provides near-instantaneous protection from unanticipated power interruptions from the main power source by providing energy stored in batteries, supercapacitors, or flywheels. The battery duration of a UPS is relatively short but provides sufficient time to start a standby power source, such as a backup generator, or properly shut down the system.' WHERE [Requirement_Id] = 37776
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) WMATA shall provide an automatic alternate power supply for systems to ensure required operational capability in the event of an extended loss of the primary power source.
[1: Implementation Statement]
+(2) In the event both the primary and alternate power supply, a graceful shutdown of the system shall occur in accordance with Control 3.19 System and Services Acquisition control.
[2: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Alternate Power Supply — Minimal Operational Capability
Provide an alternate power supply for the system that is activated [Selection: manually; automatically] and that can maintain minimally required operational capability in the event of an extended loss of the primary power source.
Discussion:Provision of an alternate power supply with minimal operating capability can be satisfied by accessing a secondary commercial power supply or other external power supply.' WHERE [Requirement_Id] = 37777
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide an alternate power supply for the system that is activated
[Selection: manually; automatically] and that is:
[Implementation Statement]
+
+(1) Self-contained;
[1: Implementation Statement]
+(2) Not reliant on external power generation; and
[2: Implementation Statement]
+(3) Capable of maintaining
[Selection: minimally required operational capability; full operational capability] in the event of an extended loss of the primary power source.
[3: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Alternate Power Supply – Self-Contained
Provide an alternate power supply for the system that is activated [Selection: manually; automatically] and that is:
(a) Self-contained;
(b) Not reliant on external power generation; and
(c) Capable of maintaining [Selection: minimally required operational capability; full operational capability] in the event of an extended loss of the primary power source.
Discussion:The provision of a long-term, self-contained power supply can be satisfied by using one or more generators with sufficient capacity to meet the needs of the organization.' WHERE [Requirement_Id] = 37778
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ and maintain automatic emergency lighting for the system that activates in the event of a power outage or disruption and that covers emergency exits and evacuation routes within the facility.
[Implementation Statement]
+
+Related Controls: CP-2, CP-7
+
+
+', [Supplemental_Info]=N'Emergency Lighting
Employ and maintain automatic emergency lighting for the system that activates in the event of a power outage or disruption and that covers emergency exits and evacuation routes within the facility.
Discussion:The provision of emergency lighting applies primarily to organizational facilities that contain concentrations of system resources, including data centers, server rooms, and mainframe computer rooms. Emergency lighting provisions for the system are described in the contingency plan for the organization. If emergency lighting for the system fails or cannot be provided, organizations consider alternate processing sites for power-related contingencies.' WHERE [Requirement_Id] = 37779
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Employ and maintain fire detection and suppression systems that are supported by an independent energy source.
[a: Implementation Statement]
+
+OT Systems Only:
+Fire suppression mechanisms should take the OT environment into account (e.g., water sprinkler systems could be hazardous in specific environments).
[OT Systems Only: Implementation Statement]
+
+Related Controls: AT-3
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Fire suppression mechanisms should take the OT environment into account (e.g., water sprinkler systems could be hazardous in specific environments).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Fire Protection
Employ and maintain fire detection and suppression systems that are supported by an independent energy source.
Discussion:The provision of fire detection and suppression systems applies primarily to organizational facilities that contain concentrations of system resources, including data centers, server rooms, and mainframe computer rooms. Fire detection and suppression systems that may require an independent energy source include sprinkler systems and smoke detectors. An independent energy source is an energy source, such as a microgrid, that is separate, or can be separated, from the energy sources providing power for the other parts of the facility.' WHERE [Requirement_Id] = 37780
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ fire detection systems that activate automatically and notify MTPD, Office of Emergency Management, Facilities, MEMC, Cyber Fusion Center, and emergency responders in the event of a fire.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Detection Systems – Automatic Activation and Notification
Employ fire detection systems that activate automatically and notify [Assignment: organization-defined personnel or roles] and [Assignment: organization-defined emergency responders] in the event of a fire.
Discussion:Organizations can identify personnel, roles, and emergency responders if individuals on the notification list need to have access authorizations or clearances (e.g., to enter to facilities where access is restricted due to the classification or impact level of information within the facility). Notification mechanisms may require independent energy sources to ensure that the notification capability is not adversely affected by the fire.' WHERE [Requirement_Id] = 37781
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ fire suppression systems that activate automatically and notify MTPD, Office of Emergency Management, Facilities, MEMC, Cyber Fusion Center, and emergency responders.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Suppression Systems – Automatic Activation and Notification
(a) Employ fire suppression systems that activate automatically and notify [Assignment: organization-defined personnel or roles] and [Assignment: organization-defined emergency responders]; and
(b) Employ an automatic fire suppression capability when the facility is not staffed on a continuous basis.
Discussion:Organizations can identify specific personnel, roles, and emergency responders if individuals on the notification list need to have appropriate access authorizations and/or clearances (e.g., to enter to facilities where access is restricted due to the impact level or classification of information within the facility). Notification mechanisms may require independent energy sources to ensure that the notification capability is not adversely affected by the fire.' WHERE [Requirement_Id] = 37782
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Maintain temperature, humidity, pressure, radiation, and other applicable environmental control levels within facilities that contain concentrations of system resources (e.g., data centers, mainframe computer rooms, and server rooms) where systems reside at [Assignment: organization-defined acceptable levels]; and
[Implementation Statement]
+
+b. Monitor environmental control levels at least twice daily.
[b: Implementation Statement]
+
+OT Systems Only:
+Temperature and humidity controls are typically components of other OT systems such as the HVAC, process, or lighting systems, or can be a standalone and unique OT system. OT can operate in extreme environments and both interior and exterior locations. For a specific OT, the temperature and humidity design and operational parameters dictate the performance specifications. As OT and IT become interconnected and the network provides connectivity across the hybrid domain, power circuits, distribution closets, routers, and switches that support fire protection and life safety systems must be maintained at the proper temperature and humidity. When environmental controls cannot be implemented, use hardware that is engineered to withstand the unique environmental hazards.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AT-3, CP-2
+
+NIST 800-82 Rev 3:
+OT Discussion: Temperature and humidity controls are typically components of other OT systems (e.g., HVAC, process, or lighting systems) or can be a stand-alone and unique OT system. OT can operate in extreme environments and both interior and exterior locations. For a specific OT, the temperature and humidity design and operational parameters dictate the performance specifications. Power circuits, distribution closets, routers, and switches that support fire protection and life safety systems must be maintained at the proper temperature and humidity. When environmental controls cannot be implemented, use hardware that is engineered to withstand the OT’s unique environmental hazards.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Environmental Controls
a. Maintain [Selection (one or more): temperature; humidity; pressure; radiation; [Assignment: organization-defined environmental control]] levels within the facility where the system resides at [Assignment: organization-defined acceptable levels]; and
b. Monitor environmental control levels [Assignment: organization-defined frequency].
Discussion:The provision of environmental controls applies primarily to organizational facilities that contain concentrations of system resources (e.g., data centers, mainframe computer rooms, and server rooms). Insufficient environmental controls, especially in very harsh environments, can have a significant adverse impact on the availability of systems and system components that are needed to support organizational mission and business functions.' WHERE [Requirement_Id] = 37783
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Protect systems from damage resulting from water leakage by providing master shutoff or isolation valves that are accessible, working properly, and known to key personnel.
[a: Implementation Statement]
+
+OT Systems Only:
+Water damage protection and use of shutoff and isolation valves is both a procedural action and a specific type of OT. OT used in the manufacturing, hydropower, transportation/navigation, water, and wastewater industries rely on the movement of water and are specifically designed to manage the quantity/flow and pressure of water. As OT and IT become interconnected and the network provides connectivity across the hybrid domain, power circuits, distribution closets, routers and switches that support fire protection and life safety systems should ensure that water will not disable the system (e.g., a fire that activates the sprinkler system does not spray onto the fire control servers, router, switches and short out the alarms, egress systems, emergency lighting, and suppression systems).
[OT Systems Only: Implementation Statement]
+
+Related Controls: AT-3, PE-10
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Water damage protection and the use of shutoff and isolation valves are procedural actions and specific types of OT. OT used in the manufacturing, hydropower, transportation/navigation, water, and wastewater industries rely on the movement of water and are specifically designed to manage the quantity, flow, and pressure of water. Power circuits, distribution closets, routers, and switches that support fire protection and life safety systems should ensure that water will not disable the system (e.g., a fire that activates the sprinkler system does not spray onto the fire control servers, routers, or switches or short out the alarms, egress systems, emergency lighting, or suppression systems).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Water Damage Protection
Protect the system from damage resulting from water leakage by providing master shutoff or isolation valves that are accessible, working properly, and known to key personnel.
Discussion:The provision of water damage protection primarily applies to organizational facilities that contain concentrations of system resources, including data centers, server rooms, and mainframe computer rooms. Isolation valves can be employed in addition to or in lieu of master shutoff valves to shut off water supplies in specific areas of concern without affecting entire organizations.' WHERE [Requirement_Id] = 37784
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Detect the presence of water near the system and alert MTPD, Office of Emergency Management, Facilities, MEMC, and Cyber Fusion Center using automated mechanisms.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automation Support
Detect the presence of water near the system and alert [Assignment: organization-defined personnel or roles] using [Assignment: organization-defined automated mechanisms].
Discussion:Automated mechanisms include notification systems, water detection sensors, and alarms.' WHERE [Requirement_Id] = 37785
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Authorize and control systems and system components that enter or exit facilities or secured areas to include areas designated for delivery, maintenance/service, or media libraries.
[a: Implementation Statement]
+b. Maintain records of the system components in an organizational asset management system.
[b: Implementation Statement]
+
+Related Controls: CM-3, CM-8, MA-2, MA-3, MP-5, SR-2, SR-3, SR-4, SR-6
+
+
+', [Supplemental_Info]=N'Delivery and Removal
a. Authorize and control [Assignment: organization-defined types of system components] entering and exiting the facility; and
b. Maintain records of the system components.
Discussion:Enforcing authorizations for entry and exit of system components may require restricting access to delivery areas and isolating the areas from the system and media libraries.' WHERE [Requirement_Id] = 37786
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Determine and document approved alternate work sites allowed for use by employees during contingency operations;
[a: Implementation Statement]
+b. Employ the following controls at alternate work sites:
[b: Implementation Statement]
+ i) Use of facilities not owned or operated by WMATA and not covered in accordance with P/I 7.4 Telework Policy are subject to approval for operating or accessing systems by the AO; and
[b.i: Implementation Statement]
+ ii) For alternate work sites without access to MetroNet, personnel shall only connect to MetroNet using approved secure means (e.g., Virtual Private Network (VPN), Virtual Desktop Infrastructure (VDI), etc.).
[b.ii: Implementation Statement]
+c. Assess the effectiveness of controls at alternate work sites; and
[c: Implementation Statement]
+d. Provide a means for employees to communicate with information security and privacy personnel in case of incidents.
[d: Implementation Statement]
+
+Related Controls: AC-17, AC-18, CP-7
+
+
+', [Supplemental_Info]=N'Alternate Work Site
a. Determine and document the [Assignment: organization-defined alternate work sites] allowed for use by employees;
b. Employ the following controls at alternate work sites: [Assignment: organization-defined controls];
c. Assess the effectiveness of controls at alternate work sites; and
d. Provide a means for employees to communicate with information security and privacy personnel in case of incidents.
Discussion:While distinct from alternative processing sites, alternate work sites can provide readily available alternate locations during contingency operations. Organizations can define different sets of controls for specific alternate work sites or types of sites depending on the work-related activities conducted at the sites. Implementing and assessing the effectiveness of organization-defined controls and providing a means to communicate incidents at alternate work sites supports the contingency planning activities of organizations.' WHERE [Requirement_Id] = 37787
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Position system components within the facility to minimize potential damage from physical and environmental hazards and to minimize the opportunity for unauthorized access.
[Implementation Statement]
+
+Related Controls: CP-2, PE-5, RA-3
+
+
+', [Supplemental_Info]=N'Location of System Components
Position system components within the facility to minimize potential damage from [Assignment: organization-defined physical and environmental hazards] and to minimize the opportunity for unauthorized access.
Discussion:Physical and environmental hazards include floods, fires, tornadoes, earthquakes, hurricanes, terrorism, vandalism, an electromagnetic pulse, electrical interference, and other forms of incoming electromagnetic radiation. Organizations consider the location of entry points where unauthorized individuals, while not being granted access, might nonetheless be near systems. Such proximity can increase the risk of unauthorized access to organizational communications using wireless packet sniffers or microphones, or unauthorized disclosure of information.' WHERE [Requirement_Id] = 37788
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop, approve, and maintain a list of employees and contractors with authorized access to the facility and sensitive area where systems reside;
[a: Implementation Statement]
+b. Issue authorization credentials for facility and sensitive area access;
[b: Implementation Statement]
+c. Review the access list detailing authorized facility and sensitive area access by individuals quarterly; and
[c: Implementation Statement]
+d. Remove individuals from facility and sensitive area access lists when access is no longer required.
[d: Implementation Statement]
+
+Related Controls: AT-3, AU-9, IA-4, MA-5, MP-2, PE-3, PE-4, PE-5, PE-8, PM-12, PS-3, PS-4, PS-5, PS-6
+
+
+', [Supplemental_Info]=N'Physical Access Authorizations
a. Develop, approve, and maintain a list of individuals with authorized access to the facility where the system resides;
b. Issue authorization credentials for facility access;
c. Review the access list detailing authorized facility access by individuals [Assignment: organization-defined frequency]; and
d. Remove individuals from the facility access list when access is no longer required.
Discussion:Physical access authorizations apply to employees and visitors. Individuals with permanent physical access authorization credentials are not considered visitors. Authorization credentials include ID badges, identification cards, and smart cards. Organizations determine the strength of authorization credentials needed consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Physical access authorizations may not be necessary to access certain areas within facilities that are designated as publicly accessible.' WHERE [Requirement_Id] = 37789
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ [Assignment: organization-defined protective measures] against electromagnetic pulse damage for [Assignment: organization-defined systems and system components].
[Implementation Statement]
+
+OT Systems Only:
+Organizations managing OT equipment may choose to utilize electromagnetic (EM) pulse protection to prevent adversarial or environmental EM threats. Organizations may select to follow National Coordinating Center for Communications (NCC) guidelines on EM pulse protection.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PE-18
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations that manage OT equipment may choose to utilize EMP protection to prevent adversarial or environmental electromagnetic threats. Organizations may select to follow National Coordinating Center for Communications (NCC) guidelines on EM pulse protection.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Electromagnetic Pulse Protection
Employ [Assignment: organization-defined protective measures] against electromagnetic pulse damage for [Assignment: organization-defined systems and system components].
Discussion:An electromagnetic pulse (EMP) is a short burst of electromagnetic energy that is spread over a range of frequencies. Such energy bursts may be natural or man-made. EMP interference may be disruptive or damaging to electronic equipment. Protective measures used to mitigate EMP risk include shielding, surge suppressors, ferro-resonant transformers, and earth grounding. EMP protection may be especially significant for systems and applications that are part of the U.S. critical infrastructure.' WHERE [Requirement_Id] = 37790
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Mark [Assignment: organization-defined system hardware components] indicating the impact level or classification level of the information permitted to be processed, stored, or transmitted by the hardware component.
[Implementation Statement]
+
+OT Systems Only:
+Hardware components are marked or labeled to indicate which information is processed, stored, or transmitted. Component markings can be useful in differentiating between safety and control systems, OT and IT equipment, and internally and externally connected systems. Marking components reduces the probability of mismanaging the system or performing maintenance on an incorrect device.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-4, MP-3
+
+NIST 800-82 Rev 3:
+OT Discussion: Hardware components are marked or labeled to indicate information that is processed, stored, or transmitted. Component markings can be useful for differentiating between safety and control systems, OT and IT equipment, and internally and externally connected systems. Marking components reduces the probability of mismanaging the system or performing maintenance on an incorrect device.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding PE-22 to MOD and HIGH baselines: OT is unique in that it may look like an IT component but perform a very different function. Visible differentiation between components that perform different functions can help reduce reliability incidents due to maintenance errors.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Component Marking
Mark [Assignment: organization-defined system hardware components] indicating the impact level or classification level of the information permitted to be processed, stored, or transmitted by the hardware component.
Discussion:Hardware components that may require marking include input and output devices. Input devices include desktop and notebook computers, keyboards, tablets, and smart phones. Output devices include printers, monitors/video displays, facsimile machines, scanners, copiers, and audio devices. Permissions controlling output to the output devices are addressed in AC-3 or AC-4. Components are marked to indicate the impact level or classification level of the system to which the devices are connected, or the impact level or classification level of the information permitted to be output. Security marking refers to the use of human-readable security attributes. Security labeling refers to the use of security attributes for internal system data structures. Security marking is generally not required for hardware components that process, store, or transmit information determined by organizations to be in the public domain or to be publicly releasable. However, organizations may require markings for hardware components that process, store, or transmit public information in order to indicate that such information is publicly releasable. Marking of system hardware components reflects applicable laws, executive orders, directives, policies, regulations, and standards.' WHERE [Requirement_Id] = 37791
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Enforce physical access authorizations at entry and exit points to facilities and sensitive areas where systems reside by:
[a: Implementation Statement]
+ i) Verifying individual access authorizations before granting access to the facility and sensitive areas; and
[a.i: Implementation Statement]
+ ii) Controlling ingress and egress to the facility and sensitive areas using physical access control personnel (e.g., guards), or systems and devices.
[a.ii: Implementation Statement]
+b. Maintain physical access audit logs for all controlled entry or exit points for all facilities, and secured areas within facilities to include those secured areas listed in accordance with Control 3.14 Physical and Environmental Protection, Section 4, “PE-4 Access Control for Transmission” and areas that store, process or transmit sensitive information in accordance with Control 3.8 Data Sensitivity;
[b: Implementation Statement]
+c. Control access to areas within the facility designated as publicly accessible by implementing the following controls: physical access control logs/records, guards, and physical access devices and barriers to prevent movement from publicly accessible areas to non-public areas;
[c: Implementation Statement]
+d. WMATA employees shall escort visitors and control visitor activity at all times;
[d: Implementation Statement]
+e. Secure keys, combinations, and other physical access devices;
[e: Implementation Statement]
+f. Inventory and centrally manage physical access devices to include keys, locks, combinations, safes, biometric readers, and card readers and systems every year; and
[f: Implementation Statement]
+g. Change combinations and keys annually and/or when keys are lost, combinations are compromised, or when individuals possessing the keys or combinations are transferred or terminated.
[g: Implementation Statement]
+
+OT Systems Only:
+The organization considers OT safety and security interdependencies. The organization considers access requirements in emergency situations. During an emergency-related event, the organization may restrict access to OT facilities and assets to authorized individuals only. OT systems are often constructed of devices that either do not have or cannot use comprehensive access control capabilities due to time-restrictive safety constraints. Physical access controls and defense-in-depth measures are used by the organization when necessary and possible to supplement OT security when electronic mechanisms are unable to fulfill the security requirements of the organization’s security plan.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AT-3, AU-2, AU-6, AU-9, CP-10, IA-3, IA-8, MA-5, MP-2, MP-4, PE-2, PE-4, PE-5, PE-8, PS-2, PS-3, PS-6, PS-7, RA-3, SC-28, SI-4, SR-3
+
+h. Security Controls Enhancement(s):
[h: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization considers OT safety and security interdependencies and access requirements in emergency situations. During an emergency, the organization may restrict access to OT facilities and assets to authorized individuals only. OT systems are often constructed of devices that do not have or cannot use comprehensive access control capabilities due to timerestrictive safety constraints. Physical access controls and defense-in-depth measures are used by the organization when necessary and possible to supplement OT security when electronic mechanisms are unable to fulfill the security requirements of the organization’s security plan.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+', [Supplemental_Info]=N'Physical Access Control
a. Enforce physical access authorizations at [Assignment: organization-defined entry and exit points to the facility where the system resides] by:
1. Verifying individual access authorizations before granting access to the facility; and
2. Controlling ingress and egress to the facility using [Selection (one or more): [Assignment: organization-defined physical access control
systems or devices]; guards];
b. Maintain physical access audit logs for [Assignment: organization-defined entry or exit points];
c. Control access to areas within the facility designated as publicly accessible by implementing the following controls: [Assignment: organization-defined physical access controls];
d. Escort visitors and control visitor activity [Assignment: organization-defined circumstances requiring visitor escorts and control of visitor activity];
e. Secure keys, combinations, and other physical access devices;
f. Inventory [Assignment: organization-defined physical access devices] every [Assignment: organization-defined frequency]; and
g. Change combinations and keys [Assignment: organization-defined frequency] and/or when keys are lost, combinations are compromised, or when individuals possessing the keys or combinations are transferred or terminated.
Discussion:Physical access control applies to employees and visitors. Individuals with permanent physical access authorizations are not considered visitors. Physical access controls for publicly accessible areas may include physical access control logs/records, guards, or physical access devices and barriers to prevent movement from publicly accessible areas to non-public areas. Organizations determine the types of guards needed, including professional security staff, system users, or administrative staff. Physical access devices include keys, locks, combinations, biometric readers, and card readers. Physical access control systems comply with applicable laws, executive orders, directives, policies, regulations, standards, and guidelines. Organizations have flexibility in the types of audit logs employed. Audit logs can be procedural, automated, or some combination thereof. Physical access points can include facility access points, interior access points to systems that require supplemental access controls, or both. Components of systems may be in areas designated as publicly accessible with organizations controlling access to the components.' WHERE [Requirement_Id] = 37792
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Enforce physical access authorizations to systems and applicable system components in addition to the physical access controls for the facility.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' System Access
Enforce physical access authorizations to the system in addition to the physical access controls for the facility at [Assignment: organization-defined physical spaces containing one or more components of the system].
Discussion:Control of physical access to the system provides additional physical security for those areas within facilities where there is a concentration of system components.' WHERE [Requirement_Id] = 37793
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Control physical access to system distribution and transmission lines within organizational facilities using security controls to include disconnected or locked spare jacks, locked wiring closets, protection of cabling by conduit or cable trays, and wiretapping sensors.
[Implementation Statement]
+
+Related Controls: AT-3, IA-4, MP-2, MP-4, PE-2, PE-3, PE-5, PE-9, SC-7, SC-8
+
+
+', [Supplemental_Info]=N'Access Control for Transmission
Control physical access to [Assignment: organization-defined system distribution and transmission lines] within organizational facilities using [Assignment: organization-defined security controls].
Discussion:Security controls applied to system distribution and transmission lines prevent accidental damage, disruption, and physical tampering. Such controls may also be necessary to prevent eavesdropping or modification of unencrypted transmissions. Security controls used to control physical access to system distribution and transmission lines include disconnected or locked spare jacks, locked wiring closets, protection of cabling by conduit or cable trays, and wiretapping sensors.' WHERE [Requirement_Id] = 37794
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Control physical access to output devices which display sensitive information (e.g., rail command and control, law enforcement sensitive, etc.) or display devices processing internal or sensitive information visible to the general public to prevent unauthorized individuals from obtaining output. Ensure that output devices are:
[Implementation Statement]
+
+a. Located in locked rooms or other secured areas that only allow access to authorized individuals;
[a: Implementation Statement]
+b. Placed in locations that can be monitored by authorized personnel; and
[b: Implementation Statement]
+c. Installed with monitor or screen filters (when applicable).
[c: Implementation Statement]
+
+Related Controls: PE-2, PE-3, PE-4, PE-18
+
+
+', [Supplemental_Info]=N'Access Control for Output Devices
Control physical access to output from [Assignment: organization-defined output devices] to prevent unauthorized individuals from obtaining the output.
Discussion:Controlling physical access to output devices includes placing output devices in locked rooms or other secured areas with keypad or card reader access controls and allowing access to authorized individuals only, placing output devices in locations that can be monitored by personnel, installing monitor or screen filters, and using headphones. Examples of output devices include monitors, printers, scanners, audio devices, facsimile machines, and copiers.' WHERE [Requirement_Id] = 37795
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Implement layered physical security controls to provide authorized access to facilities and systems;
[a: Implementation Statement]
+b. Monitor physical access to the facility where systems reside to detect and respond to physical security incidents;
[b: Implementation Statement]
+c. Review physical access logs monthly and upon occurrence of indications of security violations, suspicious physical access activities, and when notified of suspicious logical access activities that can be correlated with physical access control events; and
[c: Implementation Statement]
+d. Coordinate results of reviews and investigations with the organizational incident response capability.
[d: Implementation Statement]
+
+Related Controls: AU-2, AU-6, AU-9, AU-12, CA-7, CP-10, IR-4, IR-8
+
+e. Security Controls Enhancement(s):
[e: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Monitoring Physical Access
a. Monitor physical access to the facility where the system resides to detect and respond to physical security incidents;
b. Review physical access logs [Assignment: organization-defined frequency] and upon occurrence of [Assignment: organization-defined events or potential indications of events]; and
c. Coordinate results of reviews and investigations with the organizational incident response capability.
Discussion:Physical access monitoring includes publicly accessible areas within organizational facilities. Examples of physical access monitoring include the employment of guards, video surveillance equipment (i.e., cameras), and sensor devices. Reviewing physical access logs can help identify suspicious activity, anomalous events, or potential threats. The reviews can be supported by audit logging controls, such as AU-2, if the access logs are part of an automated system. Organizational incident response capabilities include investigations of physical security incidents and responses to the incidents. Incidents include security violations or suspicious physical access activities. Suspicious physical access activities include accesses outside of normal work hours, repeated accesses to areas not normally accessed, accesses for unusual lengths of time, and out-of-sequence accesses.' WHERE [Requirement_Id] = 37796
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Monitor physical access to the facility where systems reside using physical intrusion alarms and surveillance equipment.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Intrusion Alarms and Surveillance Equipment
Monitor physical access to the facility where the system resides using physical intrusion alarms and surveillance equipment.
Discussion:Physical intrusion alarms can be employed to alert security personnel when unauthorized access to the facility is attempted. Alarm systems work in conjunction with physical barriers, physical access control systems, and security guards by triggering a response when these other forms of security have been compromised or breached. Physical intrusion alarms can include different types of sensor devices, such as motion sensors, contact sensors, and broken glass sensors. Surveillance equipment includes video cameras installed at strategic locations throughout the facility.' WHERE [Requirement_Id] = 37797
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Monitor physical access to systems in addition to the physical access monitoring of the facility at physical spaces containing one or more components of the system.
[Implementation Statement]
+
+NIST 800-82 Rev 3:
+Rationale for adding PE-6 (4) to MOD baseline: Many of the OT components are in remote geographical and dispersed locations. Other components may be in ceilings, floors, or distribution closets. Furthermore, physical access controls are frequently used as compensating controls when devices lack the ability to enforce logical access restrictions.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Monitoring Physical Access | Monitoring Physical Access to Systems
Monitor physical access to the system in addition to the physical access monitoring of the facility at [Assignment: organization-defined physical spaces containing one or more components of the system].
Discussion:Monitoring physical access to systems provides additional monitoring for those areas within facilities where there is a concentration of system components, including server rooms, media storage areas, and communications centers. Physical access monitoring can be coordinated with intrusion detection systems and system monitoring capabilities to provide comprehensive and integrated threat coverage for the organization.' WHERE [Requirement_Id] = 37798
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Maintain visitor access records to the facility where the system resides for five years. Visitor access records include the names and organizations of individuals visiting, visitor signatures, forms of identification, dates of access, entry and departure times, purpose of visits, and the names and organizations of individuals visited.
[a: Implementation Statement]
+b. Review visitor access records for sensitive areas within the facility where systems reside monthly. Access record reviews determine if access authorizations were and still are required to support organizational mission and business functions.
[b: Implementation Statement]
+c. Report anomalies in visitor access records to MTPD. In addition, all anomalies for sensitive areas that house systems shall be reported to Metro Enterprise Monitoring Center (MEMC) and the Cyber Fusion Center.
[c: Implementation Statement]
+
+Related Controls: PE-2, PE-3, PE-6
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Visitor Access Records
a. Maintain visitor access records to the facility where the system resides for [Assignment: organization-defined time period];
b. Review visitor access records [Assignment: organization-defined frequency]; and
c. Report anomalies in visitor access records to [Assignment: organization-defined personnel].
Discussion:Visitor access records include the names and organizations of individuals visiting, visitor signatures, forms of identification, dates of access, entry and departure times, purpose of visits, and the names and organizations of individuals visited. Access record reviews determine if access authorizations are current and are still required to support organizational mission and business functions. Access records are not required for publicly accessible areas.' WHERE [Requirement_Id] = 37799
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Maintain and review visitor access records using automated mechanisms.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Records Maintenance and Review
Maintain and review visitor access records using [Assignment: organization-defined automated mechanisms].
Discussion:Visitor access records may be stored and maintained in a database management system that is accessible by organizational personnel. Automated access to such records facilitates record reviews on a regular basis to determine if access authorizations are current and still required to support organizational mission and business functions.' WHERE [Requirement_Id] = 37800
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Limit personally identifiable information contained in visitor access records to include the full name of the individual, Driver’s License Number (or other approved identifier if not available), and the escort name and badge number.
[Implementation Statement]
+
+Related Controls: RA-3, SA-8
+
+
+', [Supplemental_Info]=N' Limit Personally Identifiable Information Elements
Limit personally identifiable information contained in visitor access records to the following elements identified in the privacy risk assessment: [Assignment: organization-defined elements].
Discussion:Organizations may have requirements that specify the contents of visitor access records. Limiting personally identifiable information in visitor access records when such information is not needed for operational purposes helps reduce the level of privacy risk created by a system.' WHERE [Requirement_Id] = 37801
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Protect power equipment and power cabling for the system from damage and destruction.
[Implementation Statement]
+
+Related Controls: PE-4
+
+
+', [Supplemental_Info]=N'Power Equipment and Cabling
Protect power equipment and power cabling for the system from damage and destruction.
Discussion:Organizations determine the types of protection necessary for the power equipment and cabling employed at different locations that are both internal and external to organizational facilities and environments of operation. Types of power equipment and cabling include internal cabling and uninterruptable power sources in offices or data centers, generators and power cabling outside of buildings, and power sources for self-contained components such as satellites, vehicles, and other deployable systems.' WHERE [Requirement_Id] = 37802
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Planning Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] planning policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the planning policy and the associated planning controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the planning policy and procedures; and
c. Review and update the current planning:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Planning policy and procedures for the controls in the PL family implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on their development. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission level or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission/business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to planning policy and procedures include, but are not limited to, assessment or audit findings, security incidents or breaches, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37803
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Security control baselines shall be in place for all systems. Deviations to control baselines shall be approved by the AO.
[Implementation Statement]
+
+Related Controls: PL-2, PL-11, RA-2, RA-3, SA-8
+
+
+', [Supplemental_Info]=N'Baseline Selection
Select a control baseline for the system.
Discussion:Control baselines are predefined sets of controls specifically assembled to address the protection needs of a group, organization, or community of interest. Controls are chosen for baselines to either satisfy mandates imposed by laws, executive orders, directives, regulations, policies, standards, and guidelines or address threats common to all users of the baseline under the assumptions specific to the baseline. Baselines represent a starting point for the protection of individuals’ privacy, information, and information systems with subsequent tailoring actions to manage risk in accordance with mission, business, or other constraints (see PL-11). Federal control baselines are provided in [SP 800-53B]. The selection of a control baseline is determined by the needs of stakeholders. Stakeholder needs consider mission and business requirements as well as mandates imposed by applicable laws, executive orders, directives, policies, regulations, standards, and guidelines. For example, the control baselines in [SP 800-53B] are based on the requirements from [FISMA] and [PRIVACT]. The requirements, along with the NIST standards and guidelines implementing the legislation, direct organizations to select one of the control baselines after the reviewing the information types and the information that is processed, stored, and transmitted on the system; analyzing the potential adverse impact of the loss or compromise of the information or system on the organization’s operations and assets, individuals, other organizations, or the Nation; and considering the results from system and organizational risk assessments. [CNSSI 1253] provides guidance on control baselines for national security systems.' WHERE [Requirement_Id] = 37804
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Tailoring of selected control baselines shall be performed in consultation with DMCS and approval by the AO.
[Implementation Statement]
+
+Related Controls: PL-10, RA-2, RA-3, RA-9, SA-8
+
+
+', [Supplemental_Info]=N'Baseline Tailoring
Tailor the selected control baseline by applying specified tailoring actions.
Discussion:The concept of tailoring allows organizations to specialize or customize a set of baseline controls by applying a defined set of tailoring actions. Tailoring actions facilitate such specialization and customization by allowing organizations to develop security and privacy plans that reflect their specific mission and business functions, the environments where their systems operate, the threats and vulnerabilities that can affect their systems, and any other conditions or situations that can impact their mission or business success. Tailoring guidance is provided in [SP 800-53B]. Tailoring a control baseline is accomplished by identifying and designating common controls, applying scoping considerations, selecting compensating controls, assigning values to control parameters, supplementing the control baseline with additional controls as needed, and providing information for control implementation. The general tailoring actions in [SP 800-53B] can be supplemented with additional actions based on the needs of organizations. Tailoring actions can be applied to the baselines in [SP 800-53B] in accordance with the security and privacy requirements from [FISMA], [PRIVACT], and [OMB A-130]. Alternatively, other communities of interest adopting different control baselines can apply the tailoring actions in [SP 800-53B] to specialize or customize the controls that represent the specific needs and concerns of those entities.' WHERE [Requirement_Id] = 37805
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop system security plan for the system that:
[a: Implementation Statement]
+ i) Are consistent with the organization’s enterprise architecture;
[a.i: Implementation Statement]
+ ii) Explicitly define the constituent system components;
[a.ii: Implementation Statement]
+ iii) Describe the operational context of the system in terms of mission and business processes;
[a.iii: Implementation Statement]
+ iv) Identify the individuals that fulfill system roles and responsibilities;
[a.iv: Implementation Statement]
+ v) Identify the information types processed, stored, and transmitted by the system;
[a.v: Implementation Statement]
+ vi) Provide the security categorization of the system, including supporting rationale;
[a.vi: Implementation Statement]
+ vii) Describe any specific threats to the system that are of concern to the organization;
[a.vii: Implementation Statement]
+ viii) Describe the operational environment for the system and any dependencies on or connections to other systems or system components;
[a.viii: Implementation Statement]
+ ix) Provide an overview of the System Security Plan (SSP) requirements for the system;
[a.ix: Implementation Statement]
+ x) Identify any relevant control baselines or overlays, if applicable;
[a.x: Implementation Statement]
+ xi) Describe the controls in place or planned for meeting the security and privacy requirements, including a rationale for any tailoring decisions;
[a.xi: Implementation Statement]
+ xii) Include risk determinations for security and privacy architecture and design decisions;
[a.xii: Implementation Statement]
+ xiii) Document and map to applicable security controls or system documentation security- and privacy-related emergency and non-emergency activities that require planning and coordination with other organizational individuals, teams, or groups to include assessments, audits, inspections, hardware and software maintenance, acquisition and supply chain risk management, patch management, and ISCP testing; and
[a.xiii: Implementation Statement]
+ xiv) Are reviewed and approved by the authorizing official or designated representative prior to plan implementation.
[a.xiv: Implementation Statement]
+b. Distribute copies of the SSP and communicate subsequent changes to the plans to required holders;
[b: Implementation Statement]
+c. Review the SSP annually;
[c: Implementation Statement]
+d. Update the SSP to address changes to the system and environment of operation or problems identified during plan implementation or control assessments; and
[d: Implementation Statement]
+e. Protect the plans from unauthorized disclosure and modification.
[e: Implementation Statement]
+
+OT Systems Only:
+When systems are highly interconnected, coordinated planning is essential. A low-impact system could adversely affect a higher-impact system.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-6, AC-14, AC-17, AC-20, CA-2, CA-3, CA-7, CM-9, CP-2, CP-4, IR-4, IR-8, MA-4, MA-5, MP-4, MP-5, PL-7, PL-8, PL-10, PL-11, PM-1, PM-7, PM-8, PM-9, PM-10R, PM-11, RA-3, RA-8, RA-9, SA-5, SA-17, SA-22, SI-12, SR-2, SR-4
+
+NIST 800-82 Rev 3:
+OT Discussion: When systems are highly interconnected, coordinated planning is essential. A low-impact system could adversely affect a higher-impact system.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1. Establish and implement a TSA-approved Cybersecurity Implementation Plan that describes the specific measures employed and the schedule for achieving the following outcomes, as more fully described in Section III.A through III.E.: (p.2)
[1: Implementation Statement]
+
+III. Cybersecurity Measures
+
+B.2. An identification and description of measures for securing and defending zone boundaries, that includes security controls— (p.6)
[B.2: Implementation Statement]
+
+C.1.b. Documented and defined mitigation measures for components of Critical Cyber Systems that will not fall under the policy required by the preceding subparagraph (III.C.1.a), and a timeframe to complete these mitigations. (p.7)
[C.1.b: Implementation Statement]
+
+C.3. Policies and procedures to manage access rights based on the principles of least privilege and separation of duties. Where not technically feasible to apply these principles, the policies and procedures must describe the compensating controls that the Owner/Operator will apply. (p.7)
[C.3: Implementation Statement]
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+', [Supplemental_Info]=N'System Security and Privacy Plans
a. Develop security and privacy plans for the system that:
1. Are consistent with the organization’s enterprise architecture;
2. Explicitly define the constituent system components;
3. Describe the operational context of the system in terms of mission and business processes;
4. Identify the individuals that fulfill system roles and responsibilities;
5. Identify the information types processed, stored, and transmitted by the system;
6. Provide the security categorization of the system, including supporting rationale;
7. Describe any specific threats to the system that are of concern to the organization;
8. Provide the results of a privacy risk assessment for systems processing personally identifiable information;
9. Describe the operational environment for the system and any dependencies on or connections to other systems or system components;
10. Provide an overview of the security and privacy requirements for the system;
11. Identify any relevant control baselines or overlays, if applicable;
12. Describe the controls in place or planned for meeting the security and privacy requirements, including a rationale for any tailoring decisions;
13. Include risk determinations for security and privacy architecture and design decisions;
14. Include security- and privacy-related activities affecting the system that require planning and coordination with [Assignment: organization-
defined individuals or groups]; and
15. Are reviewed and approved by the authorizing official or designated representative prior to plan implementation.
b. Distribute copies of the plans and communicate subsequent changes to the plans to [Assignment: organization-defined personnel or roles];
c. Review the plans [Assignment: organization-defined frequency];
d. Update the plans to address changes to the system and environment of operation or problems identified during plan implementation or control
assessments; and
e. Protect the plans from unauthorized disclosure and modification.
Discussion:System security and privacy plans are scoped to the system and system components within the defined authorization boundary and contain an overview of the security and privacy requirements for the system and the controls selected to satisfy the requirements. The plans describe the intended application of each selected control in the context of the system with a sufficient level of detail to correctly implement the control and to subsequently assess the effectiveness of the control. The control documentation describes how system-specific and hybrid controls are implemented and the plans and expectations regarding the functionality of the system. System security and privacy plans can also be used in the design and development of systems in support of life cycle-based security and privacy engineering processes. System security and privacy plans are living documents that are updated and adapted throughout the system development life cycle (e.g., during capability determination, analysis of alternatives, requests for proposal, and design reviews). Section 2.1 describes the different types of requirements that are relevant to organizations during the system development life cycle and the relationship between requirements and controls.
Organizations may develop a single, integrated security and privacy plan or maintain separate plans. Security and privacy plans relate security and privacy requirements to a set of controls and control enhancements. The plans describe how the controls and control enhancements meet the security and privacy requirements but do not provide detailed, technical descriptions of the design or implementation of the controls and control enhancements. Security and privacy plans contain sufficient information (including specifications of control parameter values for selection and assignment operations explicitly or by reference) to enable a design and implementation that is unambiguously compliant with the intent of the plans and subsequent determinations of risk to organizational operations and assets, individuals, other organizations, and the Nation if the plan is implemented.
Security and privacy plans need not be single documents. The plans can be a collection of various documents, including documents that already exist. Effective security and privacy plans make extensive use of references to policies, procedures, and additional documents, including design and implementation specifications where more detailed information can be obtained. The use of references helps reduce the documentation associated with security and privacy programs and maintains the security- and privacy-related information in other established management and operational areas, including enterprise architecture, system development life cycle, systems engineering, and acquisition. Security and privacy plans need not contain detailed contingency plan or incident response plan information but can instead provide—explicitly or by reference—sufficient information to define what needs to be accomplished by those plans.
Security- and privacy-related activities that may require coordination and planning with other individuals or groups within the organization include assessments, audits, inspections, hardware and software maintenance, acquisition and supply chain risk management, patch management, and contingency plan testing. Planning and coordination include emergency and nonemergency (i.e., planned or non-urgent unplanned) situations. The process defined by organizations to plan and coordinate security- and privacy-related activities can also be included in other documents, as appropriate.
' WHERE [Requirement_Id] = 37806
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Maintain general user rules of behavior agreement and privileged user rules of behavior agreement.
[a: Implementation Statement]
+b. Establish and provide to individuals requiring access to the system the rules that describe their responsibilities and expected behavior for information and system usage and security;
[b: Implementation Statement]
+c. Receive a documented acknowledgment from such individuals, indicating that they have read, understand, and agree to abide by the rules of behavior, before authorizing access to information and the system;
[c: Implementation Statement]
+d. Review and update the rules of behavior annually; and
[d: Implementation Statement]
+e. Require users who have acknowledged a previous version of the rules of behavior to read and re-acknowledge rules of behavior annually or when they are revised or updated.
[e: Implementation Statement]
+f. Document in the privileged rules of behavior agreement that privileged users are authorized (and therefore, trusted) to perform security-relevant functions that ordinary users are not authorized to perform.
[f: Implementation Statement]
+
+Related Controls: AC-2, AC-6, AC-8, AC-17, AC-18, AC-19, AC-20, AT-2, AT-3, CM-11, IA-2, IA-4, IA-5, MP-7, PS-6, PS-8, SA-5, SI-12
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Rules of Behavior
a. Establish and provide to individuals requiring access to the system, the rules that describe their responsibilities and expected behavior for information and system usage, security, and privacy;
b. Receive a documented acknowledgment from such individuals, indicating that they have read, understand, and agree to abide by the rules of behavior, before authorizing access to information and the system;
c. Review and update the rules of behavior [Assignment: organization-defined frequency]; and
d. Require individuals who have acknowledged a previous version of the rules of behavior to read and re-acknowledge [Selection (one or more): [Assignment: organization-defined frequency]; when the rules are revised or updated].
Discussion:Rules of behavior represent a type of access agreement for organizational users. Other types of access agreements include nondisclosure agreements, conflict-of-interest agreements, and acceptable use agreements (see PS-6). Organizations consider rules of behavior based on individual user roles and responsibilities and differentiate between rules that apply to privileged users and rules that apply to general users. Establishing rules of behavior for some types of non-organizational users, including individuals who receive information from federal systems, is often not feasible given the large number of such users and the limited nature of their interactions with the systems. Rules of behavior for organizational and non-organizational users can also be established in AC-8. The related controls section provides a list of controls that are relevant to organizational rules of behavior. PL-4b, the documented acknowledgment portion of the control, may be satisfied by the literacy training and awareness and role-based training programs conducted by organizations if such training includes rules of behavior. Documented acknowledgements for rules of behavior include electronic or physical signatures and electronic agreement check boxes or radio buttons.' WHERE [Requirement_Id] = 37807
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Include in the rules of behavior restrictions on:
[Implementation Statement]
+
+(1) Use of social media, social networking sites, and external sites/applications;
[1: Implementation Statement]
+(2) Posting organizational information on public websites; and
[2: Implementation Statement]
+(3) Use of organization-provided identifiers (e.g., email addresses) and authentication secrets (e.g., passwords) for creating accounts on external sites/applications.
[3: Implementation Statement]
+
+Related Controls: AC-22
+
+ h. Define personally acceptable use of WMATA technology.
[h: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Social Media and External Site/application Usage Restrictions
Include in the rules of behavior, restrictions on:
(a) Use of social media, social networking sites, and external sites/applications;
(b) Posting organizational information on public websites; and
(c) Use of organization-provided identifiers (e.g., email addresses) and authentication secrets (e.g., passwords) for creating accounts on external sites/applications.
Discussion:Social media, social networking, and external site/application usage restrictions address rules of behavior related to the use of social media, social networking, and external sites when organizational personnel are using such sites for official duties or in the conduct of official business, when organizational information is involved in social media and social networking transactions, and when personnel access social media and networking sites from organizational systems. Organizations also address specific rules that prevent unauthorized entities from obtaining non-public organizational information from social media and networking sites either directly or through inference. Non-public information includes personally identifiable information and system account information.' WHERE [Requirement_Id] = 37808
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop a Concept of Operations (CONOPS) for the system describing how the organization intends to operate the system from the perspective of information security; and
[a: Implementation Statement]
+b. Review and update the CONOPS annually. This requirement is waived if the components of the CONOPS is fully documented within the organizational Governance, Risk, and Compliance tool.
[b: Implementation Statement]
+c. Require an updated CONOPS, at the discretion of the AO, if there is a substantial change to the functionality of the system.
[c: Implementation Statement]
+
+OT Systems Only:
+Organizations need to consider documenting known operational procedures and exploring how they relate to the combination of IT and OT technologies within the environment.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PL-2, SA-2, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations need to consider documenting known operational procedures and exploring how they relate to the combination of IT and OT technologies within the environment.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Concept of Operations
a. Develop a Concept of Operations (CONOPS) for the system describing how the organization intends to operate the system from the perspective of information security and privacy; and
b. Review and update the CONOPS [Assignment: organization-defined frequency].
Discussion:The CONOPS may be included in the security or privacy plans for the system or in other system development life cycle documents. The CONOPS is a living document that requires updating throughout the system development life cycle. For example, during system design reviews, the concept of operations is checked to ensure that it remains consistent with the design for controls, the system architecture, and the operational procedures. Changes to the CONOPS are reflected in ongoing updates to the security and privacy plans, security and privacy architectures, and other organizational documents, such as procurement specifications, system development life cycle documents, and systems engineering documents.' WHERE [Requirement_Id] = 37809
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop security and privacy architectures for the system that:
[a: Implementation Statement]
+ i) Describe the requirements and approach to be taken for protecting the confidentiality, integrity, and availability of organizational information;
[a.i: Implementation Statement]
+ ii) Describe the requirements and approach to be taken for processing personally identifiable information to minimize privacy risk to individuals;
[a.ii: Implementation Statement]
+ iii) Describe how the architectures are integrated into and support the enterprise architecture; and
[a.iii: Implementation Statement]
+ iv) Describe any assumptions about, and dependencies on, external systems and services;
[a.iv: Implementation Statement]
+b. Review and update system architectures annually, and when there is a change to the system, enterprise architecture, or enterprise security architecture; and
[b: Implementation Statement]
+c. Reflect planned architecture changes in security plans, Concept of Operations (CONOPS), criticality analysis, organizational procedures, and procurements and acquisitions.
[c: Implementation Statement]
+
+Related Controls: CM-2, CM-6, PL-2, PL-7, PL-9, PM-5, PM-7, RA-9, SA-3, SA-5, SA-8, SA-17, SC-7
+
+ i. Security Controls Enhancement(s):
[i: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+F.2.b. Include a cybersecurity architecture design review to be conducted within the first 12 months after the Cybersecurity Implementation Plan approval and at least once every two years thereafter. A cybersecurity architecture design review contains verification and validation of network traffic, a system log review, and analysis to identify cybersecurity vulnerabilities related to network design, configuration, and inter-connectivity to internal and external systems; and (p.9)
[F.2.b: Implementation Statement]
+', [Supplemental_Info]=N'Security and Privacy Architectures
a. Develop security and privacy architectures for the system that:
1. Describe the requirements and approach to be taken for protecting the confidentiality, integrity, and availability of organizational information;
2. Describe the requirements and approach to be taken for processing personally identifiable information to minimize privacy risk to individuals;
3. Describe how the architectures are integrated into and support the enterprise architecture; and
4. Describe any assumptions about, and dependencies on, external systems and services;
b. Review and update the architectures [Assignment: organization-defined frequency] to reflect changes in the enterprise architecture; and
c. Reflect planned architecture changes in security and privacy plans, Concept of Operations (CONOPS), criticality analysis, organizational procedures, and procurements and acquisitions.
Discussion:The security and privacy architectures at the system level are consistent with the organization-wide security and privacy architectures described in PM-7, which are integral to and developed as part of the enterprise architecture. The architectures include an architectural description, the allocation of security and privacy functionality (including controls), security- and privacy-related information for external interfaces, information being exchanged across the interfaces, and the protection mechanisms associated with each interface. The architectures can also include other information, such as user roles and the access privileges assigned to each role; security and privacy requirements; types of information processed, stored, and transmitted by the system; supply chain risk management requirements; restoration priorities of information and system services; and other protection needs.
[SP 800-160-1] provides guidance on the use of security architectures as part of the system development life cycle process. [OMB M-19-03] requires the use of the systems security engineering concepts described in [SP 800-160-1] for high value assets. Security and privacy architectures are reviewed and updated throughout the system development life cycle, from analysis of alternatives through review of the proposed architecture in the RFP responses to the design reviews before and during implementation (e.g., during preliminary design reviews and critical design reviews).
In today’s modern computing architectures, it is becoming less common for organizations to control all information resources. There may be key dependencies on external information services and service providers. Describing such dependencies in the security and privacy architectures is necessary for developing a comprehensive mission and business protection strategy. Establishing, developing, documenting, and maintaining under configuration control a baseline configuration for organizational systems is critical to implementing and maintaining effective architectures. The development of the architectures is coordinated with the senior agency information security officer and the senior agency official for privacy to ensure that the controls needed to support security and privacy requirements are identified and effectively implemented. In many circumstances, there may be no distinction between the security and privacy architecture for a system. In other circumstances, security objectives may be adequately satisfied, but privacy objectives may only be partially satisfied by the security requirements. In these cases, consideration of the privacy requirements needed to achieve satisfaction will result in a distinct privacy architecture. The documentation, however, may simply reflect the combined architectures.
PL-8 is primarily directed at organizations to ensure that architectures are developed for the system and, moreover, that the architectures are integrated with or tightly coupled to the enterprise architecture. In contrast, SA-17 is primarily directed at the external information technology product and system developers and integrators. SA-17, which is complementary to PL-8, is selected when organizations outsource the development of systems or components to external entities and when there is a need to demonstrate consistency with the organization’s enterprise architecture and security and privacy architectures.
' WHERE [Requirement_Id] = 37810
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Allocates [Assignment: organization-defined controls] to [Assignment: organization-defined locations and architectural layers]; and
[1: Implementation Statement]
+(2) Ensures that the allocated controls operate in a coordinated and mutually reinforcing manner.
[2: Implementation Statement]
+
+OT Systems Only:
+Defense in depth is considered a common practice for security architecture within OT environments.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SC-2, SC-3
+
+NIST 800-82 Rev 3:
+OT Discussion: Defense in depth is considered a common practice for security architecture within OT environments.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Security and Privacy Architectures | Defense in Depth
Design the security and privacy architectures for the system using a defense-in-depth approach that:
(a) Allocates [Assignment: organization-defined controls] to [Assignment: organization-defined locations and architectural layers]; and
(b) Ensures that the allocated controls operate in a coordinated and mutually reinforcing manner.
Discussion:Organizations strategically allocate security and privacy controls in the security and privacy architectures so that adversaries must overcome multiple controls to achieve their objective. Requiring adversaries to defeat multiple controls makes it more difficult to attack information resources by increasing the work factor of the adversary; it also increases the likelihood of detection. The coordination of allocated controls is essential to ensure that an attack that involves one control does not create adverse, unintended consequences by interfering with other controls. Unintended consequences can include system lockout and cascading alarms. The placement of controls in systems and organizations is an important activity that requires thoughtful analysis. The value of organizational assets is an important consideration in providing additional layering. Defense-in-depth architectural approaches include modularity and layering (see SA-8(3)), separation of system and user functionality (see SC-2), and security function isolation (see SC-3).' WHERE [Requirement_Id] = 37811
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Organizational common (inherited) controls and related processes shall be centrally managed. Systems shall employ to the maximum extent possible organizational common (inherited) controls and all deviations shall be approved by the AO.
[Implementation Statement]
+
+OT Systems Only:
+If the architecture allows, consider centrally managing flaw remediation, malicious code protection, logging, incident detection, etc.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PL-8, PM-9
+
+NIST 800-82 Rev 3:
+OT Discussion: If the architecture allows for it, consider centrally managing flaw remediation, malicious code protection, logging, and incident detection.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Central Management
Centrally manage [Assignment: organization-defined controls and related processes].
Discussion:Central management refers to organization-wide management and implementation of selected controls and processes. This includes planning, implementing, assessing, authorizing, and monitoring the organization-defined, centrally managed controls and processes. As the central management of controls is generally associated with the concept of common (inherited) controls, such management promotes and facilitates standardization of control implementations and management and the judicious use of organizational resources. Centrally managed controls and processes may also meet independence requirements for assessments in support of initial and ongoing authorizations to operate and as part of organizational continuous monitoring.
Automated tools (e.g., security information and event management tools or enterprise security monitoring and management tools) can improve the accuracy, consistency, and availability of information associated with centrally managed controls and processes. Automation can also provide data aggregation and data correlation capabilities; alerting mechanisms; and dashboards to support risk-based decision-making within the organization.
As part of the control selection processes, organizations determine the controls that may be suitable for central management based on resources and capabilities. It is not always possible to centrally manage every aspect of a control. In such cases, the control can be treated as a hybrid control with the control managed and implemented centrally or at the system level. The controls and control enhancements that are candidates for full or partial central management include but are not limited to: AC-2(1), AC-2(2), AC-2(3), AC-2(4), AC-4(all), AC-17(1), AC-17(2), AC-17(3), AC-17(9), AC-18(1), AC-18(3), AC-18(4), AC-18(5), AC-19(4), AC-22, AC-23, AT-2(1), AT-2(2), AT-3(1), AT-3(2), AT-3(3), AT-4, AU-3, AU-6(1), AU-6(3), AU-6(5), AU-6(6), AU-6(9), AU-7(1), AU-7(2), AU-11, AU-13, AU-16, CA-2(1), CA-2(2), CA-2(3), CA-3(1), CA-3(2), CA-3(3), CA-7(1), CA-9, CM-2(2), CM-3(1), CM-3(4), CM-4, CM-6, CM-6(1), CM-7(2), CM-7(4), CM-7(5), CM-8(all), CM-9(1), CM-10, CM-11, CP-7(all), CP-8(all), SC-43, SI-2, SI-3, SI-4(all), SI-7, SI-8.
' WHERE [Requirement_Id] = 37812
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Develop and disseminate an organization-wide information security program plan that:
[a: Implementation Statement]
+ i) Provides an overview of the requirements for the security program and a description of the security program management controls and common controls in place or planned for meeting those requirements;
[a.i: Implementation Statement]
+ ii) Includes the identification and assignment of roles, responsibilities, management commitment, coordination among organizational entities, and compliance;
[a.ii: Implementation Statement]
+ iii) Reflects the coordination among organizational entities responsible for information security; and
[a.iii: Implementation Statement]
+ iv) Is approved by a senior official with responsibility and accountability for the risk being incurred to organizational operations (including mission, functions, image, and reputation), organizational assets, individuals, other organizations, and the Nation;
[a.iv: Implementation Statement]
+b) Review and update the organization-wide information security program plan [Assignment: organization-defined frequency] and following
[b: Assignment: organization-defined events]; and
[Implementation Statement]
+c) Protect the information security program plan from unauthorized disclosure and modification.
[c: Implementation Statement]
+
+Related Controls: PL-2, PM-18, PM-30, RA-9, SI-12, SR-2
+
+
+', [Supplemental_Info]=N'Information Security Program Plan
a. Develop and disseminate an organization-wide information security program plan that:
1. Provides an overview of the requirements for the security program and a description of the security program management controls and
common controls in place or planned for meeting those requirements;
2. Includes the identification and assignment of roles, responsibilities, management commitment, coordination among organizational entities,
and compliance;
3. Reflects the coordination among organizational entities responsible for information security; and
4. Is approved by a senior official with responsibility and accountability for the risk being incurred to organizational operations (including
mission, functions, image, and reputation), organizational assets, individuals, other organizations, and the Nation;
b. Review and update the organization-wide information security program plan [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
c. Protect the information security program plan from unauthorized disclosure and modification.
Discussion:An information security program plan is a formal document that provides an overview of the security requirements for an organization-wide information security program and describes the program management controls and common controls in place or planned for meeting those requirements. An information security program plan can be represented in a single document or compilations of documents. Privacy program plans and supply chain risk management plans are addressed separately in PM-18 and SR-2, respectively.
An information security program plan documents implementation details about program management and common controls. The plan provides sufficient information about the controls (including specification of parameters for assignment and selection operations, explicitly or by reference) to enable implementations that are unambiguously compliant with the intent of the plan and a determination of the risk to be incurred if the plan is implemented as intended. Updates to information security program plans include organizational changes and problems identified during plan implementation or control assessments.
Program management controls may be implemented at the organization level or the mission or business process level, and are essential for managing the organization’s information security program. Program management controls are distinct from common, system-specific, and hybrid controls because program management controls are independent of any particular system. Together, the individual system security plans and the organization-wide information security program plan provide complete coverage for the security controls employed within the organization.
Common controls available for inheritance by organizational systems are documented in an appendix to the organization’s information security program plan unless the controls are included in a separate security plan for a system. The organization-wide information security program plan indicates which separate security plans contain descriptions of common controls.
Events that may precipitate an update to the information security program plan include, but are not limited to, organization-wide assessment or audit findings, security incidents or breaches, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines.
' WHERE [Requirement_Id] = 37813
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(a) Manage the security and privacy state of organizational systems and the environments in which those systems operate through authorization processes;
[a: Implementation Statement]
+(b) Designate individuals to fulfill specific roles and responsibilities within the organizational risk management process; and
[b: Implementation Statement]
+(c) Integrate the authorization processes into an organization-wide risk management program.
[c: Implementation Statement]
+
+Related Controls: CA-6, CA-7, PL-2
+
+
+', [Supplemental_Info]=N'Authorization Process
a. Manage the security and privacy state of organizational systems and the environments in which those systems operate through authorization processes;
b. Designate individuals to fulfill specific roles and responsibilities within the organizational risk management process; and
c. Integrate the authorization processes into an organization-wide risk management program.
Discussion:Authorization processes for organizational systems and environments of operation require the implementation of an organization-wide risk management process and associated security and privacy standards and guidelines. Specific roles for risk management processes include a risk executive (function) and designated authorizing officials for each organizational system and common control provider. The authorization processes for the organization are integrated with continuous monitoring processes to facilitate ongoing understanding and acceptance of security and privacy risks to organizational operations, organizational assets, individuals, other organizations, and the Nation.' WHERE [Requirement_Id] = 37814
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(a) Define organizational mission and business processes with consideration for information security and privacy and the resulting risk to organizational operations, organizational assets, individuals, and other organizations;
[a: Implementation Statement]
+(b) Determine information protection and sensitive information processing needs arising from the defined mission and business processes; and
[b: Implementation Statement]
+(c) Review and revise the mission and business processes annually or as required.
[c: Implementation Statement]
+
+Related Controls: CP-2, PL-2, PM-7, PM-8, RA-2, RA-3, RA-9, SA-2
+
+
+', [Supplemental_Info]=N'Mission and Business Process Definition
a. Define organizational mission and business processes with consideration for information security and privacy and the resulting risk to organizational operations, organizational assets, individuals, other organizations, and the Nation; and
b. Determine information protection and personally identifiable information processing needs arising from the defined mission and business processes; and
c. Review and revise the mission and business processes [Assignment: organization-defined frequency].
Discussion:Protection needs are technology-independent capabilities that are required to counter threats to organizations, individuals, systems, and the Nation through the compromise of information (i.e., loss of confidentiality, integrity, availability, or privacy). Information protection and personally identifiable information processing needs are derived from the mission and business needs defined by organizational stakeholders, the mission and business processes designed to meet those needs, and the organizational risk management strategy. Information protection and personally identifiable information processing needs determine the required controls for the organization and the systems. Inherent to defining protection and personally identifiable information processing needs is an understanding of the adverse impact that could result if a compromise or breach of information occurs. The categorization process is used to make such potential impact determinations. Privacy risks to individuals can arise from the compromise of personally identifiable information, but they can also arise as unintended consequences or a byproduct of the processing of personally identifiable information at any stage of the information life cycle. Privacy risk assessments are used to prioritize the risks that are created for individuals from system processing of personally identifiable information. These risk assessments enable the selection of the required privacy controls for the organization and systems. Mission and business process definitions and the associated protection requirements are documented in accordance with organizational policies and procedures.' WHERE [Requirement_Id] = 37815
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement an insider threat program that includes a cross-discipline insider threat incident handling team.
[Implementation Statement]
+
+Related Controls: AC-6, AT-2, AU-6, AU-7, AU-10, AU-12, CA-7, IA-4, IR-4, MP-7, PE-2, PM-14, PM-16, PS-3, PS-4, PS-5, PS-7, PS-8, SC-7, SI-4
+
+
+', [Supplemental_Info]=N'Insider Threat Program
Implement an insider threat program that includes a cross-discipline insider threat incident handling team.
Discussion:Organizations that handle classified information are required, under Executive Order 13587 [EO 13587] and the National Insider Threat Policy [ODNI NITP], to establish insider threat programs. The same standards and guidelines that apply to insider threat programs in classified environments can also be employed effectively to improve the security of controlled unclassified and other information in non-national security systems. Insider threat programs include controls to detect and prevent malicious insider activity through the centralized integration and analysis of both technical and nontechnical information to identify potential insider threat concerns. A senior official is designated by the department or agency head as the responsible individual to implement and provide oversight for the program. In addition to the centralized integration and analysis capability, insider threat programs require organizations to prepare department or agency insider threat policies and implementation plans, conduct host-based user monitoring of individual employee activities on government-owned classified computers, provide insider threat awareness training to employees, receive access to information from offices in the department or agency for insider threat analysis, and conduct self-assessments of department or agency insider threat posture.
Insider threat programs can leverage the existence of incident handling teams that organizations may already have in place, such as computer security incident response teams. Human resources records are especially important in this effort, as there is compelling evidence to show that some types of insider crimes are often preceded by nontechnical behaviors in the workplace, including ongoing patterns of disgruntled behavior and conflicts with coworkers and other colleagues. These precursors can guide organizational officials in more focused, targeted monitoring efforts. However, the use of human resource records could raise significant concerns for privacy. The participation of a legal team, including consultation with the senior agency official for privacy, ensures that monitoring activities are performed in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.
' WHERE [Requirement_Id] = 37816
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish a security and privacy workforce development and improvement program.
[Implementation Statement]
+
+Related Controls: AT-2, AT-3
+
+
+', [Supplemental_Info]=N'Security and Privacy Workforce
Establish a security and privacy workforce development and improvement program.
Discussion:Security and privacy workforce development and improvement programs include defining the knowledge, skills, and abilities needed to perform security and privacy duties and tasks; developing role-based training programs for individuals assigned security and privacy roles and responsibilities; and providing standards and guidelines for measuring and building individual qualifications for incumbents and applicants for security- and privacy-related positions. Such workforce development and improvement programs can also include security and privacy career paths to encourage security and privacy professionals to advance in the field and fill positions with greater responsibility. The programs encourage organizations to fill security- and privacy-related positions with qualified personnel. Security and privacy workforce development and improvement programs are complementary to organizational security awareness and training programs and focus on developing and institutionalizing the core security and privacy capabilities of personnel needed to protect organizational operations, assets, and individuals.' WHERE [Requirement_Id] = 37817
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Implement a process for ensuring that organizational plans for conducting security and privacy testing, training, and monitoring activities associated with organizational systems:
[a: Implementation Statement]
+ i) Are developed and maintained; and
[a.i: Implementation Statement]
+ ii) Continue to be executed; and
[a.ii: Implementation Statement]
+b) Review testing, training, and monitoring plans for consistency with the organizational risk management strategy and organization-wide priorities for risk response actions.
[b: Implementation Statement]
+
+Related Controls: AT-2, AT-3, CA-7, CP-4, IR-3, PM-12, SI-4
+
+
+', [Supplemental_Info]=N'Testing, Training, and Monitoring
a. Implement a process for ensuring that organizational plans for conducting security and privacy testing, training, and monitoring activities associated with organizational systems:
1. Are developed and maintained; and
2. Continue to be executed; and
b. Review testing, training, and monitoring plans for consistency with the organizational risk management strategy and organization-wide priorities for risk response actions.
Discussion:A process for organization-wide security and privacy testing, training, and monitoring helps ensure that organizations provide oversight for testing, training, and monitoring activities and that those activities are coordinated. With the growing importance of continuous monitoring programs, the implementation of information security and privacy across the three levels of the risk management hierarchy and the widespread use of common controls, organizations coordinate and consolidate the testing and monitoring activities that are routinely conducted as part of ongoing assessments supporting a variety of controls. Security and privacy training activities, while focused on individual systems and specific roles, require coordination across all organizational elements. Testing, training, and monitoring plans and activities are informed by current threat and vulnerability assessments.' WHERE [Requirement_Id] = 37818
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish and institutionalize contact with selected groups and associations within the security and privacy communities:
[Implementation Statement]
+
+a) To facilitate ongoing security and privacy education and training for organizational personnel;
[a: Implementation Statement]
+b) To maintain currency with recommended security and privacy practices, techniques, and technologies; and
[b: Implementation Statement]
+c) To share current security and privacy information, including threats, vulnerabilities, and incidents.
[c: Implementation Statement]
+
+OT Systems Only:
+Organizations should be familiar with relevant security-focused and industry-specific groups or associations, including government sector specific agencies (SSAs), information sharing and analysis centers (ISAC), and industry trade organizations.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SA-11, SI-5
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations should be familiar with relevant security-focused and industryspecific groups or associations, including government sector-specific agencies (SSAs), Information Sharing and Analysis Centers (ISACs), and industry trade organizations.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Security and Privacy Groups and Associations
Establish and institutionalize contact with selected groups and associations within the security and privacy communities:
a. To facilitate ongoing security and privacy education and training for organizational personnel;
b. To maintain currency with recommended security and privacy practices, techniques, and technologies; and
c. To share current security and privacy information, including threats, vulnerabilities, and incidents.
Discussion:Ongoing contact with security and privacy groups and associations is important in an environment of rapidly changing technologies and threats. Groups and associations include special interest groups, professional associations, forums, news groups, users’ groups, and peer groups of security and privacy professionals in similar organizations. Organizations select security and privacy groups and associations based on mission and business functions. Organizations share threat, vulnerability, and incident information as well as contextual insights, compliance techniques, and privacy problems consistent with applicable laws, executive orders, directives, policies, regulations, standards, and guidelines.' WHERE [Requirement_Id] = 37819
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement a threat awareness program that includes a cross-organization information-sharing capability for threat intelligence; suitable for addressing policy directives satisfying CISA data reporting standards.
[Implementation Statement]
+
+OT Systems Only:
+The organization should collaborate and share information about potential incidents on a timely basis. CISA serves as a centralized location where operational elements involved in cybersecurity and communications reliance are coordinated and integrated. Organizations should consider having both an unclassified and classified information sharing capability.
[OT Systems Only: Implementation Statement]
+
+Related Controls: IR-4, PM-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization should collaborate and share information about potential incidents on a timely basis. CISA serves as a centralized location where operational elements involved in cybersecurity and communications reliance are coordinated and integrated. Organizations should consider having both an unclassified and classified information sharing capability.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Threat Awareness Program
Implement a threat awareness program that includes a cross-organization information-sharing capability for threat intelligence.
Discussion:Because of the constantly changing and increasing sophistication of adversaries, especially the advanced persistent threat (APT), it may be more likely that adversaries can successfully breach or compromise organizational systems. One of the best techniques to address this concern is for organizations to share threat information, including threat events (i.e., tactics, techniques, and procedures) that organizations have experienced, mitigations that organizations have found are effective against certain types of threats, and threat intelligence (i.e., indications and warnings about threats). Threat information sharing may be bilateral or multilateral. Bilateral threat sharing includes government-to-commercial and government-to-government cooperatives. Multilateral threat sharing includes organizations taking part in threat-sharing consortia. Threat information may require special agreements and protection, or it may be freely shared.' WHERE [Requirement_Id] = 37820
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(i) Employ automated mechanisms to maximize the effectiveness of sharing threat intelligence information.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Means for Sharing Threat Intelligence
Employ automated mechanisms to maximize the effectiveness of sharing threat intelligence information.
Discussion:To maximize the effectiveness of monitoring, it is important to know what threat observables and indicators the sensors need to be searching for. By using well-established frameworks, services, and automated tools, organizations improve their ability to rapidly share and feed the relevant threat detection signatures into monitoring tools.' WHERE [Requirement_Id] = 37821
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Establish policy and procedures to ensure that requirements for the protection of controlled unclassified information that is processed, stored or transmitted on external systems, are implemented in accordance with applicable laws, executive orders, directives, policies, regulations, and standards; and
[a: Implementation Statement]
+b) Review and update the policy and procedures [Assignment: organization-defined frequency].
[b: Implementation Statement]
+
+OT Systems Only:
+This control applies to federal organizations and other organizations supporting the government that process Controlled Unclassified Information (CUI).
[OT Systems Only: Implementation Statement]
+
+Related Controls: CA-6, PM-10
+
+NIST 800-82 Rev 3:
+OT Discussion: This control applies to federal agencies and other organizations that support the Government and process controlled unclassified information (CUI).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Protecting Controlled Unclassified Information on External Systems
a. Establish policy and procedures to ensure that requirements for the protection of controlled unclassified information that is processed, stored or transmitted on external systems, are implemented in accordance with applicable laws, executive orders, directives, policies, regulations, and standards; and
b. Review and update the policy and procedures [Assignment: organization-defined frequency].
Discussion:Controlled unclassified information is defined by the National Archives and Records Administration along with the safeguarding and dissemination requirements for such information and is codified in [32 CFR 2002] and, specifically for systems external to the federal organization, 32 CFR 2002.14h. The policy prescribes the specific use and conditions to be implemented in accordance with organizational procedures, including via its contracting processes.' WHERE [Requirement_Id] = 37822
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Develop and disseminate an organization-wide privacy program plan that provides an overview of the agency’s privacy program, and:
[a: Implementation Statement]
+ i) Includes a description of the structure of the privacy program and the resources dedicated to the privacy program;
[a.i: Implementation Statement]
+ ii) Provides an overview of the requirements for the privacy program and a description of the privacy program management controls and common controls in place or planned for meeting those requirements;
[a.ii: Implementation Statement]
+ iii) Includes the role of the senior agency official for privacy and the identification and assignment of roles of other privacy officials and staff and their responsibilities;
[a.iii: Implementation Statement]
+ iv) Describes management commitment, compliance, and the strategic goals and objectives of the privacy program;
[a.iv: Implementation Statement]
+ v) Reflects coordination among organizational entities responsible for the different aspects of privacy; and
[a.v: Implementation Statement]
+ vi) Is approved by a senior official with responsibility and accountability for the privacy risk being incurred to organizational operations (including mission, functions, image, and reputation), organizational assets, individuals, other organizations, and the Nation; and
[a.vi: Implementation Statement]
+b) Update the plan [Assignment: organization-defined frequency] and to address changes in federal privacy laws and policy and organizational changes and problems identified during plan implementation or privacy control assessments.
[b: Implementation Statement]
+
+Related Controls: PM-8, PM-9, PM-19
+
+
+', [Supplemental_Info]=N'Privacy Program Plan
a. Develop and disseminate an organization-wide privacy program plan that provides an overview of the agency’s privacy program, and:
1. Includes a description of the structure of the privacy program and the resources dedicated to the privacy program;
2. Provides an overview of the requirements for the privacy program and a description of the privacy program management controls and
common controls in place or planned for meeting those requirements;
3. Includes the role of the senior agency official for privacy and the identification and assignment of roles of other privacy officials and staff and
their responsibilities;
4. Describes management commitment, compliance, and the strategic goals and objectives of the privacy program;
5. Reflects coordination among organizational entities responsible for the different aspects of privacy; and
6. Is approved by a senior official with responsibility and accountability for the privacy risk being incurred to organizational operations (including
mission, functions, image, and reputation), organizational assets, individuals, other organizations, and the Nation; and
b. Update the plan [Assignment: organization-defined frequency] and to address changes in federal privacy laws and policy and organizational changes and problems identified during plan implementation or privacy control assessments.
Discussion:A privacy program plan is a formal document that provides an overview of an organization’s privacy program, including a description of the structure of the privacy program, the resources dedicated to the privacy program, the role of the senior agency official for privacy and other privacy officials and staff, the strategic goals and objectives of the privacy program, and the program management controls and common controls in place or planned for meeting applicable privacy requirements and managing privacy risks. Privacy program plans can be represented in single documents or compilations of documents.
The senior agency official for privacy is responsible for designating which privacy controls the organization will treat as program management, common, system-specific, and hybrid controls. Privacy program plans provide sufficient information about the privacy program management and common controls (including the specification of parameters and assignment and selection operations explicitly or by reference) to enable control implementations that are unambiguously compliant with the intent of the plans and a determination of the risk incurred if the plans are implemented as intended.
Program management controls are generally implemented at the organization level and are essential for managing the organization’s privacy program. Program management controls are distinct from common, system-specific, and hybrid controls because program management controls are independent of any particular information system. Together, the privacy plans for individual systems and the organization-wide privacy program plan provide complete coverage for the privacy controls employed within the organization.
Common controls are documented in an appendix to the organization’s privacy program plan unless the controls are included in a separate privacy plan for a system. The organization-wide privacy program plan indicates which separate privacy plans contain descriptions of privacy controls.
' WHERE [Requirement_Id] = 37823
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Appoint a senior agency official for privacy with the authority, mission, accountability, and resources to coordinate, develop, and implement, applicable privacy requirements and manage privacy risks through the organization-wide privacy program.
[Implementation Statement]
+
+Related Controls: PM-18, PM-20, PM-23, PM-24, PM-27
+
+
+', [Supplemental_Info]=N'Privacy Program Leadership Role
Appoint a senior agency official for privacy with the authority, mission, accountability, and resources to coordinate, develop, and implement, applicable privacy requirements and manage privacy risks through the organization-wide privacy program.
Discussion:The privacy officer is an organizational official. For federal agencies—as defined by applicable laws, executive orders, directives, regulations, policies, standards, and guidelines—this official is designated as the senior agency official for privacy. Organizations may also refer to this official as the chief privacy officer. The senior agency official for privacy also has roles on the data management board (see PM-23) and the data integrity board (see PM-24).' WHERE [Requirement_Id] = 37824
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Appoint a senior agency information security officer with the mission and resources to coordinate, develop, implement, and maintain an organization-wide information security program.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'Information Security Program Leadership Role
Appoint a senior agency information security officer with the mission and resources to coordinate, develop, implement, and maintain an organization-wide information security program.
Discussion:The senior agency information security officer is an organizational official. For federal agencies (as defined by applicable laws, executive orders, regulations, directives, policies, and standards), this official is the senior agency information security officer. Organizations may also refer to this official as the senior information security officer or chief information security officer.' WHERE [Requirement_Id] = 37825
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Maintain a central resource webpage on the organization’s principal public website that serves as a central source of information about the organization’s privacy program and that:
[Implementation Statement]
+
+a) Ensures that the public has access to information about organizational privacy activities and can communicate with its senior agency official for privacy;
[a: Implementation Statement]
+b) Ensures that organizational privacy practices and reports are publicly available; and
[b: Implementation Statement]
+c) Employs publicly facing email addresses and/or phone lines to enable the public to provide feedback and/or direct questions to privacy offices regarding privacy practices.
[c: Implementation Statement]
+
+Related Controls: AC-3, PM-19, PT-5, PT-6, PT-7, RA-8
+
+
+', [Supplemental_Info]=N'Dissemination of Privacy Program Information
Maintain a central resource webpage on the organization’s principal public website that serves as a central source of information about the organization’s privacy program and that:
a. Ensures that the public has access to information about organizational privacy activities and can communicate with its senior agency official for privacy;
b. Ensures that organizational privacy practices and reports are publicly available; and
c. Employs publicly facing email addresses and/or phone lines to enable the public to provide feedback and/or direct questions to privacy offices regarding privacy practices.
Discussion:For federal agencies, the webpage is located at www.[agency].gov/privacy. Federal agencies include public privacy impact assessments, system of records notices, computer matching notices and agreements, [PRIVACT] exemption and implementation rules, privacy reports, privacy policies, instructions for individuals making an access or amendment request, email addresses for questions/complaints, blogs, and periodic publications.' WHERE [Requirement_Id] = 37826
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Develop and maintain an accurate accounting of disclosures of personally identifiable information, including:
[a: Implementation Statement]
+ i) Date, nature, and purpose of each disclosure; and
[a.i: Implementation Statement]
+ ii) Name and address, or other contact information of the individual or organization to which the disclosure was made;
[a.ii: Implementation Statement]
+b) Retain the accounting of disclosures for the length of the time the personally identifiable information is maintained or five years after the disclosure is made, whichever is longer; and
[b: Implementation Statement]
+c) Make the accounting of disclosures available to the individual to whom the personally identifiable information relates upon request.
[c: Implementation Statement]
+
+Related Controls: AC-3, AU-2, PT-2
+
+
+', [Supplemental_Info]=N'Accounting of Disclosures
a. Develop and maintain an accurate accounting of disclosures of personally identifiable information, including:
1. Date, nature, and purpose of each disclosure; and
2. Name and address, or other contact information of the individual or organization to which the disclosure was made;
b. Retain the accounting of disclosures for the length of the time the personally identifiable information is maintained or five years after the disclosure is made, whichever is longer; and
c. Make the accounting of disclosures available to the individual to whom the personally identifiable information relates upon request.
Discussion:The purpose of accounting of disclosures is to allow individuals to learn to whom their personally identifiable information has been disclosed, to provide a basis for subsequently advising recipients of any corrected or disputed personally identifiable information, and to provide an audit trail for subsequent reviews of organizational compliance with conditions for disclosures. For federal agencies, keeping an accounting of disclosures is required by the [PRIVACT]; agencies should consult with their senior agency official for privacy and legal counsel on this requirement and be aware of the statutory exceptions and OMB guidance relating to the provision.
Organizations can use any system for keeping notations of disclosures, if it can construct from such a system, a document listing of all disclosures along with the required information. Automated mechanisms can be used by organizations to determine when personally identifiable information is disclosed, including commercial services that provide notifications and alerts. Accounting of disclosures may also be used to help organizations verify compliance with applicable privacy statutes and policies governing the disclosure or dissemination of information and dissemination restrictions.
' WHERE [Requirement_Id] = 37827
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Develop and document organization-wide policies and procedures for:
[a: Implementation Statement]
+ i) Reviewing for the accuracy, relevance, timeliness, and completeness of personally identifiable information across the information life cycle;
[a.i: Implementation Statement]
+ ii) Correcting or deleting inaccurate or outdated personally identifiable information;
[a.ii: Implementation Statement]
+ iii) Disseminating notice of corrected or deleted personally identifiable information to individuals or other appropriate entities; and
[a.iii: Implementation Statement]
+ iv) Appeals of adverse decisions on correction or deletion requests.
[a.iv: Implementation Statement]
+
+Related Controls: PM-23, SI-18
+
+
+', [Supplemental_Info]=N'Personally Identifiable Information Quality Management
Develop and document organization-wide policies and procedures for:
a. Reviewing for the accuracy, relevance, timeliness, and completeness of personally identifiable information across the information life cycle;
b. Correcting or deleting inaccurate or outdated personally identifiable information;
c. Disseminating notice of corrected or deleted personally identifiable information to individuals or other appropriate entities; and
d. Appeals of adverse decisions on correction or deletion requests.
Discussion:Personally identifiable information quality management includes steps that organizations take to confirm the accuracy and relevance of personally identifiable information throughout the information life cycle. The information life cycle includes the creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposition of personally identifiable information. Organizational policies and procedures for personally identifiable information quality management are important because inaccurate or outdated personally identifiable information maintained by organizations may cause problems for individuals. Organizations consider the quality of personally identifiable information involved in business functions where inaccurate information may result in adverse decisions or the denial of benefits and services, or the disclosure of the information may cause stigmatization. Correct information, in certain circumstances, can cause problems for individuals that outweigh the benefits of organizations maintaining the information. Organizations consider creating policies and procedures for the removal of such information.
The senior agency official for privacy ensures that practical means and mechanisms exist and are accessible for individuals or their authorized representatives to seek the correction or deletion of personally identifiable information. Processes for correcting or deleting data are clearly defined and publicly available. Organizations use discretion in determining whether data is to be deleted or corrected based on the scope of requests, the changes sought, and the impact of the changes. Additionally, processes include the provision of responses to individuals of decisions to deny requests for correction or deletion. The responses include the reasons for the decisions, a means to record individual objections to the decisions, and a means of requesting reviews of the initial determinations.
Organizations notify individuals or their designated representatives when their personally identifiable information is corrected or deleted to provide transparency and confirm the completed action. Due to the complexity of data flows and storage, other entities may need to be informed of the correction or deletion. Notice supports the consistent correction and deletion of personally identifiable information across the data ecosystem.
' WHERE [Requirement_Id] = 37828
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(a) Establish a Data Governance Body minimally consisting of Chief Digital Officer and Chief Information Security Officer with responsibility for:
[a: Implementation Statement]
+ (1) Establishing policies, procedures, and standards that facilitate data governance so that data, including PII, is effectively managed and maintained in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidance; and
[1: Implementation Statement]
+ (2) Developing and implementing guidelines that support data modeling, quality, integrity, and the de-identification needs of PII across the information life cycle as well as reviewing and approving applications to release data outside of the organization, archiving the applications and the released data, and performing post-release monitoring to ensure that the assumptions made as part of the data release continue to be valid.
[2: Implementation Statement]
+
+Related Controls: AT-2, AT-3, PM-19, PM-22, PM-24, PT-7, SI-4, SI-19
+
+
+', [Supplemental_Info]=N'Data Governance Body
Establish a Data Governance Body consisting of [Assignment: organization-defined roles] with [Assignment: organization-defined responsibilities].
Discussion:A Data Governance Body can help ensure that the organization has coherent policies and the ability to balance the utility of data with security and privacy requirements. The Data Governance Body establishes policies, procedures, and standards that facilitate data governance so that data, including personally identifiable information, is effectively managed and maintained in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidance. Responsibilities can include developing and implementing guidelines that support data modeling, quality, integrity, and the de-identification needs of personally identifiable information across the information life cycle as well as reviewing and approving applications to release data outside of the organization, archiving the applications and the released data, and performing post-release monitoring to ensure that the assumptions made as part of the data release continue to be valid. Members include the chief information officer, senior agency information security officer, and senior agency official for privacy. Federal agencies are required to establish a Data Governance Body with specific roles and responsibilities in accordance with the [EVIDACT] and policies set forth under [OMB M-19-23].' WHERE [Requirement_Id] = 37829
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish a Data Integrity Board to:
[Implementation Statement]
+
+a) Review proposals to conduct or participate in a matching program; and
[a: Implementation Statement]
+b) Conduct an annual review of all matching programs in which the agency has participated.
[b: Implementation Statement]
+
+Related Controls: AC-4, PM-19, PM-23, PT-2, PT-8
+
+
+', [Supplemental_Info]=N'Data Integrity Board
Establish a Data Integrity Board to:
a. Review proposals to conduct or participate in a matching program; and
b. Conduct an annual review of all matching programs in which the agency has participated.
Discussion:A Data Integrity Board is the board of senior officials designated by the head of a federal agency and is responsible for, among other things, reviewing the agency’s proposals to conduct or participate in a matching program and conducting an annual review of all matching programs in which the agency has participated. As a general matter, a matching program is a computerized comparison of records from two or more automated [PRIVACT] systems of records or an automated system of records and automated records maintained by a non-federal agency (or agent thereof). A matching program either pertains to Federal benefit programs or Federal personnel or payroll records. At a minimum, the Data Integrity Board includes the Inspector General of the agency, if any, and the senior agency official for privacy.' WHERE [Requirement_Id] = 37830
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement a process for receiving and responding to complaints, concerns, or questions from individuals about the organizational security and privacy practices that includes:
[Implementation Statement]
+
+a) Develop, document, and implement policies and procedures that address the use of personally identifiable information for internal testing, training, and research;
[a: Implementation Statement]
+b) Limit or minimize the amount of personally identifiable information used for internal testing, training, and research purposes;
[b: Implementation Statement]
+c) Authorize the use of personally identifiable information when such information is required for internal testing, training, and research; and
[c: Implementation Statement]
+d) Review and update policies and procedures
[d: Assignment: organization-defined frequency].
[Implementation Statement]
+
+Related Controls: PM-23, PT-3, SA-3, SA-8, SI-12
+
+
+', [Supplemental_Info]=N'Minimization of Personally Identifiable Information Used in Testing, Training, and Research
a. Develop, document, and implement policies and procedures that address the use of personally identifiable information for internal testing, training, and research;
b. Limit or minimize the amount of personally identifiable information used for internal testing, training, and research purposes;
c. Authorize the use of personally identifiable information when such information is required for internal testing, training, and research; and
d. Review and update policies and procedures [Assignment: organization-defined frequency].
Discussion:The use of personally identifiable information in testing, research, and training increases the risk of unauthorized disclosure or misuse of such information. Organizations consult with the senior agency official for privacy and/or legal counsel to ensure that the use of personally identifiable information in testing, training, and research is compatible with the original purpose for which it was collected. When possible, organizations use placeholder data to avoid exposure of personally identifiable information when conducting testing, training, and research.' WHERE [Requirement_Id] = 37831
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement a process for receiving and responding to complaints, concerns, or questions from individuals about the organizational security and privacy practices that includes:
[Implementation Statement]
+
+a) Mechanisms that are easy to use and readily accessible by the public;
[a: Implementation Statement]
+b) All information necessary for successfully filing complaints;
[b: Implementation Statement]
+c) Tracking mechanisms to ensure all complaints received are reviewed and addressed within [Assignment: organization-defined time period];
[c: Implementation Statement]
+d) Acknowledgement of receipt of complaints, concerns, or questions from individuals within [Assignment: organization-defined time period]; and
[d: Implementation Statement]
+e) Response to complaints, concerns, or questions from individuals within [Assignment: organization-defined time period].
[e: Implementation Statement]
+
+Related Controls: IR-7, IR-9, PM-22, SI-18
+
+
+', [Supplemental_Info]=N'Complaint Management
Implement a process for receiving and responding to complaints, concerns, or questions from individuals about the organizational security and privacy practices that includes:
a. Mechanisms that are easy to use and readily accessible by the public;
b. All information necessary for successfully filing complaints;
c. Tracking mechanisms to ensure all complaints received are reviewed and addressed within [Assignment: organization-defined time period];
d. Acknowledgement of receipt of complaints, concerns, or questions from individuals within [Assignment: organization-defined time period]; and
e. Response to complaints, concerns, or questions from individuals within [Assignment: organization-defined time period].
Discussion:Complaints, concerns, and questions from individuals can serve as valuable sources of input to organizations and ultimately improve operational models, uses of technology, data collection practices, and controls. Mechanisms that can be used by the public include telephone hotline, email, or web-based forms. The information necessary for successfully filing complaints includes contact information for the senior agency official for privacy or other official designated to receive complaints. Privacy complaints may also include personally identifiable information which is handled in accordance with relevant policies and processes.' WHERE [Requirement_Id] = 37832
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Develop [Assignment: organization-defined privacy reports] and disseminate to:
[Implementation Statement]
+
+a) [Assignment: organization-defined oversight bodies] to demonstrate accountability with statutory, regulatory, and policy privacy mandates; and
[a: Implementation Statement]
+b) [Assignment: organization-defined officials] and other personnel with responsibility for monitoring privacy program compliance; and
[b: Implementation Statement]
+c) Review and update privacy reports [Assignment: organization-defined frequency].
[c: Implementation Statement]
+
+Related Controls: IR-9, PM-19
+
+
+', [Supplemental_Info]=N'Privacy Reporting
a. Develop [Assignment: organization-defined privacy reports] and disseminate to:
1. [Assignment: organization-defined oversight bodies] to demonstrate accountability with statutory, regulatory, and policy privacy mandates;
and
2. [Assignment: organization-defined officials] and other personnel with responsibility for monitoring privacy program compliance; and
b. Review and update privacy reports [Assignment: organization-defined frequency].
Discussion:Through internal and external reporting, organizations promote accountability and transparency in organizational privacy operations. Reporting can also help organizations to determine progress in meeting privacy compliance requirements and privacy controls, compare performance across the federal government, discover vulnerabilities, identify gaps in policy and implementation, and identify models for success. For federal agencies, privacy reports include annual senior agency official for privacy reports to OMB, reports to Congress required by Implementing Regulations of the 9/11 Commission Act, and other public reports required by law, regulation, or policy, including internal policies of organizations. The senior agency official for privacy consults with legal counsel, where appropriate, to ensure that organizations meet all applicable privacy reporting requirements.' WHERE [Requirement_Id] = 37833
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(a) Identify and document:
[a: Implementation Statement]
+ (1) Assumptions affecting risk assessments, risk responses, and risk monitoring;
[a.1: Implementation Statement]
+ (2) Constraints affecting risk assessments, risk responses, and risk monitoring;
[a.2: Implementation Statement]
+ (3) Priorities and trade-offs considered by the organization for managing risk; and
[a.3: Implementation Statement]
+ (4) Organizational risk tolerance;
[a.4: Implementation Statement]
+(b) Distribute the results of risk framing activities to organizational personnel, including mission and business owners, information owners or stewards, system owners, the authorizing official, Chief Information Security Officer, and Chief Risk Officer; and
[b: Implementation Statement]
+(c) Review and update risk framing considerations annually.
[c: Implementation Statement]
+
+Related Controls: CA-7, PM-9, RA-3, RA-7
+
+
+', [Supplemental_Info]=N'Risk Framing
a. Identify and document:
1. Assumptions affecting risk assessments, risk responses, and risk monitoring;
2. Constraints affecting risk assessments, risk responses, and risk monitoring;
3. Priorities and trade-offs considered by the organization for managing risk; and
4. Organizational risk tolerance;
b. Distribute the results of risk framing activities to [Assignment: organization-defined personnel]; and
c. Review and update risk framing considerations [Assignment: organization-defined frequency].
Discussion:Risk framing is most effective when conducted at the organization level and in consultation with stakeholders throughout the organization including mission, business, and system owners. The assumptions, constraints, risk tolerance, priorities, and trade-offs identified as part of the risk framing process inform the risk management strategy, which in turn informs the conduct of risk assessment, risk response, and risk monitoring activities. Risk framing results are shared with organizational personnel, including mission and business owners, information owners or stewards, system owners, authorizing officials, senior agency information security officer, senior agency official for privacy, and senior accountable official for risk management.' WHERE [Requirement_Id] = 37834
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(a) Designate an Authorizing Official to align organizational information security and privacy management processes with strategic, operational, and budgetary planning processes; and
[a: Implementation Statement]
+ (i) Appoint a Senior Accountable Official for Risk Management to align organizational information security and privacy management processes with strategic, operational, and budgetary planning processes; and
[a.i: Implementation Statement]
+(b) Designate a Chief Risk Officer to view and analyze risk from an organization-wide perspective and ensure management of risk is consistent across the organization.
[b: Implementation Statement]
+ (i) Establish a Risk Executive (function) to view and analyze risk from an organization-wide perspective and ensure management of risk is consistent across the organization.
[b.i: Implementation Statement]
+
+Related Controls: PM-2, PM-19
+
+
+', [Supplemental_Info]=N'Risk Management Program Leadership Roles
a. Appoint a Senior Accountable Official for Risk Management to align organizational information security and privacy management processes with strategic, operational, and budgetary planning processes; and
b. Establish a Risk Executive (function) to view and analyze risk from an organization-wide perspective and ensure management of risk is consistent across the organization.
Discussion:The senior accountable official for risk management leads the risk executive (function) in organization-wide risk management activities.' WHERE [Requirement_Id] = 37835
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Include the resources needed to implement the information security and privacy programs in capital planning and investment requests and document all exceptions to this requirement;
[a: Implementation Statement]
+b) Prepare documentation required for addressing information security and privacy programs in capital planning and investment requests in accordance with applicable laws, executive orders, directives, policies, regulations, standards; and
[b: Implementation Statement]
+c) Make available for expenditure, the planned information security and privacy resources.
[c: Implementation Statement]
+
+Related Controls: PM-4, SA-2
+
+
+', [Supplemental_Info]=N'Information Security and Privacy Resources
a. Include the resources needed to implement the information security and privacy programs in capital planning and investment requests and document all exceptions to this requirement;
b. Prepare documentation required for addressing information security and privacy programs in capital planning and investment requests in accordance with applicable laws, executive orders, directives, policies, regulations, standards; and
c. Make available for expenditure, the planned information security and privacy resources.
Discussion:Organizations consider establishing champions for information security and privacy and, as part of including the necessary resources, assign specialized expertise and resources as needed. Organizations may designate and empower an Investment Review Board or similar group to manage and provide oversight for the information security and privacy aspects of the capital planning and investment control process.' WHERE [Requirement_Id] = 37836
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(a) Develop an organization-wide strategy for managing supply chain risks associated with the development, acquisition, maintenance, and disposal of systems, system components, and system services;
[a: Implementation Statement]
+(b) Implement the supply chain risk management strategy consistently across the organization;
[b: Implementation Statement]
+(c) Review and update the supply chain risk management strategy annually or as required, to address organizational changes; and
[c: Implementation Statement]
+(d) Align all cybersecurity related supply chain risk management strategy to the Chief Information Security Officer and incorporate cybersecurity requirements into the enterprise supply chain risk management strategy as determined by the Chief Information Security Officer:
[d: Implementation Statement]
+
+Related Controls: CM-10, PM-9, SR-1, SR-2, SR-3, SR-4, SR-5, SR-6, SR-7, SR-8, SR-9, SR-11
+
+
+', [Supplemental_Info]=N'Supply Chain Risk Management Strategy
a. Develop an organization-wide strategy for managing supply chain risks associated with the development, acquisition, maintenance, and disposal of systems, system components, and system services;
b. Implement the supply chain risk management strategy consistently across the organization; and
c. Review and update the supply chain risk management strategy on [Assignment: organization-defined frequency] or as required, to address organizational changes.
Discussion:An organization-wide supply chain risk management strategy includes an unambiguous expression of the supply chain risk appetite and tolerance for the organization, acceptable supply chain risk mitigation strategies or controls, a process for consistently evaluating and monitoring supply chain risk, approaches for implementing and communicating the supply chain risk management strategy, and the associated roles and responsibilities. Supply chain risk management includes considerations of the security and privacy risks associated with the development, acquisition, maintenance, and disposal of systems, system components, and system services. The supply chain risk management strategy can be incorporated into the organization’s overarching risk management strategy and can guide and inform supply chain policies and system-level supply chain risk management plans. In addition, the use of a risk executive function can facilitate a consistent, organization-wide application of the supply chain risk management strategy. The supply chain risk management strategy is implemented at the organization and mission/business levels, whereas the supply chain risk management plan (see SR-2) is implemented at the system level.' WHERE [Requirement_Id] = 37837
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(i) Identify, prioritize, and assess suppliers of critical or mission-essential technologies, products, and services.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Suppliers of Critical or Mission-essential Items
Identify, prioritize, and assess suppliers of critical or mission-essential technologies, products, and services.
Discussion:The identification and prioritization of suppliers of critical or mission-essential technologies, products, and services is paramount to the mission/business success of organizations. The assessment of suppliers is conducted using supplier reviews (see SR-6) and supply chain risk assessment processes (see RA-3(1)). An analysis of supply chain risk can help an organization identify systems or components for which additional supply chain risk mitigations are required.' WHERE [Requirement_Id] = 37838
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Develop an organization-wide continuous monitoring strategy and implement continuous monitoring programs that include:
[Implementation Statement]
+
+(a) Establishing the following organization-wide metrics to be monitored:
[a: Implementation Statement]
+ (1) Scan coverage;
[a.1: Implementation Statement]
+ (2) Vulnerability management;
[a.2: Implementation Statement]
+ (3) Incident management;
[a.3: Implementation Statement]
+ (4) Patch management;
[a.4: Implementation Statement]
+ (5) Configuration management;
[a.5: Implementation Statement]
+ (6) Change management;
[a.6: Implementation Statement]
+ (7) Application security;
[a.7: Implementation Statement]
+ (8) Financial metrics;
[a.8: Implementation Statement]
+ (9) IT awareness and training;
[a.9: Implementation Statement]
+(b) Establishing control review frequencies for monitoring and document such frequencies in policy and review continuous monitoring requirements annually for assessment of control effectiveness;
[b: Implementation Statement]
+(c) Ongoing monitoring of organizationally defined metrics in accordance with the continuous monitoring strategy;
[c: Implementation Statement]
+(d) Correlation and analysis of information generated by control assessments and monitoring;
[d: Implementation Statement]
+(e) Response actions to address results of the analysis of control assessment and monitoring information; and
[e: Implementation Statement]
+(f) Reporting the security and privacy status of organizational systems to executive management and the board of directors quarterly.
[f: Implementation Statement]
+
+Related Controls: AC-2, AC-6, AC-17, AT-4, AU-6, CA-2, CA-5, CA-6, CA-7, CM-3, CM-4, CM-6, CM-11, IA-5, IR-5, MA-2, MA-3, MA-4, PE-3, PE-6, PE-14, PE-16, PL-2, PM-4, PM-6, PM-9, PM-10, PM-12, PM-14, PM-23, PM-28, PS-7, PT-7, RA-3, RA-5, RA-7, SA-9, SA-11, SC-5, SC-7, SC-18, SI-3, SI-4, SI-12, SR-2, SR-4
+
+
+', [Supplemental_Info]=N'Continuous Monitoring Strategy
Develop an organization-wide continuous monitoring strategy and implement continuous monitoring programs that include:
a. Establishing the following organization-wide metrics to be monitored: [Assignment: organization-defined metrics];
b. Establishing [Assignment: organization-defined frequencies] for monitoring and [Assignment: organization-defined frequencies] for assessment of control effectiveness;
c. Ongoing monitoring of organizationally-defined metrics in accordance with the continuous monitoring strategy;
d. Correlation and analysis of information generated by control assessments and monitoring;
e. Response actions to address results of the analysis of control assessment and monitoring information; and
f. Reporting the security and privacy status of organizational systems to [Assignment: organization-defined personnel or roles] [Assignment: organization-defined frequency].
Discussion:Continuous monitoring at the organization level facilitates ongoing awareness of the security and privacy posture across the organization to support organizational risk management decisions. The terms “continuous” and “ongoing” imply that organizations assess and monitor their controls and risks at a frequency sufficient to support risk-based decisions. Different types of controls may require different monitoring frequencies. The results of continuous monitoring guide and inform risk response actions by organizations. Continuous monitoring programs allow organizations to maintain the authorizations of systems and common controls in highly dynamic environments of operation with changing mission and business needs, threats, vulnerabilities, and technologies. Having access to security- and privacy-related information on a continuing basis through reports and dashboards gives organizational officials the capability to make effective, timely, and informed risk management decisions, including ongoing authorization decisions. To further facilitate security and privacy risk management, organizations consider aligning organization-defined monitoring metrics with organizational risk tolerance as defined in the risk management strategy. Monitoring requirements, including the need for monitoring, may be referenced in other controls and control enhancements such as, AC-2g, AC-2(7), AC-2(12)(a), AC-2(7)(b), AC-2(7)(c), AC-17(1), AT-4a, AU-13, AU-13(1), AU-13(2), CA-7, CM-3f, CM-6d, CM-11c, IR-5, MA-2b, MA-3a, MA-4a, PE-3d, PE-6, PE-14b, PE-16, PE-20, PM-6, PM-23, PS-7e, SA-9c, SC-5(3)(b), SC-7a, SC-7(24)(b), SC-18b, SC-43b, SI-4.' WHERE [Requirement_Id] = 37839
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Analyze systems categorized by Digital Modernization Cyber Security as critical to supporting mission essential services or functions to ensure that the information resources are being used consistent with their intended purpose.
[Implementation Statement]
+
+Related Controls: CA-7, PL-2, RA-3, RA-9
+
+
+', [Supplemental_Info]=N'Purposing
Analyze [Assignment: organization-defined systems or systems components] supporting mission essential services or functions to ensure that the information resources are being used consistent with their intended purpose.
Discussion:Systems are designed to support a specific mission or business function. However, over time, systems and system components may be used to support services and functions that are outside of the scope of the intended mission or business functions. This can result in exposing information resources to unintended environments and uses that can significantly increase threat exposure. In doing so, the systems are more vulnerable to compromise, which can ultimately impact the services and functions for which they were intended. This is especially impactful for mission-essential services and functions. By analyzing resource use, organizations can identify such potential exposures.' WHERE [Requirement_Id] = 37840
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Implement a process to ensure that plans of action and milestones for the information security, privacy, and supply chain risk management programs and associated organizational systems:
[a: Implementation Statement]
+ i) Are developed and maintained;
[a.i: Implementation Statement]
+ ii) Document the remedial information security, privacy, and supply chain risk management actions to adequately respond to risk to organizational operations and assets, individuals, other organizations, and the Nation; and
[a.ii: Implementation Statement]
+ iii) Are reported in accordance with established reporting requirements.
[a.iii: Implementation Statement]
+b) Review plans of action and milestones for consistency with the organizational risk management strategy and organization-wide priorities for risk response actions.
[b: Implementation Statement]
+
+Related Controls: CA-5, CA-7, PM-3, RA-7, SI-12
+
+
+', [Supplemental_Info]=N'Plan of Action and Milestones Process
a. Implement a process to ensure that plans of action and milestones for the information security, privacy, and supply chain risk management programs and associated organizational systems:
1. Are developed and maintained;
2. Document the remedial information security, privacy, and supply chain risk management actions to adequately respond to risk to
organizational operations and assets, individuals, other organizations, and the Nation; and
3. Are reported in accordance with established reporting requirements.
b. Review plans of action and milestones for consistency with the organizational risk management strategy and organization-wide priorities for risk response actions.
Discussion:The plan of action and milestones is a key organizational document and is subject to reporting requirements established by the Office of Management and Budget. Organizations develop plans of action and milestones with an organization-wide perspective, prioritizing risk response actions and ensuring consistency with the goals and objectives of the organization. Plan of action and milestones updates are based on findings from control assessments and continuous monitoring activities. There can be multiple plans of action and milestones corresponding to the information system level, mission/business process level, and organizational/governance level. While plans of action and milestones are required for federal organizations, other types of organizations can help reduce risk by documenting and tracking planned remediations. Specific guidance on plans of action and milestones at the system level is provided in CA-5.' WHERE [Requirement_Id] = 37841
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(a) Develop and update quarterly an inventory of organizational systems.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Inventory
Develop and update [Assignment: organization-defined frequency] an inventory of organizational systems.
Discussion:[OMB A-130] provides guidance on developing systems inventories and associated reporting requirements. System inventory refers to an organization-wide inventory of systems, not system components as described in CM-8.' WHERE [Requirement_Id] = 37842
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(i) Establish, maintain, and update quarterly inventory of all systems, applications, and projects that process sensitive information.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Inventory of Personally Identifiable Information
Establish, maintain, and update [Assignment: organization-defined frequency] an inventory of all systems, applications, and projects that process personally identifiable information.
Discussion:An inventory of systems, applications, and projects that process personally identifiable information supports the mapping of data actions, providing individuals with privacy notices, maintaining accurate personally identifiable information, and limiting the processing of personally identifiable information when such information is not needed for operational purposes. Organizations may use this inventory to ensure that systems only process the personally identifiable information for authorized purposes and that this processing is still relevant and necessary for the purpose specified therein.' WHERE [Requirement_Id] = 37843
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Develop, monitor, and report on the results of information security and privacy measures of performance.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'Measures of Performance
Develop, monitor, and report on the results of information security and privacy measures of performance.
Discussion:Measures of performance are outcome-based metrics used by an organization to measure the effectiveness or efficiency of the information security and privacy programs and the controls employed in support of the program. To facilitate security and privacy risk management, organizations consider aligning measures of performance with the organizational risk tolerance as defined in the risk management strategy.' WHERE [Requirement_Id] = 37844
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Develop and maintain an enterprise architecture with consideration for information security, privacy, and the resulting risk to organizational operations and assets, individuals, other organizations, and the Nation.
[Implementation Statement]
+
+Related Controls: AU-6, PL-2, PL-8, PM-11, RA-2, SA-3, SA-8, SA-17
+
+
+', [Supplemental_Info]=N'Enterprise Architecture
Develop and maintain an enterprise architecture with consideration for information security, privacy, and the resulting risk to organizational operations and assets, individuals, other organizations, and the Nation.
Discussion:The integration of security and privacy requirements and controls into the enterprise architecture helps to ensure that security and privacy considerations are addressed throughout the system development life cycle and are explicitly related to the organization’s mission and business processes. The process of security and privacy requirements integration also embeds into the enterprise architecture and the organization’s security and privacy architectures consistent with the organizational risk management strategy. For PM-7, security and privacy architectures are developed at a system-of-systems level, representing all organizational systems. For PL-8, the security and privacy architectures are developed at a level that represents an individual system. The system-level architectures are consistent with the security and privacy architectures defined for the organization. Security and privacy requirements and control integration are most effectively accomplished through the rigorous application of the Risk Management Framework [SP 800-37] and supporting security standards and guidelines.' WHERE [Requirement_Id] = 37845
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(i) Offload printing, copying, or any non-essential functions or services to other systems, system components, or an external provider. Non-essential functions or services are those which, whenever feasible, are not co-located with the functions or services that support essential mission or business functions. Maintaining such functions on the same system or system component increases the attack surface of the organization’s mission-essential functions or services.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Offloading
Offload [Assignment: organization-defined non-essential functions or services] to other systems, system components, or an external provider.
Discussion:Not every function or service that a system provides is essential to organizational mission or business functions. Printing or copying is an example of a non-essential but supporting service for an organization. Whenever feasible, such supportive but non-essential functions or services are not co-located with the functions or services that support essential mission or business functions. Maintaining such functions on the same system or system component increases the attack surface of the organization’s mission-essential functions or services. Moving supportive but non-essential functions to a non-critical system, system component, or external provider can also increase efficiency by putting those functions or services under the control of individuals or providers who are subject matter experts in the functions or services.' WHERE [Requirement_Id] = 37846
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Address information security and privacy issues in the development, documentation, and updating of a critical infrastructure and key resources protection plan.
[Implementation Statement]
+
+OT Systems Only:
+Organizations should be familiar with protection requirements and guidance defined by executive orders, government sector specific agencies (SSAs), and industry trade organizations.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-2, CP-4, PE-18, PL-2, PM-9, PM-11, PM-18, RA-3, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations should be familiar with the protection requirements and guidance defined by Executive Orders, government sector-specific agencies (SSAs), and industry trade organizations.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Critical Infrastructure Plan
Address information security and privacy issues in the development, documentation, and updating of a critical infrastructure and key resources protection plan.
Discussion:Protection strategies are based on the prioritization of critical assets and resources. The requirement and guidance for defining critical infrastructure and key resources and for preparing an associated critical infrastructure protection plan are found in applicable laws, executive orders, directives, policies, regulations, standards, and guidelines.' WHERE [Requirement_Id] = 37847
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Develops a comprehensive strategy to manage:
[a: Implementation Statement]
+ i) Security risk to organizational operations and assets, individuals, other organizations, and the Nation associated with the operation and use of organizational systems; and
[a.i: Implementation Statement]
+ ii) Privacy risk to individuals resulting from the authorized processing of personally identifiable information;
[a.ii: Implementation Statement]
+b) Implement the risk management strategy consistently across the organization; and
[b: Implementation Statement]
+c) Review and update the risk management strategy [Assignment: organization-defined frequency] or as required, to address organizational changes.
[c: Implementation Statement]
+
+Related Controls: AC-1, AT-1, AU-1, CA-1, CA-2, CA-5, CA-6, CA-7, CM-1, CP-1, IA-1, IR-1, MA-1, MP-1, PE-1, PL-1, PL-2, PM-2, PM-8, PM-18, PM-28, PM-30, PS-1, PT-1, PT-2, PT-3, RA-1, RA-3, RA-9, SA-1, SA-4, SC-1, SI-1, SI-12, SR-1, SR-2
+
+
+', [Supplemental_Info]=N'Risk Management Strategy
a. Develops a comprehensive strategy to manage:
1. Security risk to organizational operations and assets, individuals, other organizations, and the Nation associated with the operation and use
of organizational systems; and
2. Privacy risk to individuals resulting from the authorized processing of personally identifiable information;
b. Implement the risk management strategy consistently across the organization; and
c. Review and update the risk management strategy [Assignment: organization-defined frequency] or as required, to address organizational changes.
Discussion:An organization-wide risk management strategy includes an expression of the security and privacy risk tolerance for the organization, security and privacy risk mitigation strategies, acceptable risk assessment methodologies, a process for evaluating security and privacy risk across the organization with respect to the organization’s risk tolerance, and approaches for monitoring risk over time. The senior accountable official for risk management (agency head or designated official) aligns information security management processes with strategic, operational, and budgetary planning processes. The risk executive function, led by the senior accountable official for risk management, can facilitate consistent application of the risk management strategy organization-wide. The risk management strategy can be informed by security and privacy risk-related inputs from other sources, both internal and external to the organization, to ensure that the strategy is broad-based and comprehensive. The supply chain risk management strategy described in PM-30 can also provide useful inputs to the organization-wide risk management strategy.' WHERE [Requirement_Id] = 37848
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Personnel Security Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] personnel security policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the personnel security policy and the associated personnel security controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the personnel security policy and procedures; and
c. Review and update the current personnel security:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Personnel security policy and procedures for the controls in the PS family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on their development. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission level or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies reflecting the complex nature of organizations. Procedures can be established for security and privacy programs, for mission/business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to personnel security policy and procedures include, but are not limited to, assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37849
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Assign a risk designation to all organizational positions;
[a: Implementation Statement]
+b. Establish screening criteria for individuals filling those positions; and
[b: Implementation Statement]
+c. Review and update position risk designations annually.
[c: Implementation Statement]
+
+OT Systems Only:
+Private organizations should utilize existing sector specific regulations, laws, policy, or guidance for determining appropriate risk designations for positions.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-5, AT-3, PE-2, PE-3, PL-2, PS-3, PS-6, SA-5, SA-21, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: Private organizations should utilize existing sector-specific regulations, laws, policy, and guidance for determining appropriate risk designations for positions.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Position Risk Designation
a. Assign a risk designation to all organizational positions;
b. Establish screening criteria for individuals filling those positions; and
c. Review and update position risk designations [Assignment: organization-defined frequency].
Discussion:Position risk designations reflect Office of Personnel Management (OPM) policy and guidance. Proper position designation is the foundation of an effective and consistent suitability and personnel security program. The Position Designation System (PDS) assesses the duties and responsibilities of a position to determine the degree of potential damage to the efficiency or integrity of the service due to misconduct of an incumbent of a position and establishes the risk level of that position. The PDS assessment also determines if the duties and responsibilities of the position present the potential for position incumbents to bring about a material adverse effect on national security and the degree of that potential effect, which establishes the sensitivity level of a position. The results of the assessment determine what level of investigation is conducted for a position. Risk designations can guide and inform the types of authorizations that individuals receive when accessing organizational information and information systems. Position screening criteria include explicit information security role appointment requirements. Parts 1400 and 731 of Title 5, Code of Federal Regulations, establish the requirements for organizations to evaluate relevant covered positions for a position sensitivity and position risk designation commensurate with the duties and responsibilities of those positions.' WHERE [Requirement_Id] = 37850
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Determine screening tiers and requirements based on the sensitivity of the position;
[a: Implementation Statement]
+b. Screen individuals prior to authorizing access to the system;
[b: Implementation Statement]
+c. Rescreen individuals every five years;
[c: Implementation Statement]
+d. Conduct continuous screening for defined factors for sensitive positions; and
[d: Implementation Statement]
+e. Notify employees of screening criteria, and when updates are made to the screening criteria, prior to screening.
[e: Implementation Statement]
+
+Related Controls: AC-2, IA-4, MA-5, PE-2, PM-12, PS-2, PS-6, PS-7, SA-21
+
+
+', [Supplemental_Info]=N'Personnel Screening
a. Screen individuals prior to authorizing access to the system; and
b. Rescreen individuals in accordance with [Assignment: organization-defined conditions requiring rescreening and, where rescreening is so indicated, the frequency of rescreening].
Discussion:Personnel screening and rescreening activities reflect applicable laws, executive orders, directives, regulations, policies, standards, guidelines, and specific criteria established for the risk designations of assigned positions. Examples of personnel screening include background investigations and agency checks. Organizations may define different rescreening conditions and frequencies for personnel accessing systems based on types of information processed, stored, or transmitted by the systems.' WHERE [Requirement_Id] = 37851
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Upon termination of individual employment:
[Implementation Statement]
+
+a. Provide appropriate notification and disable physical and logical access to all systems in accordance with:
[a: Implementation Statement]
+ i) Control 3.1 Access Control, Section 2, “AC-2 Account Management";
[a.i: Implementation Statement]
+ ii) Control 3.1 Access Control, Section 2, (l), (iii), “AC-2 (3) Disable Accounts”;
[a.ii: Implementation Statement]
+ iii) Control 3.1 Access Control, Section 2, (l), (viii), “AC-2 (13) Disable Accounts for High-Risk Individuals”; and
[a.iii: Implementation Statement]
+ iv) P/I 7.3.3 Separation from Employment Policy.
[a.iv: Implementation Statement]
+b. Terminate or revoke any authenticators and credentials associated with the individual;
[b: Implementation Statement]
+c. Conduct exit interviews that include a discussion of:
[c: Implementation Statement]
+ i) The security constraints imposed by being former employees;
[c.i: Implementation Statement]
+ ii) Receipt/retrieval and accountability of system-related property;
[c.ii: Implementation Statement]
+ iii) Reminders of NDAs and potential limitations on future employment; and
[c.iii: Implementation Statement]
+ iv) Sensitive personnel matters for involuntary separations in accordance with P/I 7.3.3 Separation from Employment Policy.
[c.iv: Implementation Statement]
+d. Retrieve all security-related organizational system-related property. System property includes hardware authentication tokens, system administration technical manuals, keys, identification cards, and building passes;
[d: Implementation Statement]
+e. Retrieve all organizational information and property in accordance with P/I 7.3.3 Separation from Employment Policy; and
[e: Implementation Statement]
+f. Retain access to organizational information and systems formerly controlled by terminated individual.
[f: Implementation Statement]
+
+Related Controls: AC-2, IA-4, PE-2, PM-12, PS-6, PS-7
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Personnel Termination
Upon termination of individual employment:
a. Disable system access within [Assignment: organization-defined time period];
b. Terminate or revoke any authenticators and credentials associated with the individual;
c. Conduct exit interviews that include a discussion of [Assignment: organization-defined information security topics];
d. Retrieve all security-related organizational system-related property; and
e. Retain access to organizational information and systems formerly controlled by terminated individual.
Discussion:System property includes hardware authentication tokens, system administration technical manuals, keys, identification cards, and building passes. Exit interviews ensure that terminated individuals understand the security constraints imposed by being former employees and that proper accountability is achieved for system-related property. Security topics at exit interviews include reminding individuals of nondisclosure agreements and potential limitations on future employment. Exit interviews may not always be possible for some individuals, including in cases related to the unavailability of supervisors, illnesses, or job abandonment. Exit interviews are important for individuals with security clearances. The timely execution of termination actions is essential for individuals who have been terminated for cause. In certain situations, organizations consider disabling the system accounts of individuals who are being terminated prior to the individuals being notified.' WHERE [Requirement_Id] = 37852
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Use automated mechanisms to both notify personnel or roles of individual termination actions and to disable access to system resources.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Actions
Use [Assignment: organization-defined automated mechanisms] to [Selection (one or more): notify [Assignment: organization-defined personnel or roles] of individual termination actions; disable access to system resources].
Discussion:In organizations with many employees, not all personnel who need to know about termination actions receive the appropriate notifications, or if such notifications are received, they may not occur in a timely manner. Automated mechanisms can be used to send automatic alerts or notifications to organizational personnel or roles when individuals are terminated. Such automatic alerts or notifications can be conveyed in a variety of ways, including via telephone, electronic mail, text message, or websites. Automated mechanisms can also be employed to quickly and thoroughly disable access to system resources after an employee is terminated.' WHERE [Requirement_Id] = 37853
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Review and confirm ongoing operational need for current logical and physical access authorizations to systems and facilities when individuals are reassigned or transferred to other positions within the organization;
[a: Implementation Statement]
+b. Initiate transfer or reassignment actions prior to the transfer date;
[b: Implementation Statement]
+c. Modify access authorization as needed to correspond with any changes in operational need due to reassignment or transfer; and
[c: Implementation Statement]
+d. Notify required stakeholders prior to the transfer date.
[d: Implementation Statement]
+
+Related Controls: AC-2, IA-4, PE-2, PM-12, PS-4, PS-7
+
+
+', [Supplemental_Info]=N'Personnel Transfer
a. Review and confirm ongoing operational need for current logical and physical access authorizations to systems and facilities when individuals are reassigned or transferred to other positions within the organization;
b. Initiate [Assignment: organization-defined transfer or reassignment actions] within [Assignment: organization-defined time period following the formal transfer action];
c. Modify access authorization as needed to correspond with any changes in operational need due to reassignment or transfer; and
d. Notify [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period].
Discussion:Personnel transfer applies when reassignments or transfers of individuals are permanent or of such extended duration as to make the actions warranted. Organizations define actions appropriate for the types of reassignments or transfers, whether permanent or extended. Actions that may be required for personnel transfers or reassignments to other positions within organizations include returning old and issuing new keys, identification cards, and building passes; closing system accounts and establishing new accounts; changing system access authorizations (i.e., privileges); and providing for access to official records to which individuals had access at previous work locations and in previous system accounts.' WHERE [Requirement_Id] = 37854
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop and document access agreements for organizational systems;
[a: Implementation Statement]
+b. Review and update the access agreements to include NDAs, acceptable use agreements, rules of behavior (RoB), and conflict-of-interest agreements annually, and in accordance with:
[b: Implementation Statement]
+ i) Control 3.15 Planning, Section 3, “PL-4 Rules of Behavior”; and
[b.i: Implementation Statement]
+ ii) Control 3.1 Access Control, Section 8, “AC-8 System Use Notification”.
[b.ii: Implementation Statement]
+c. Verify that individuals requiring access to organizational information and systems:
[c: Implementation Statement]
+ i) Sign appropriate access agreements prior to being granted access; and
[c.i: Implementation Statement]
+ ii) Re-sign access agreements to maintain access to organizational systems annually and when access agreements have been updated.
[c.ii: Implementation Statement]
+
+Related Controls: AC-8, AC-17, PE-2, PL-4, PS-2, PS-3, PS-6, PS-7, PS-8, SA-21, SI-12
+
+
+', [Supplemental_Info]=N'Access Agreements
a. Develop and document access agreements for organizational systems;
b. Review and update the access agreements [Assignment: organization-defined frequency]; and
c. Verify that individuals requiring access to organizational information and systems:
1. Sign appropriate access agreements prior to being granted access; and
2. Re-sign access agreements to maintain access to organizational systems when access agreements have been updated or [Assignment:
organization-defined frequency].
Discussion:Access agreements include nondisclosure agreements, acceptable use agreements, rules of behavior, and conflict-of-interest agreements. Signed access agreements include an acknowledgement that individuals have read, understand, and agree to abide by the constraints associated with organizational systems to which access is authorized. Organizations can use electronic signatures to acknowledge access agreements unless specifically prohibited by organizational policy.' WHERE [Requirement_Id] = 37855
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish personnel security requirements, including security roles and responsibilities for external providers;
[a: Implementation Statement]
+b. Require external providers to comply with personnel security policies and procedures established by the organization;
[b: Implementation Statement]
+c. Document personnel security requirements;
[c: Implementation Statement]
+d. External providers shall notify Contract Administrator (CA)/Contracting Officer''s Technical Representative (COTRs) and required stakeholders of any personnel transfers or terminations of external personnel who possess organizational credentials and/or badges or who have system privileges immediately unless otherwise specified in:
[d: Implementation Statement]
+ i) Control 3.1 Access Control, Section 2, “AC-2 Account Management";
[d.i: Implementation Statement]
+ ii) P/I 7.2.2 Recruitment and Hiring Policy; and
[d.ii: Implementation Statement]
+ iii) P/I 7.3.3 Separation from Employment Policy.
[d.iii: Implementation Statement]
+e. Monitor provider compliance with personnel security requirements.
[e: Implementation Statement]
+
+Related Controls: AC-2, AT-2, AT-3, MA-5, PE-3, PS-2, PS-3, PS-4, PS-5, PS-6, SA-5, SA-9, SA-21
+
+
+', [Supplemental_Info]=N'External Personnel Security
a. Establish personnel security requirements, including security roles and responsibilities for external providers;
b. Require external providers to comply with personnel security policies and procedures established by the organization;
c. Document personnel security requirements;
d. Require external providers to notify [Assignment: organization-defined personnel or roles] of any personnel transfers or terminations of external personnel who possess organizational credentials and/or badges, or who have system privileges within [Assignment: organization-defined time period]; and
e. Monitor provider compliance with personnel security requirements.
Discussion:External provider refers to organizations other than the organization operating or acquiring the system. External providers include service bureaus, contractors, and other organizations that provide system development, information technology services, testing or assessment services, outsourced applications, and network/security management. Organizations explicitly include personnel security requirements in acquisition-related documents. External providers may have personnel working at organizational facilities with credentials, badges, or system privileges issued by organizations. Notifications of external personnel changes ensure the appropriate termination of privileges and credentials. Organizations define the transfers and terminations deemed reportable by security-related characteristics that include functions, roles, and the nature of credentials or privileges associated with transferred or terminated individuals.' WHERE [Requirement_Id] = 37856
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Employ a formal sanctions process for individuals failing to comply with established security and privacy policies and procedures; and
[a: Implementation Statement]
+b. Notify the CA and COTR regarding external provider actions and notify appropriate stakeholders based on the nature of the infraction within 24 hours (or less if directed by other policy) when a formal employee sanctions process is initiated, identifying the individual sanctioned and the reason for the sanction.
[b: Implementation Statement]
+
+Related Controls: All XX-1 Controls, PL-4, PM-12, PS-6, PT-1
+
+
+', [Supplemental_Info]=N'Personnel Sanctions
a. Employ a formal sanctions process for individuals failing to comply with established information security and privacy policies and procedures; and
b. Notify [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period] when a formal employee sanctions process is initiated, identifying the individual sanctioned and the reason for the sanction.
Discussion:Organizational sanctions reflect applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Sanctions processes are described in access agreements and can be included as part of general personnel policies for organizations and/or specified in security and privacy policies. Organizations consult with the Office of the General Counsel regarding matters of employee sanctions.' WHERE [Requirement_Id] = 37857
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Incorporate security and privacy roles and responsibilities into organizational position descriptions, as applicable.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'Position Descriptions
Incorporate security and privacy roles and responsibilities into organizational position descriptions.
Discussion:Specification of security and privacy roles in individual organizational position descriptions facilitates clarity in understanding the security or privacy responsibilities associated with the roles and the role-based security and privacy training requirements for the roles.' WHERE [Requirement_Id] = 37858
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+This control family does not apply to the activities of the Privacy Administrator described in P/I 9.2 Privacy Policy or the PARP Administrator described in P/I 9.3 Public Access to Records Policy.
+
+
+', [Supplemental_Info]=N'Personally Identifiable Information Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] personally identifiable information processing
and transparency policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the personally identifiable information processing and transparency policy and the associated
personally identifiable information processing and transparency controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the personally identifiable information processing and transparency policy and procedures; and
c. Review and update the current personally identifiable information processing and transparency:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Personally identifiable information processing and transparency policy and procedures address the controls in the PT family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of personally identifiable information processing and transparency policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to personally identifiable information processing and transparency policy and procedures include assessment or audit findings, breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37859
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Document all storage, processing, and transmission (includes, but is not limited to, the creation, collection, use, processing, storage, maintenance, dissemination, disclosure, disposal, logging, generation, transformation, analysis, replication, and data mining) of sensitive information in System Security Plan (SSP);
[a: Implementation Statement]
+b. Obtain approval for the processing of sensitive information as documented in SSP in accordance with Control 3.15 Planning, Section 2, “PL-2 System Security Plans”;
[b: Implementation Statement]
+c. Restrict the storage, processing, transmission, and replication of sensitive information to only what is authorized in the SSP; and
[c: Implementation Statement]
+d. Ensure all sensitive information is encrypted in storage and in transit, in accordance with:
[d: Implementation Statement]
+ i) Control 3.17, System and Communications Protection, Section 7, (i), “SC-8 (1) Cryptographic Protection”; Section 10, “SC-13 Cryptographic Protection”; Section 19, (i), “SC-28 (1) Cryptographic Protection”; and
[d.i: Implementation Statement]
+ ii) Control 3.5 Contingency Planning, Section 8, “CP-9 System Backup” and (d), (v), “CP-9
+ (8) Cryptographic Protection”.
[d.ii: Implementation Statement]
+
+Related Controls: AC-2, AC-3, IR-9, PM-9, PM-24, PT-1, PT-3, PT-5, PT-6, RA-3, RA-8, SI-12, SI-18
+
+
+', [Supplemental_Info]=N'Authority to Process Personally Identifiable Information
a. Determine and document the [Assignment: organization-defined authority] that permits the [Assignment: organization-defined processing] of personally identifiable information; and
b. Restrict the [Assignment: organization-defined processing] of personally identifiable information to only that which is authorized.
Discussion:The processing of personally identifiable information is an operation or set of operations that the information system or organization performs with respect to personally identifiable information across the information life cycle. Processing includes but is not limited to creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposal. Processing operations also include logging, generation, and transformation, as well as analysis techniques, such as data mining.
Organizations may be subject to laws, executive orders, directives, regulations, or policies that establish the organization’s authority and thereby limit certain types of processing of personally identifiable information or establish other requirements related to the processing. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such authority, particularly if the organization is subject to multiple jurisdictions or sources of authority. For organizations whose processing is not determined according to legal authorities, the organization’s policies and determinations govern how they process personally identifiable information. While processing of personally identifiable information may be legally permissible, privacy risks may still arise. Privacy risk assessments can identify the privacy risks associated with the authorized processing of personally identifiable information and support solutions to manage such risks.
Organizations consider applicable requirements and organizational policies to determine how to document this authority. For federal agencies, the authority to process personally identifiable information is documented in privacy policies and notices, system of records notices, privacy impact assessments, [PRIVACT] statements, computer matching agreements and notices, contracts, information sharing agreements, memoranda of understanding, and other documentation.
Organizations take steps to ensure that personally identifiable information is only processed for authorized purposes, including training organizational personnel on the authorized processing of personally identifiable information and monitoring and auditing organizational use of personally identifiable information.
' WHERE [Requirement_Id] = 37860
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Attach data tags containing [Assignment: organization-defined authorized processing] to [Assignment: organization-defined elements of personally identifiable information].
[Implementation Statement]
+
+Related Controls: AC-16, CA-6, CM-12, PM-5, PM-22, PT-4, SC-16, SC-43, SI-10, SI-15, SI-19
+
+
+', [Supplemental_Info]=N' Data Tagging
Attach data tags containing [Assignment: organization-defined authorized processing] to [Assignment: organization-defined elements of personally identifiable information].
Discussion:Data tags support the tracking and enforcement of authorized processing by conveying the types of processing that are authorized along with the relevant elements of personally identifiable information throughout the system. Data tags may also support the use of automated tools.' WHERE [Requirement_Id] = 37861
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Manage enforcement of the authorized processing of personally identifiable information using [Assignment: organization-defined automated mechanisms].
[Implementation Statement]
+
+Related Controls: CA-6, CM-12, PM-5, PM-22, PT-4, SC-16, SC-43, SI-10, SI-15, SI-19
+
+
+', [Supplemental_Info]=N' Automation
Manage enforcement of the authorized processing of personally identifiable information using [Assignment: organization-defined automated mechanisms].
Discussion:Automated mechanisms augment verification that only authorized processing is occurring.' WHERE [Requirement_Id] = 37862
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Identify and document the approved reasons for processing sensitive information;
[a: Implementation Statement]
+b. Restrict the storage, processing, and transmission of sensitive information to only that which is compatible with the identified purpose(s);
[b: Implementation Statement]
+c. Monitor changes in processing sensitive information and implement mechanisms to ensure any changes are made in accordance with defined requirements to allow or restrict new processing, as appropriate. Mechanisms may include obtaining consent from individuals or other measures to manage privacy risks that arise from changes in sensitive information processing purposes; and
[c: Implementation Statement]
+d. All existing uses of sensitive information are subject to review and reauthorization or restriction.
[d: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AT-3, IR-9, PM-9, PM-25, PT-2, PT-5, PT-6, PT-7, RA-8, SI-12, SI-18
+
+
+', [Supplemental_Info]=N'Personally Identifiable Information Processing Purposes
a. Identify and document the [Assignment: organization-defined purpose(s)] for processing personally identifiable information;
b. Describe the purpose(s) in the public privacy notices and policies of the organization;
c. Restrict the [Assignment: organization-defined processing] of personally identifiable information to only that which is compatible with the identified purpose(s); and
d. Monitor changes in processing personally identifiable information and implement [Assignment: organization-defined mechanisms] to ensure that any changes are made in accordance with [Assignment: organization-defined requirements].
Discussion:Identifying and documenting the purpose for processing provides organizations with a basis for understanding why personally identifiable information may be processed. The term “process” includes every step of the information life cycle, including creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposal. Identifying and documenting the purpose of processing is a prerequisite to enabling owners and operators of the system and individuals whose information is processed by the system to understand how the information will be processed. This enables individuals to make informed decisions about their engagement with information systems and organizations and to manage their privacy interests. Once the specific processing purpose has been identified, the purpose is described in the organization’s privacy notices, policies, and any related privacy compliance documentation, including privacy impact assessments, system of records notices, [PRIVACT] statements, computer matching notices, and other applicable Federal Register notices.
Organizations take steps to help ensure that personally identifiable information is processed only for identified purposes, including training organizational personnel and monitoring and auditing organizational processing of personally identifiable information.
Organizations monitor for changes in personally identifiable information processing. Organizational personnel consult with the senior agency official for privacy and legal counsel to ensure that any new purposes that arise from changes in processing are compatible with the purpose for which the information was collected, or if the new purpose is not compatible, implement mechanisms in accordance with defined requirements to allow for the new processing, if appropriate. Mechanisms may include obtaining consent from individuals, revising privacy policies, or other measures to manage privacy risks that arise from changes in personally identifiable information processing purposes.
' WHERE [Requirement_Id] = 37863
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Attach data tags containing the following purposes to [Assignment: organization-defined elements of personally identifiable information]: [Assignment: organization-defined processing purposes].
[Implementation Statement]
+
+Related Controls: CA-6, CM-12, PM-5, PM-22, SC-16, SC-43, SI-10, SI-15, SI-19
+
+
+', [Supplemental_Info]=N' Data Tagging
Attach data tags containing the following purposes to [Assignment: organization-defined elements of personally identifiable information]: [Assignment: organization-defined processing purposes].
Discussion:Data tags support the tracking of processing purposes by conveying the purposes along with the relevant elements of personally identifiable information throughout the system. By conveying the processing purposes in a data tag along with the personally identifiable information as the information transits a system, a system owner or operator can identify whether a change in processing would be compatible with the identified and documented purposes. Data tags may also support the use of automated tools.' WHERE [Requirement_Id] = 37864
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Track processing purposes of personally identifiable information using [Assignment: organization-defined automated mechanisms].
[Implementation Statement]
+
+Related Controls: CA-6, CM-12, PM-5, PM-22, SC-16, SC-43, SI-10, SI-15, SI-19
+
+
+', [Supplemental_Info]=N' Automation
Track processing purposes of personally identifiable information using [Assignment: organization-defined automated mechanisms].
Discussion:Automated mechanisms augment tracking of the processing purposes.' WHERE [Requirement_Id] = 37865
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement mechanisms for individuals to consent to the processing of their sensitive information prior to its collection that facilitate individuals’ informed decision-making.
[Implementation Statement]
+
+Related Controls: PT-2, PT-5
+
+
+', [Supplemental_Info]=N'Consent
Implement [Assignment: organization-defined tools or mechanisms] for individuals to consent to the processing of their personally identifiable information prior to its collection that facilitate individuals’ informed decision-making.
Discussion:Consent allows individuals to participate in making decisions about the processing of their information and transfers some of the risk that arises from the processing of personally identifiable information from the organization to an individual. Consent may be required by applicable laws, executive orders, directives, regulations, policies, standards, or guidelines. Otherwise, when selecting consent as a control, organizations consider whether individuals can be reasonably expected to understand and accept the privacy risks that arise from their authorization. Organizations consider whether other controls may more effectively mitigate privacy risk either alone or in conjunction with consent. Organizations also consider any demographic or contextual factors that may influence the understanding or behavior of individuals with respect to the processing carried out by the system or organization. When soliciting consent from individuals, organizations consider the appropriate mechanism for obtaining consent, including the type of consent (e.g., opt-in, opt-out), how to properly authenticate and identity proof individuals and how to obtain consent through electronic means. In addition, organizations consider providing a mechanism for individuals to revoke consent once it has been provided, as appropriate. Finally, organizations consider usability factors to help individuals understand the risks being accepted when providing consent, including the use of plain language and avoiding technical jargon.' WHERE [Requirement_Id] = 37866
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide [Assignment: organization-defined mechanisms] to allow individuals to tailor processing permissions to selected elements of personally identifiable information.
[Implementation Statement]
+
+Related Controls: PT-2
+
+
+', [Supplemental_Info]=N' Tailored Consent
Provide [Assignment: organization-defined mechanisms] to allow individuals to tailor processing permissions to selected elements of personally identifiable information.
Discussion:While some processing may be necessary for the basic functionality of the product or service, other processing may not. In these circumstances, organizations allow individuals to select how specific personally identifiable information elements may be processed. More tailored consent may help reduce privacy risk, increase individual satisfaction, and avoid adverse behaviors, such as abandonment of the product or service.' WHERE [Requirement_Id] = 37867
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Present [Assignment: organization-defined consent mechanisms] to individuals at [Assignment: organization-defined frequency] and in conjunction with [Assignment: organization-defined personally identifiable information processing].
[Implementation Statement]
+
+Related Controls: PT-2
+
+
+', [Supplemental_Info]=N' Just-in-time Consent
Present [Assignment: organization-defined consent mechanisms] to individuals at [Assignment: organization-defined frequency] and in conjunction with [Assignment: organization-defined personally identifiable information processing].
Discussion:Just-in-time consent enables individuals to participate in how their personally identifiable information is being processed at the time or in conjunction with specific types of data processing when such participation may be most useful to the individual. Individual assumptions about how personally identifiable information is being processed might not be accurate or reliable if time has passed since the individual last gave consent or the type of processing creates significant privacy risk. Organizations use discretion to determine when to use just-in-time consent and may use supporting information on demographics, focus groups, or surveys to learn more about individuals’ privacy interests and concerns.' WHERE [Requirement_Id] = 37868
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement [Assignment: organization-defined tools or mechanisms] for individuals to revoke consent to the processing of their personally identifiable information.
[Implementation Statement]
+
+Related Controls: PT-2
+
+
+', [Supplemental_Info]=N' Revocation
Implement [Assignment: organization-defined tools or mechanisms] for individuals to revoke consent to the processing of their personally identifiable information.
Discussion:Revocation of consent enables individuals to exercise control over their initial consent decision when circumstances change. Organizations consider usability factors in enabling easy-to-use revocation capabilities.' WHERE [Requirement_Id] = 37869
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide notice to individuals about the processing of sensitive information that:
[Implementation Statement]
+
+a. Is available to individuals upon first interacting with an organization, and subsequently on an annual basis;
[a: Implementation Statement]
+b. Is clear and easy-to-understand, expressing information about sensitive information processing in plain language;
[b: Implementation Statement]
+c. Identifies the authority that authorizes the processing of sensitive information;
[c: Implementation Statement]
+d. Identifies the purposes for which sensitive information is to be processed; and
[d: Implementation Statement]
+e. Privacy Notices shall list all privacy-related information, to include:
[e: Implementation Statement]
+ i) Name, such as full name, maiden name, mother‘s maiden name, or alias;
[e.i: Implementation Statement]
+ ii) Personal identification number, such as social security number (SSN), passport number, driver‘s license number, taxpayer identification number, patient identification number, and financial account or credit card number;
[e.ii: Implementation Statement]
+ iii) Address information, such as street address or email address;
[e.iii: Implementation Statement]
+ iv) Asset information, such as Internet Protocol (IP) or Media Access Control (MAC) address or other host-specific persistent static identifier that consistently links to a particular person or small, well-defined group of people;
[e.iv: Implementation Statement]
+ v) Telephone numbers, including mobile, business, and personal numbers;
[e.v: Implementation Statement]
+ vi) Personal characteristics, including photographic image (especially of face or other distinguishing characteristic), x-rays, fingerprints, or other biometric image or template data (e.g., retina scan, voice signature, facial geometry);
[e.vi: Implementation Statement]
+ vii) Information identifying personally owned property, such as vehicle registration number or title number and related information; and
[e.vii: Implementation Statement]
+ viii) Information about an individual that is linked or linkable to one of the above (e.g., date of birth, place of birth, race, religion, weight, activities, geographical indicators, employment information, medical information, education information, financial information).
[e.viii: Implementation Statement]
+
+Related Controls: PT-2, PT-3, PT-4, PT-7, RA-3, SI-18
+
+f. Security Controls Enhancement(s):
[f: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Privacy Notice
Provide notice to individuals about the processing of personally identifiable information that:
a. Is available to individuals upon first interacting with an organization, and subsequently at [Assignment: organization-defined frequency];
b. Is clear and easy-to-understand, expressing information about personally identifiable information processing in plain language;
c. Identifies the authority that authorizes the processing of personally identifiable information;
d. Identifies the purposes for which personally identifiable information is to be processed; and
e. Includes [Assignment: organization-defined information].
Discussion:Privacy notices help inform individuals about how their personally identifiable information is being processed by the system or organization. Organizations use privacy notices to inform individuals about how, under what authority, and for what purpose their personally identifiable information is processed, as well as other information such as choices individuals might have with respect to that processing and other parties with whom information is shared. Laws, executive orders, directives, regulations, or policies may require that privacy notices include specific elements or be provided in specific formats. Federal agency personnel consult with the senior agency official for privacy and legal counsel regarding when and where to provide privacy notices, as well as elements to include in privacy notices and required formats. In circumstances where laws or government-wide policies do not require privacy notices, organizational policies and determinations may require privacy notices and may serve as a source of the elements to include in privacy notices.
Privacy risk assessments identify the privacy risks associated with the processing of personally identifiable information and may help organizations determine appropriate elements to include in a privacy notice to manage such risks. To help individuals understand how their information is being processed, organizations write materials in plain language and avoid technical jargon.
' WHERE [Requirement_Id] = 37870
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Present notice of personally identifiable information processing to individuals at a time and location where the individual provides personally identifiable information or in conjunction with a data action, or [Assignment: organization-defined frequency].
[Implementation Statement]
+
+Related Controls: PM-21
+
+
+', [Supplemental_Info]=N' Just-in-time Notice
Present notice of personally identifiable information processing to individuals at a time and location where the individual provides personally identifiable information or in conjunction with a data action, or [Assignment: organization-defined frequency].
Discussion:Just-in-time notices inform individuals of how organizations process their personally identifiable information at a time when such notices may be most useful to the individuals. Individual assumptions about how personally identifiable information will be processed might not be accurate or reliable if time has passed since the organization last presented notice or the circumstances under which the individual was last provided notice have changed. A just-in-time notice can explain data actions that organizations have identified as potentially giving rise to greater privacy risk for individuals. Organizations can use a just-in-time notice to update or remind individuals about specific data actions as they occur or highlight specific changes that occurred since last presenting notice. A just-in-time notice can be used in conjunction with just-in-time consent to explain what will occur if consent is declined. Organizations use discretion to determine when to use a just-in-time notice and may use supporting information on user demographics, focus groups, or surveys to learn about users’ privacy interests and concerns.' WHERE [Requirement_Id] = 37871
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Include privacy statements on forms that collect information that will be maintained in a privacy system of records, or provide privacy statements on separate forms that can be retained by individuals.
[Implementation Statement]
+
+Related Controls: PT-6
+
+
+', [Supplemental_Info]=N' Privacy Act Statements
Include Privacy Act statements on forms that collect information that will be maintained in a Privacy Act system of records, or provide Privacy Act statements on separate forms that can be retained by individuals.
Discussion:If a federal agency asks individuals to supply information that will become part of a system of records, the agency is required to provide a [PRIVACT] statement on the form used to collect the information or on a separate form that can be retained by the individual. The agency provides a [PRIVACT] statement in such circumstances regardless of whether the information will be collected on a paper or electronic form, on a website, on a mobile application, over the telephone, or through some other medium. This requirement ensures that the individual is provided with sufficient information about the request for information to make an informed decision on whether or not to respond.
[PRIVACT] statements provide formal notice to individuals of the authority that authorizes the solicitation of the information; whether providing the information is mandatory or voluntary; the principal purpose(s) for which the information is to be used; the published routine uses to which the information is subject; the effects on the individual, if any, of not providing all or any part of the information requested; and an appropriate citation and link to the relevant system of records notice. Federal agency personnel consult with the senior agency official for privacy and legal counsel regarding the notice provisions of the [PRIVACT].
' WHERE [Requirement_Id] = 37872
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'For systems that process sensitive information that will be maintained in a system of records:
[Implementation Statement]
+
+a. Establish system of records notices and submit new and modified system of records notices for review to the CPO and ITCS; and
[a: Implementation Statement]
+b. Keep system of records notices accurate, up-to-date, and scoped in accordance with policy.
[b: Implementation Statement]
+
+Related Controls: AC-3, PM-20, PT-2, PT-3, PT-5
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System of Records Notice
For systems that process information that will be maintained in a Privacy Act system of records:
a. Draft system of records notices in accordance with OMB guidance and submit new and significantly modified system of records notices to the OMB and appropriate congressional committees for advance review;
b. Publish system of records notices in the Federal Register; and
c. Keep system of records notices accurate, up-to-date, and scoped in accordance with policy.
Discussion:The [PRIVACT] requires that federal agencies publish a system of records notice in the Federal Register upon the establishment and/or modification of a [PRIVACT] system of records. As a general matter, a system of records notice is required when an agency maintains a group of any records under the control of the agency from which information is retrieved by the name of an individual or by some identifying number, symbol, or other identifier. The notice describes the existence and character of the system and identifies the system of records, the purpose(s) of the system, the authority for maintenance of the records, the categories of records maintained in the system, the categories of individuals about whom records are maintained, the routine uses to which the records are subject, and additional details about the system as described in [OMB A-108].' WHERE [Requirement_Id] = 37873
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Review all routine uses published in the system of records notice annually to ensure continued accuracy, and to ensure that routine uses continue to be compatible with the purpose for which the information was collected.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Routine Uses
Review all routine uses published in the system of records notice at [Assignment: organization-defined frequency] to ensure continued accuracy, and to ensure that routine uses continue to be compatible with the purpose for which the information was collected.
Discussion:A [PRIVACT] routine use is a particular kind of disclosure of a record outside of the federal agency maintaining the system of records. A routine use is an exception to the [PRIVACT] prohibition on the disclosure of a record in a system of records without the prior written consent of the individual to whom the record pertains. To qualify as a routine use, the disclosure must be for a purpose that is compatible with the purpose for which the information was originally collected. The [PRIVACT] requires agencies to describe each routine use of the records maintained in the system of records, including the categories of users of the records and the purpose of the use. Agencies may only establish routine uses by explicitly publishing them in the relevant system of records notice.' WHERE [Requirement_Id] = 37874
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Review all sensitive information exemptions claimed for the system of records annually to ensure they remain appropriate and necessary in accordance with law, that they have been promulgated as regulations, and that they are accurately described in the system of records notice.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Exemption Rules
Review all Privacy Act exemptions claimed for the system of records at [Assignment: organization-defined frequency] to ensure they remain appropriate and necessary in accordance with law, that they have been promulgated as regulations, and that they are accurately described in the system of records notice.
Discussion:The [PRIVACT] includes two sets of provisions that allow federal agencies to claim exemptions from certain requirements in the statute. In certain circumstances, these provisions allow agencies to promulgate regulations to exempt a system of records from select provisions of the [PRIVACT]. At a minimum, organizations’ [PRIVACT] exemption regulations include the specific name(s) of any system(s) of records that will be exempt, the specific provisions of the [PRIVACT] from which the system(s) of records is to be exempted, the reasons for the exemption, and an explanation for why the exemption is both necessary and appropriate.' WHERE [Requirement_Id] = 37875
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Apply security controls for information systems in accordance with the security categorization in Control 3.16 Risk Assessment, Section 2, “RA-2 Security Categorization”:
[a: Implementation Statement]
+
+Related Controls: IR-9, PT-2, PT-3, RA-2, RA-3
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Specific Categories of Personally Identifiable Information
Apply [Assignment: organization-defined processing conditions] for specific categories of personally identifiable information.
Discussion:Organizations apply any conditions or protections that may be necessary for specific categories of personally identifiable information. These conditions may be required by laws, executive orders, directives, regulations, policies, standards, or guidelines. The requirements may also come from the results of privacy risk assessments that factor in contextual changes that may result in an organizational determination that a particular category of personally identifiable information is particularly sensitive or raises particular privacy risks. Organizations consult with the senior agency official for privacy and legal counsel regarding any protections that may be necessary.' WHERE [Requirement_Id] = 37876
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'When an information system processes Social Security numbers:
+
+(1) Eliminate unnecessary collection, maintenance, and use of Social Security Numbers (SSNs) and other sensitive information;
[1: Implementation Statement]
+ a) Use unique identifiers (e.g., Employee Identifier (EID) or Contractor Identifier (CID)) to differentiate between personnel; and
[1.a: Implementation Statement]
+ b) Only use the SSN where necessary for essential business functions (e.g., financial processing, payroll, benefits, etc.) or other uses consistent with state and federal law;
[1.b: Implementation Statement]
+(2) Do not deny any individual any right, benefit, or privilege provided by law because of such individual’s refusal to disclose his or her SSN; and
[2: Implementation Statement]
+(3) Inform any individual who is asked to disclose his or her Social Security number whether that disclosure is mandatory or voluntary, by what statutory or other authority such number is solicited, and what uses will be made of it.
[3: Implementation Statement]
+
+Related Controls: IA-4
+
+
+', [Supplemental_Info]=N' Social Security Numbers
When a system processes Social Security numbers:
(a) Eliminate unnecessary collection, maintenance, and use of Social Security numbers, and explore alternatives to their use as a personal identifier;
(b) Do not deny any individual any right, benefit, or privilege provided by law because of such individual’s refusal to disclose his or her Social Security number; and
(c) Inform any individual who is asked to disclose his or her Social Security number whether that disclosure is mandatory or voluntary, by what statutory or other authority such number is solicited, and what uses will be made of it.
Discussion:Federal law and policy establish specific requirements for organizations’ processing of Social Security numbers. Organizations take steps to eliminate unnecessary uses of Social Security numbers and other sensitive information and observe any particular requirements that apply.' WHERE [Requirement_Id] = 37877
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prohibit the processing of information describing how any individual exercises rights guaranteed by the First Amendment unless expressly authorized by statute or by the individual or unless pertinent to and within the scope of an authorized law enforcement activity.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' First Amendment Information
Prohibit the processing of information describing how any individual exercises rights guaranteed by the First Amendment unless expressly authorized by statute or by the individual or unless pertinent to and within the scope of an authorized law enforcement activity.
Discussion:The [PRIVACT] limits agencies’ ability to process information that describes how individuals exercise rights guaranteed by the First Amendment. Organizations consult with the senior agency official for privacy and legal counsel regarding these requirements.' WHERE [Requirement_Id] = 37878
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'When an information system or organization processes information for the purpose of conducting a matching program:
[Implementation Statement]
+
+a. Obtain approval from the AO to conduct the matching program;
[a: Implementation Statement]
+b. Develop and enter into a computer matching agreement; and
[b: Implementation Statement]
+c. Sponsoring system owner shall submit to the AO all documentation pursuant to 5 U.S.C. 552a(o)(1), or in the case of a state agency, submit all documentation pursuant to similar or analogous state statutory authority.
[c: Implementation Statement]
+
+Related Controls: PM-24
+
+
+', [Supplemental_Info]=N'Computer Matching Requirements
When a system or organization processes information for the purpose of conducting a matching program:
a. Obtain approval from the Data Integrity Board to conduct the matching program;
b. Develop and enter into a computer matching agreement;
c. Publish a matching notice in the Federal Register;
d. Independently verify the information produced by the matching program before taking adverse action against an individual, if required; and
e. Provide individuals with notice and an opportunity to contest the findings before taking adverse action against an individual.
Discussion:The [PRIVACT] establishes requirements for federal and non-federal agencies if they engage in a matching program. In general, a matching program is a computerized comparison of records from two or more automated [PRIVACT] systems of records or an automated system of records and automated records maintained by a non-federal agency (or agent thereof). A matching program either pertains to federal benefit programs or federal personnel or payroll records. A federal benefit match is performed to determine or verify eligibility for payments under federal benefit programs or to recoup payments or delinquent debts under federal benefit programs. A matching program involves not just the matching activity itself but also the investigative follow-up and ultimate action, if any.' WHERE [Requirement_Id] = 37879
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements:
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Risk Assessment Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] risk assessment policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the risk assessment policy and the associated risk assessment controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the risk assessment policy and procedures; and
c. Review and update the current risk assessment:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Risk assessment policy and procedures address the controls in the RA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of risk assessment policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies reflecting the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to risk assessment policy and procedures include assessment or audit findings, security incidents or breaches, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37880
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Categorize the system and information it processes, stores, and transmits;
[a: Implementation Statement]
+b. Document the security categorization results, including supporting rationale, in the SSP for the system; and
[b: Implementation Statement]
+c. Verify that the AO or AODR reviews and approves the security categorization decision.
[c: Implementation Statement]
+
+OT Systems Only:
+Process hazard analysis (PHA), functional safety assessments, and other organization-established risk assessments can be referenced to identify the impact level of the OT systems.
[OT Systems Only: Implementation Statement]
+
+Related Controls : CM-8, MP-4, PL-2, PL-10, PL-11, PM-7, RA-3, RA-5, RA-7, RA-8, SA-8, SC-7, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: PHA, functional safety assessments, and other organization-established risk assessments can be referenced to identify the impact level of the OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Security Categorization
a. Categorize the system and information it processes, stores, and transmits;
b. Document the security categorization results, including supporting rationale, in the security plan for the system; and
c. Verify that the authorizing official or authorizing official designated representative reviews and approves the security categorization decision.
Discussion:Security categories describe the potential adverse impacts or negative consequences to organizational operations, organizational assets, and individuals if organizational information and systems are compromised through a loss of confidentiality, integrity, or availability. Security categorization is also a type of asset loss characterization in systems security engineering processes that is carried out throughout the system development life cycle. Organizations can use privacy risk assessments or privacy impact assessments to better understand the potential adverse effects on individuals. [CNSSI 1253] provides additional guidance on categorization for national security systems.
Organizations conduct the security categorization process as an organization-wide activity with the direct involvement of chief information officers, senior agency information security officers, senior agency officials for privacy, system owners, mission and business owners, and information owners or stewards. Organizations consider the potential adverse impacts to other organizations and, in accordance with [USA PATRIOT] and Homeland Security Presidential Directives, potential national-level adverse impacts.
Security categorization processes facilitate the development of inventories of information assets and, along with CM-8, mappings to specific system components where information is processed, stored, or transmitted. The security categorization process is revisited throughout the system development life cycle to ensure that the security categories remain accurate and relevant.
' WHERE [Requirement_Id] = 37881
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Conduct a risk assessment, including:
[a: Implementation Statement]
+ i) Identifying threats to and vulnerabilities in the system;
[a.i: Implementation Statement]
+ ii) Determining the likelihood and magnitude of harm from unauthorized access, use, disclosure, disruption, modification, or destruction of the system, the information it processes, stores, or transmits, and any related information; and
[a.ii: Implementation Statement]
+ iii) Determining the likelihood and impact of adverse effects on individuals arising from the processing of PII;
[a.iii: Implementation Statement]
+b. Integrate risk assessment results and risk management decisions from the organization and mission or business process perspectives with system-level risk assessments;
[b: Implementation Statement]
+c. Document risk assessment results in the Governance, Risk, and Compliance (GRC) tool;
[c: Implementation Statement]
+d. Review risk assessment results annually;
[d: Implementation Statement]
+e. Disseminate risk assessment results to the required stakeholders; and
[e: Implementation Statement]
+f. Update the risk assessment annually or when there are significant changes to the system, its environment of operation, or other conditions that may impact the security or privacy state of the system.
[f: Implementation Statement]
+
+Related Controls: CA-3, CA-6, CM-4, CP-6, CP-7, IA-8, MA-5, PE-3, PE-8, PE-18, PL-2, PL-10, PL-11, PM-8, PM-9, PM-28, PT-2, PT-7, RA-2, RA-5, RA-7, SA-8, SA-9, SI-12
+
+
+', [Supplemental_Info]=N'Risk Assessment
a. Conduct a risk assessment, including:
1. Identifying threats to and vulnerabilities in the system;
2. Determining the likelihood and magnitude of harm from unauthorized access, use, disclosure, disruption, modification, or destruction of the
system, the information it processes, stores, or transmits, and any related information; and
3. Determining the likelihood and impact of adverse effects on individuals arising from the processing of personally identifiable information;
b. Integrate risk assessment results and risk management decisions from the organization and mission or business process perspectives with system-level risk assessments;
c. Document risk assessment results in [Selection: security and privacy plans; risk assessment report; [Assignment: organization-defined document]];
d. Review risk assessment results [Assignment: organization-defined frequency];
e. Disseminate risk assessment results to [Assignment: organization-defined personnel or roles]; and
f. Update the risk assessment [Assignment: organization-defined frequency] or when there are significant changes to the system, its environment of operation, or other conditions that may impact the security or privacy state of the system.
Discussion:Risk assessments consider threats, vulnerabilities, likelihood, and impact to organizational operations and assets, individuals, other organizations, and the Nation. Risk assessments also consider risk from external parties, including contractors who operate systems on behalf of the organization, individuals who access organizational systems, service providers, and outsourcing entities.
Organizations can conduct risk assessments at all three levels in the risk management hierarchy (i.e., organization level, mission/business process level, or information system level) and at any stage in the system development life cycle. Risk assessments can also be conducted at various steps in the Risk Management Framework, including preparation, categorization, control selection, control implementation, control assessment, authorization, and control monitoring. Risk assessment is an ongoing activity carried out throughout the system development life cycle.
Risk assessments can also address information related to the system, including system design, the intended use of the system, testing results, and supply chain-related information or artifacts. Risk assessments can play an important role in control selection processes, particularly during the application of tailoring guidance and in the earliest phases of capability determination.
' WHERE [Requirement_Id] = 37882
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(a) Assess supply chain risks associated with [Assignment: organization-defined systems, system components, and system services]; and
[a: Implementation Statement]
+(b) Update the supply chain risk assessment [Assignment: organization-defined frequency], when there are significant changes to the relevant supply chain, or when changes to the system, environments of operation, or other conditions may necessitate a change in the supply chain.
[b: Implementation Statement]
+
+Related Controls: RA-2, RA-9, PM-17, PM-30, SR-2
+
+
+', [Supplemental_Info]=N' Supply Chain Risk Assessment
(a) Assess supply chain risks associated with [Assignment: organization-defined systems, system components, and system services]; and
(b) Update the supply chain risk assessment [Assignment: organization-defined frequency], when there are significant changes to the relevant supply chain, or when changes to the system, environments of operation, or other conditions may necessitate a change in the supply chain.
Discussion:Supply chain-related events include disruption, use of defective components, insertion of counterfeits, theft, malicious development practices, improper delivery practices, and insertion of malicious code. These events can have a significant impact on the confidentiality, integrity, or availability of a system and its information and, therefore, can also adversely impact organizational operations (including mission, functions, image, or reputation), organizational assets, individuals, other organizations, and the Nation. The supply chain-related events may be unintentional or malicious and can occur at any point during the system life cycle. An analysis of supply chain risk can help an organization identify systems or components for which additional supply chain risk mitigations are required.' WHERE [Requirement_Id] = 37883
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Monitor and scan for vulnerabilities in the system and hosted applications monthly and when new vulnerabilities potentially affecting the system are identified and reported;
[a: Implementation Statement]
+b. Employ vulnerability monitoring tools and techniques that facilitate interoperability among tools and automate parts of the vulnerability management process by using standards for:
[b: Implementation Statement]
+ i) Enumerating platforms, software flaws, and improper configurations;
[b.i: Implementation Statement]
+ ii) Formatting checklists and test procedures; and
[b.ii: Implementation Statement]
+ iii) Measuring vulnerability impact;
[b.iii: Implementation Statement]
+c. Analyze vulnerability scan reports and results from vulnerability monitoring;
[c: Implementation Statement]
+d. Remediate vulnerabilities within the following timelines:
[d: Implementation Statement]
+ i) Critical vulnerabilities: immediately but no more than 15 days after notification;
[d.i: Implementation Statement]
+ ii) High vulnerabilities: within 30 days of notification;
[d.ii: Implementation Statement]
+ iii) Medium vulnerabilities: within 60 days of notification; and
[d.iii: Implementation Statement]
+ iv) Low vulnerabilities: within 90 days of notification;
[d.iv: Implementation Statement]
All system changes are subject to implementation in accordance with Control 3.4 Configuration Management.
+e. Share information obtained from the vulnerability monitoring process and control assessments with the required system owner(s) and with other stakeholders on a need-to-know basis, to help eliminate similar vulnerabilities in other systems; and
[e: Implementation Statement]
+f. Employ vulnerability monitoring tools that include the capability to readily update the vulnerabilities to be scanned.
[f: Implementation Statement]
+
+OT Systems Only:
+The organization makes a risk-based determination of how to monitor or scan for vulnerabilities on their system. This may include active scanning, passive monitoring, or compensating controls, depending on the system being scanned. For example, vulnerability examination may be performed using passive monitoring and manual visual inspection to maintain an up-to-date inventory of assets. That inventory can be cross-referenced against a list of known vulnerabilities (e.g., CISA advisories and NIST NVD). Production may need to be taken off-line before active scans can be conducted. Scans are scheduled to occur during planned OT outages whenever possible. If vulnerability scanning tools are used on adjacent non-OT networks, extra care is taken to ensure that they do not mistakenly scan the OT network. Automated network scanning is not applicable to non-routable communications such as serial networks. Compensating controls include providing a replicated or simulated system for conducting scans or host-based vulnerability applications.
[OT Systems Only: Implementation Statement]
+
+Related Controls : CA-2, CA-7, CA-8, CM-2, CM-4, CM-6, CM-8, RA-2, RA-3, SA-11, SA-15, SI-2, SI-3, SI-4, SI-7, SR-11
+
+g. Security Controls Enhancement(s):
[g: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization makes a risk-based determination of how to monitor or scan for vulnerabilities on their system. This may include active scanning, passive monitoring, or compensating controls, depending on the system being scanned. For example, vulnerability examination may be performed using passive monitoring and manual visual inspection to maintain an up-to-date inventory of assets. That inventory can be cross-referenced against a list of known vulnerabilities (e.g., CISA advisories, NIST NVD). Production may need to be taken offline before active scans can be conducted. Scans are scheduled to occur during planned OT outages whenever possible. If vulnerability scanning tools are used on adjacent non-OT networks, extra care is taken to ensure that they do not mistakenly scan the OT network. Automated network scanning is not applicable to non-routable communications, such as serial networks. Compensating controls include providing a replicated or simulated system for conducting scans or host-based vulnerability applications.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.d. Reduce the risk of exploitation of unpatched systems through the application of security patches and updates for operating systems, applications, drivers and firmware on Critical Cyber Systems in a timely manner using a risk-based
+methodology. (p.3)
[1.d: Implementation Statement]
+
+2. Develop a Cybersecurity Assessment Plan and submit (a) an annual update, for approval, that describes how the Owner/Operator will proactively and regularly assess the effectiveness of cybersecurity measures, and identify and resolve device, network, and/or system vulnerabilities, and (b) an annual report that provides Cybersecurity Assessment Plan results from the previous year. See Section III.F. (p.3)
[2: Implementation Statement]
+
+III. Cybersecurity Measures
+
+E. Reduce the risk of exploitation of unpatched systems through the application of security patches and updates for operating systems, applications, drivers, and firmware on Critical Cyber Systems consistent with the Owner/Operator’s risk based methodology. These
+measures must include: (pp.8-9)
[E: Implementation Statement]
+
+E.1. A patch management strategy that ensures all critical security patches and updates on Critical Cyber Systems are current. (p.9)
[E.1: Implementation Statement]
+
+E.2. The strategy required by Section III.E.1. must include: (p.9)
[E.2: Implementation Statement]
+
+E.2.a. The risk methodology for categorizing and determining criticality of patches and updates, and an implementation timeline based on categorization and criticality; and (p.9)
[E.2.a: Implementation Statement]
+
+E.2.b. Prioritization of all security patches and updates on the Cybersecurity and Infrastructure Security Agency''s Known Exploited Vulnerabilities Catalog. (p.9)
[E.2.b: Implementation Statement]
+
+E.3. If the Owner/Operator cannot apply patches and updates on specific Operational Technology systems without causing a severe degradation of operational capability to meet necessary capacity, the patch management strategy must include a description and timeline of additional mitigations that address the risk created by not installing the patch or update. (p.9)
[E.3: Implementation Statement]
+', [Supplemental_Info]=N'Vulnerability Monitoring and Scanning
a. Monitor and scan for vulnerabilities in the system and hosted applications [Assignment: organization-defined frequency and/or randomly in accordance with organization-defined process] and when new vulnerabilities potentially affecting the system are identified and reported;
b. Employ vulnerability monitoring tools and techniques that facilitate interoperability among tools and automate parts of the vulnerability management process by using standards for:
1. Enumerating platforms, software flaws, and improper configurations;
2. Formatting checklists and test procedures; and
3. Measuring vulnerability impact;
c. Analyze vulnerability scan reports and results from vulnerability monitoring;
d. Remediate legitimate vulnerabilities [Assignment: organization-defined response times] in accordance with an organizational assessment of risk;
e. Share information obtained from the vulnerability monitoring process and control assessments with [Assignment: organization-defined personnel or roles] to help eliminate similar vulnerabilities in other systems; and
f. Employ vulnerability monitoring tools that include the capability to readily update the vulnerabilities to be scanned.
Discussion:Security categorization of information and systems guides the frequency and comprehensiveness of vulnerability monitoring (including scans). Organizations determine the required vulnerability monitoring for system components, ensuring that the potential sources of vulnerabilities—such as infrastructure components (e.g., switches, routers, guards, sensors), networked printers, scanners, and copiers—are not overlooked. The capability to readily update vulnerability monitoring tools as new vulnerabilities are discovered and announced and as new scanning methods are developed helps to ensure that new vulnerabilities are not missed by employed vulnerability monitoring tools. The vulnerability monitoring tool update process helps to ensure that potential vulnerabilities in the system are identified and addressed as quickly as possible. Vulnerability monitoring and analyses for custom software may require additional approaches, such as static analysis, dynamic analysis, binary analysis, or a hybrid of the three approaches. Organizations can use these analysis approaches in source code reviews and in a variety of tools, including web-based application scanners, static analysis tools, and binary analyzers.
Vulnerability monitoring includes scanning for patch levels; scanning for functions, ports, protocols, and services that should not be accessible to users or devices; and scanning for flow control mechanisms that are improperly configured or operating incorrectly. Vulnerability monitoring may also include continuous vulnerability monitoring tools that use instrumentation to continuously analyze components. Instrumentation-based tools may improve accuracy and may be run throughout an organization without scanning. Vulnerability monitoring tools that facilitate interoperability include tools that are Security Content Automated Protocol (SCAP)-validated. Thus, organizations consider using scanning tools that express vulnerabilities in the Common Vulnerabilities and Exposures (CVE) naming convention and that employ the Open Vulnerability Assessment Language (OVAL) to determine the presence of vulnerabilities. Sources for vulnerability information include the Common Weakness Enumeration (CWE) listing and the National Vulnerability Database (NVD). Control assessments, such as red team exercises, provide additional sources of potential vulnerabilities for which to scan. Organizations also consider using scanning tools that express vulnerability impact by the Common Vulnerability Scoring System (CVSS).
Vulnerability monitoring includes a channel and process for receiving reports of security vulnerabilities from the public at-large. Vulnerability disclosure programs can be as simple as publishing a monitored email address or web form that can receive reports, including notification authorizing good-faith research and disclosure of security vulnerabilities. Organizations generally expect that such research is happening with or without their authorization and can use public vulnerability disclosure channels to increase the likelihood that discovered vulnerabilities are reported directly to the organization for remediation.
Organizations may also employ the use of financial incentives (also known as “bug bounties”) to further encourage external security researchers to report discovered vulnerabilities. Bug bounty programs can be tailored to the organization’s needs. Bounties can be operated indefinitely or over a defined period of time and can be offered to the general public or to a curated group. Organizations may run public and private bounties simultaneously and could choose to offer partially credentialed access to certain participants in order to evaluate security vulnerabilities from privileged vantage points.
' WHERE [Requirement_Id] = 37884
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish a public reporting channel for receiving reports of vulnerabilities in organizational systems and system components.
[Implementation Statement]
+
+OT Systems Only:
+For federal organizations, CISA Binding Operational Directive 20-01 requires individual federal civilian executive branch agencies to develop and publish a vulnerability disclosure policy (VDP) for their internet-accessible systems and services, and maintain processes to support their VDP. A VDP may be implemented at the organization level, rather than for each individual system. Non-federal as well as federal organizations could achieve this control by creating and monitoring an email address published on a public-facing website for contacting the organization regarding disclosures.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: For federal organizations, CISA Binding Operational Directive 20-01 requires individual federal civilian executive branch agencies to develop and publish a vulnerability disclosure policy (VDP) for their internet-accessible systems and services and maintain processes to support their VDP. A VDP may be implemented at the organization level rather than for each individual system. Federal and non-federal organizations could achieve this control by creating and monitoring an email address published on a public-facing website for contacting the organization regarding disclosures.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Vulnerability Monitoring and Scanning | Public Disclosure Program
Establish a public reporting channel for receiving reports of vulnerabilities in organizational systems and system components.
Discussion:The reporting channel is publicly discoverable and contains clear language authorizing good-faith research and the disclosure of vulnerabilities to the organization. The organization does not condition its authorization on an expectation of indefinite non-disclosure to the public by the reporting entity but may request a specific time period to properly remediate the vulnerability.' WHERE [Requirement_Id] = 37885
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Update the system vulnerabilities to be scanned daily and when new vulnerabilities are identified and reported.
[Implementation Statement]
+
+Related Controls: SI-5
+
+
+', [Supplemental_Info]=N' Update Vulnerabilities to Be Scanned
Update the system vulnerabilities to be scanned [Selection (one or more): [Assignment: organization-defined frequency]; prior to a new scan; when new vulnerabilities are identified and reported].
Discussion:Due to the complexity of modern software, systems, and other factors, new vulnerabilities are discovered on a regular basis. It is important that newly discovered vulnerabilities are added to the list of vulnerabilities to be scanned to ensure that the organization can take steps to mitigate those vulnerabilities in a timely manner.' WHERE [Requirement_Id] = 37886
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Determine information about the system that is discoverable and notify appropriate organizational personnel, remove designated information, and/or change the system to make the designated information less relevant or attractive to adversaries.
[Implementation Statement]
+
+OT Systems Only:
+Examples of discoverable information in OT could include information about key personnel or technical information relating to systems and configurations. Locations that may need to be monitored or scanned include technical forums, blogs, or vendor/contractor websites.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Examples of discoverable information in OT could include information about key personnel or technical information related to systems and configurations. Locations that may need to be monitored or scanned include technical forums, blogs, and vendor or contractor websites.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Vulnerability Monitoring and Scanning | Discoverable Information
Determine information about the system that is discoverable and take [Assignment: organization-defined corrective actions].
Discussion:Discoverable information includes information that adversaries could obtain without compromising or breaching the system, such as by collecting information that the system is exposing or by conducting extensive web searches. Corrective actions include notifying appropriate organizational personnel, removing designated information, or changing the system to make the designated information less relevant or attractive to adversaries. This enhancement excludes intentionally discoverable information that may be part of a decoy capability (e.g., honeypots, honeynets, or deception nets) deployed by the organization.' WHERE [Requirement_Id] = 37887
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement privileged access authorization to systems and system components for all vulnerability scanning activities.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Privileged Access
Implement privileged access authorization to [Assignment: organization-defined system components] for [Assignment: organization-defined vulnerability scanning activities].
Discussion:In certain situations, the nature of the vulnerability scanning may be more intrusive, or the system component that is the subject of the scanning may contain classified or controlled unclassified information, such as personally identifiable information. Privileged access authorization to selected system components facilitates more thorough vulnerability scanning and protects the sensitive nature of such scanning.' WHERE [Requirement_Id] = 37888
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Respond to findings from security and privacy assessments, monitoring, and audits in accordance with organizational risk tolerance.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'Risk Response
Respond to findings from security and privacy assessments, monitoring, and audits in accordance with organizational risk tolerance.
Discussion:Organizations have many options for responding to risk including mitigating risk by implementing new controls or strengthening existing controls, accepting risk with appropriate justification or rationale, sharing or transferring risk, or avoiding risk. The risk tolerance of the organization influences risk response decisions and actions. Risk response addresses the need to determine an appropriate response to risk before generating a plan of action and milestones entry. For example, the response may be to accept risk or reject risk, or it may be possible to mitigate the risk immediately so that a plan of action and milestones entry is not needed. However, if the risk response is to mitigate the risk, and the mitigation cannot be completed immediately, a plan of action and milestones entry is generated.' WHERE [Requirement_Id] = 37889
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Conduct sensitivity impact assessments for systems, programs, or other activities, and document results in the GRC tool before:
[a: Implementation Statement]
+ i) Developing or procuring information technology that processes sensitive information;
[a.i: Implementation Statement]
+ ii) Initiating a new collection of sensitive information that will be processed using information technology; and
[a.ii: Implementation Statement]
+ iii) The results of the sensitivity impact assessment may require the completion of a privacy impact assessment or other documentation specific to the type of sensitive information processed.
[a.iii: Implementation Statement]
+b. Conduct privacy impact assessments for systems, programs, or other activities, and document results in the GRC tool before:
[b: Implementation Statement]
+ i) Developing or procuring information technology that processes personally identifiable information; and
[b.i: Implementation Statement]
+ ii) Initiating a new collection of personally identifiable information that will be processed using information technology;
[b.ii: Implementation Statement]
+
+Related Controls : CM-4, CM-9, PT-2, PT-3, PT-5, RA-1, RA-2, RA-3, RA-7
+
+
+', [Supplemental_Info]=N'Privacy Impact Assessments
Conduct privacy impact assessments for systems, programs, or other activities before:
a. Developing or procuring information technology that processes personally identifiable information; and
b. Initiating a new collection of personally identifiable information that:
1. Will be processed using information technology; and
2. Includes personally identifiable information permitting the physical or virtual (online) contacting of a specific individual, if identical questions have been posed to, or identical reporting requirements imposed on, ten or more individuals, other than agencies, instrumentalities, or employees of the federal government.
Discussion:A privacy impact assessment is an analysis of how personally identifiable information is handled to ensure that handling conforms to applicable privacy requirements, determine the privacy risks associated with an information system or activity, and evaluate ways to mitigate privacy risks. A privacy impact assessment is both an analysis and a formal document that details the process and the outcome of the analysis.
Organizations conduct and develop a privacy impact assessment with sufficient clarity and specificity to demonstrate that the organization fully considered privacy and incorporated appropriate privacy protections from the earliest stages of the organization’s activity and throughout the information life cycle. In order to conduct a meaningful privacy impact assessment, the organization’s senior agency official for privacy works closely with program managers, system owners, information technology experts, security officials, counsel, and other relevant organization personnel. Moreover, a privacy impact assessment is not a time-restricted activity that is limited to a particular milestone or stage of the information system or personally identifiable information life cycles. Rather, the privacy analysis continues throughout the system and personally identifiable information life cycles. Accordingly, a privacy impact assessment is a living document that organizations update whenever changes to the information technology, changes to the organization’s practices, or other factors alter the privacy risks associated with the use of such information technology.
To conduct the privacy impact assessment, organizations can use security and privacy risk assessments. Organizations may also use other related processes that may have different names, including privacy threshold analyses. A privacy impact assessment can also serve as notice to the public regarding the organization’s practices with respect to privacy. Although conducting and publishing privacy impact assessments may be required by law, organizations may develop such policies in the absence of applicable laws. For federal agencies, privacy impact assessments may be required by [EGOV]; agencies should consult with their senior agency official for privacy and legal counsel on this requirement and be aware of the statutory exceptions and OMB guidance relating to the provision.
' WHERE [Requirement_Id] = 37890
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Identify critical system components and functions by performing a criticality analysis for systems, system components, and system services throughout the Project Lifecycle Management (PLM) process/System Development Life Cycle (SDLC). All new systems shall conduct a criticality analysis as a part of the project intake phase.
[Implementation Statement]
+
+Related Controls: CP-2, PL-2, PL-8, PL-11, PM-1, PM-11, RA-2, SA-8, SA-15, SR-5
+
+
+', [Supplemental_Info]=N'Criticality Analysis
Identify critical system components and functions by performing a criticality analysis for [Assignment: organization-defined systems, system components, or system services] at [Assignment: organization-defined decision points in the system development life cycle].
Discussion:Not all system components, functions, or services necessarily require significant protections. For example, criticality analysis is a key tenet of supply chain risk management and informs the prioritization of protection activities. The identification of critical system components and functions considers applicable laws, executive orders, regulations, directives, policies, standards, system functionality requirements, system and component interfaces, and system and component dependencies. Systems engineers conduct a functional decomposition of a system to identify mission-critical functions and components. The functional decomposition includes the identification of organizational missions supported by the system, decomposition into the specific functions to perform those missions, and traceability to the hardware, software, and firmware components that implement those functions, including when the functions are shared by many components within and external to the system.
The operational environment of a system or a system component may impact the criticality, including the connections to and dependencies on cyber-physical systems, devices, system-of-systems, and outsourced IT services. System components that allow unmediated access to critical system components or functions are considered critical due to the inherent vulnerabilities that such components create. Component and function criticality are assessed in terms of the impact of a component or function failure on the organizational missions that are supported by the system that contains the components and functions.
Criticality analysis is performed when an architecture or design is being developed, modified, or upgraded. If such analysis is performed early in the system development life cycle, organizations may be able to modify the system design to reduce the critical nature of these components and functions, such as by adding redundancy or alternate paths into the system design. Criticality analysis can also influence the protection measures required by development contractors. In addition to criticality analysis for systems, system components, and system services, criticality analysis of information is an important consideration. Such analysis is conducted as part of security categorization in RA-2.
' WHERE [Requirement_Id] = 37891
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SA-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+
+
+', [Supplemental_Info]=N'System and Services Acquisition Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] system and services acquisition policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the system and services acquisition policy and the associated system and services acquisition
controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the system and
services acquisition policy and procedures; and
c. Review and update the current system and services acquisition:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:System and services acquisition policy and procedures address the controls in the SA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of system and services acquisition policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to system and services acquisition policy and procedures include assessment or audit findings, security incidents or breaches, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37892
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Perform configuration management during system, component, or service design; development; implementation; operation; disposal, in accordance with the SDLC;
[a: Implementation Statement]
+b. Document, manage, and control the integrity of changes to all system and system component configuration items under configuration management;
[b: Implementation Statement]
+c. Implement only organization-approved changes to the system, component, or service;
[c: Implementation Statement]
+d. Document approved changes to the system, component, or service and the potential security and privacy impacts of such changes; and
[d: Implementation Statement]
+e. Track security flaws and flaw resolution within the system, component, or service and report findings to required stakeholders.
[e: Implementation Statement]
+
+Related Controls: CM-2, CM-3, CM-4, CM-7, CM-9, SA-4, SA-5, SA-8, SA-15, SI-2, SR-3, SR-4, SR-5, SR-6
+
+NIST 800-82 Rev 3:
+OT Discussion: Personnel with knowledge about security and privacy requirements are included in the change management process for the developer.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Developer Configuration Management
Require the developer of the system, system component, or system service to:
a. Perform configuration management during system, component, or service [Selection (one or more): design; development; implementation; operation; disposal];
b. Document, manage, and control the integrity of changes to [Assignment: organization-defined configuration items under configuration management];
c. Implement only organization-approved changes to the system, component, or service;
d. Document approved changes to the system, component, or service and the potential security and privacy impacts of such changes; and
e. Track security flaws and flaw resolution within the system, component, or service and report findings to [Assignment: organization-defined personnel].
Discussion:Organizations consider the quality and completeness of configuration management activities conducted by developers as direct evidence of applying effective security controls. Controls include protecting the master copies of material used to generate security-relevant portions of the system hardware, software, and firmware from unauthorized modification or destruction. Maintaining the integrity of changes to the system, system component, or system service requires strict configuration control throughout the system development life cycle to track authorized changes and prevent unauthorized changes.
The configuration items that are placed under configuration management include the formal model; the functional, high-level, and low-level design specifications; other design data; implementation documentation; source code and hardware schematics; the current running version of the object code; tools for comparing new versions of security-relevant hardware descriptions and source code with previous versions; and test fixtures and documentation. Depending on the mission and business needs of organizations and the nature of the contractual relationships in place, developers may provide configuration management support during the operations and maintenance stage of the system development life cycle.
' WHERE [Requirement_Id] = 37893
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the developer of the system, system component, or system service, at all post-design stages of the SDLC, to:
[Implementation Statement]
+
+a. Develop and implement a plan for ongoing security and privacy control assessments;
[a: Implementation Statement]
+b. Perform unit, integration, system, and regression testing/evaluation for releases and changes to the system or system components as specified in the SDLC at a depth and coverage that enable the DMCS-defined security and privacy objectives for the system to be implemented and approved by the AO;
[b: Implementation Statement]
+c. All contracts shall specify acceptance criteria for security and privacy controls and plans commensurate with the security category or classification level of the system;
[c: Implementation Statement]
+d. Produce evidence of the execution of the assessment plan and the results of the testing and evaluation;
[d: Implementation Statement]
+e. Implement a verifiable flaw remediation process; and
[e: Implementation Statement]
+f. Correct flaws identified during testing and evaluation.
[f: Implementation Statement]
+
+Related Controls: CA-2, CA-7, CM-4, SA-3, SA-4, SA-5, SA-8, SA-15, SA-17, SI-2, SR-5, SR-6, SR-7
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+2. Develop a Cybersecurity Assessment Plan and submit (a) an annual update, for approval, that describes how the Owner/Operator will proactively and regularly assess the effectiveness of cybersecurity measures, and identify and resolve device, network, and/or system vulnerabilities, and (b) an annual report that provides Cybersecurity Assessment Plan results from the previous year. See Section III.F. (p.3)
[2: Implementation Statement]
+', [Supplemental_Info]=N'Developer Testing and Evaluation
Require the developer of the system, system component, or system service, at all post-design stages of the system development life cycle, to:
a. Develop and implement a plan for ongoing security and privacy control assessments;
b. Perform [Selection (one or more): unit; integration; system; regression] testing/evaluation [Assignment: organization-defined frequency] at [Assignment: organization-defined depth and coverage];
c. Produce evidence of the execution of the assessment plan and the results of the testing and evaluation;
d. Implement a verifiable flaw remediation process; and
e. Correct flaws identified during testing and evaluation.
Discussion:Developmental testing and evaluation confirms that the required controls are implemented correctly, operating as intended, enforcing the desired security and privacy policies, and meeting established security and privacy requirements. Security properties of systems and the privacy of individuals may be affected by the interconnection of system components or changes to those components. The interconnections or changes—including upgrading or replacing applications, operating systems, and firmware—may adversely affect previously implemented controls. Ongoing assessment during development allows for additional types of testing and evaluation that developers can conduct to reduce or eliminate potential flaws. Testing custom software applications may require approaches such as manual code review, security architecture review, and penetration testing, as well as and static analysis, dynamic analysis, binary analysis, or a hybrid of the three analysis approaches.
Developers can use the analysis approaches, along with security instrumentation and fuzzing, in a variety of tools and in source code reviews. The security and privacy assessment plans include the specific activities that developers plan to carry out, including the types of analyses, testing, evaluation, and reviews of software and firmware components; the degree of rigor to be applied; the frequency of the ongoing testing and evaluation; and the types of artifacts produced during those processes. The depth of testing and evaluation refers to the rigor and level of detail associated with the assessment process. The coverage of testing and evaluation refers to the scope (i.e., number and type) of the artifacts included in the assessment process. Contracts specify the acceptance criteria for security and privacy assessment plans, flaw remediation processes, and the evidence that the plans and processes have been diligently applied. Methods for reviewing and protecting assessment plans, evidence, and documentation are commensurate with the security category or classification level of the system. Contracts may specify protection requirements for documentation.
' WHERE [Requirement_Id] = 37894
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Require the developer of the system, system component, or system service to follow a documented development process that:
[a: Implementation Statement]
+ i) Explicitly addresses security and privacy requirements;
[a.i: Implementation Statement]
+ ii) Identifies the standards and tools used in the development process;
[a.ii: Implementation Statement]
+ iii) Documents the specific tool options and tool configurations used in the development process; and
[a.iii: Implementation Statement]
+ iv) Documents, manages, and ensures the integrity of changes to the process and/or tools used in development;
[a.iv: Implementation Statement]
+b. Review the development process, standards, tools, tool options, and tool configurations annually to determine if the process, standards, tools, tool options and tool configurations selected and employed can satisfy the security and privacy requirements throughout the SDLC.
[b: Implementation Statement]
+
+Related Controls: MA-6, SA-3, SA-4, SA-8, SA-10, SA-11, SR-3, SR-4, SR-5, SR-6, SR-9
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Development Process, Standards, and Tools
a. Require the developer of the system, system component, or system service to follow a documented development process that:
1. Explicitly addresses security and privacy requirements;
2. Identifies the standards and tools used in the development process;
3. Documents the specific tool options and tool configurations used in the development process; and
4. Documents, manages, and ensures the integrity of changes to the process and/or tools used in development; and
b. Review the development process, standards, tools, tool options, and tool configurations [Assignment: organization-defined frequency] to determine if the process, standards, tools, tool options and tool configurations selected and employed can satisfy the following security and privacy requirements: [Assignment: organization-defined security and privacy requirements].
Discussion:Development tools include programming languages and computer-aided design systems. Reviews of development processes include the use of maturity models to determine the potential effectiveness of such processes. Maintaining the integrity of changes to tools and processes facilitates effective supply chain risk assessment and mitigation. Such integrity requires configuration control throughout the system development life cycle to track authorized changes and prevent unauthorized changes.' WHERE [Requirement_Id] = 37895
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the developer of the system, system component, or system service to perform a criticality analysis:
[Implementation Statement]
+
+(1) As a part of the SDLC Design Phase (also known as Initiation Phase of the SDLC as defined by NIST 800-64);
[1: Implementation Statement]
+(2) As a part of the A&A Categorization Phase; and
[2: Implementation Statement]
+(3) At the discretion of the AO based on major changes to the system.
[3: Implementation Statement]
+
+Related Controls: RA-9
+
+
+', [Supplemental_Info]=N' Criticality Analysis
Require the developer of the system, system component, or system service to perform a criticality analysis:
(a) At the following decision points in the system development life cycle: [Assignment: organization-defined decision points in the system development life cycle]; and
(b) At the following level of rigor: [Assignment: organization-defined breadth and depth of criticality analysis].
Discussion:Criticality analysis performed by the developer provides input to the criticality analysis performed by organizations. Developer input is essential to organizational criticality analysis because organizations may not have access to detailed design documentation for system components that are developed as commercial off-the-shelf products. Such design documentation includes functional specifications, high-level designs, low-level designs, source code, and hardware schematics. Criticality analysis is important for organizational systems that are designated as high value assets. High value assets can be moderate- or high-impact systems due to heightened adversarial interest or potential adverse effects on the federal enterprise. Developer input is especially important when organizations conduct supply chain criticality analyses.' WHERE [Requirement_Id] = 37896
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the developer of the system, system component, or system service to provide training on the correct use and operation of the implemented security and privacy functions, controls, and/or mechanisms.
[Implementation Statement]
+
+Related Controls: AT-2, AT-3, PE-3, SA-4, SA-5
+
+
+', [Supplemental_Info]=N'Developer-provided Training
Require the developer of the system, system component, or system service to provide the following training on the correct use and operation of the implemented security and privacy functions, controls, and/or mechanisms: [Assignment: organization-defined training].
Discussion:Developer-provided training applies to external and internal (in-house) developers. Training personnel is essential to ensuring the effectiveness of the controls implemented within organizational systems. Types of training include web-based and computer-based training, classroom-style training, and hands-on training (including micro-training). Organizations can also request training materials from developers to conduct in-house training or offer self-training to organizational personnel. Organizations determine the type of training necessary and may require different types of training for different security and privacy functions, controls, and mechanisms.' WHERE [Requirement_Id] = 37897
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the developer of the system, system component, or system service to produce a design specification and security and privacy architecture that:
[Implementation Statement]
+
+a. Is consistent with the organization’s security and privacy architecture that is an integral part of the organization’s enterprise architecture;
[a: Implementation Statement]
+b. Accurately and completely describes the required security and privacy functionality and the allocation of controls among physical and logical components; and
[b: Implementation Statement]
+c. Expresses how individual security and privacy functions, mechanisms, and services work together to provide required security and privacy capabilities and a unified approach to protection.
[c: Implementation Statement]
+
+Related Controls: PL-2, PL-8, PM-7, SA-3, SA-4, SA-8, SC-7
+
+
+', [Supplemental_Info]=N'Developer Security and Privacy Architecture and Design
Require the developer of the system, system component, or system service to produce a design specification and security and privacy architecture that:
a. Is consistent with the organization’s security and privacy architecture that is an integral part the organization’s enterprise architecture;
b. Accurately and completely describes the required security and privacy functionality, and the allocation of controls among physical and logical components; and
c. Expresses how individual security and privacy functions, mechanisms, and services work together to provide required security and privacy capabilities and a unified approach to protection.
Discussion:Developer security and privacy architecture and design are directed at external developers, although they could also be applied to internal (in-house) development. In contrast, PL-8 is directed at internal developers to ensure that organizations develop a security and privacy architecture that is integrated with the enterprise architecture. The distinction between SA-17 and PL-8 is especially important when organizations outsource the development of systems, system components, or system services and when there is a requirement to demonstrate consistency with the enterprise architecture and security and privacy architecture of the organization. [ISO 15408-2], [ISO 15408-3], and [SP 800-160-1] provide information on security architecture and design, including formal policy models, security-relevant components, formal and informal correspondence, conceptually simple design, and structuring for least privilege and testing.' WHERE [Requirement_Id] = 37898
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Determine the high-level information security and privacy requirements for the system or system service in mission and business process planning;
[a: Implementation Statement]
+b. Determine, document, and allocate the resources required to protect the system or system service as part of the organizational capital planning and investment control process; and
[b: Implementation Statement]
+c. Establish a discrete line item for information security and privacy in organizational programming and budgeting documentation.
[c: Implementation Statement]
+
+Related Controls: PL-7, PM-3, PM-11, SA-9, SR-3, SR-5
+
+
+', [Supplemental_Info]=N'Allocation of Resources
a. Determine the high-level information security and privacy requirements for the system or system service in mission and business process planning;
b. Determine, document, and allocate the resources required to protect the system or system service as part of the organizational capital planning and investment control process; and
c. Establish a discrete line item for information security and privacy in organizational programming and budgeting documentation.
Discussion:Resource allocation for information security and privacy includes funding for system and services acquisition, sustainment, and supply chain-related risks throughout the system development life cycle.' WHERE [Requirement_Id] = 37899
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require that the developer of a system, system component, or system service:
[Implementation Statement]
+
+a. Have appropriate access authorizations as determined by assigned official duties or as specified in an associated contract; and
[a: Implementation Statement]
+b. Satisfy the following personnel screening criteria:
[b: Implementation Statement]
+ i) Successful completion and adjudication of all required WMATA background checks. All contractors shall provide WMATA with contractually obligated background information; and
[b.i: Implementation Statement]
+ ii) Review and analysis of company ownership and relationships that the company has with entities that may potentially affect the quality and reliability of the systems, components, or services being developed.
[b.ii: Implementation Statement]
+
+Related Controls: PS-2, PS-3, PS-6, PS-7, SA-4, SR-6
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.d. Reduce the risk of exploitation of unpatched systems through the application of security patches and updates for operating systems, applications, drivers and firmware on Critical Cyber Systems in a timely manner using a risk-based methodology. (p.3)
[1.d: Implementation Statement]
+
+III. Cybersecurity Measures
+
+E. Reduce the risk of exploitation of unpatched systems through the application of security patches and updates for operating systems, applications, drivers, and firmware on Critical Cyber Systems consistent with the Owner/Operator’s risk based methodology. These measures must include: (pp.8-9)
[E: Implementation Statement]
+
+E.1. A patch management strategy that ensures all critical security patches and updates on Critical Cyber Systems are current. (p.9)
[E.1: Implementation Statement]
+', [Supplemental_Info]=N'Developer Screening
Require that the developer of [Assignment: organization-defined system, system component, or system service]:
a. Has appropriate access authorizations as determined by assigned [Assignment: organization-defined official government duties]; and
b. Satisfies the following additional personnel screening criteria: [Assignment: organization-defined additional personnel screening criteria].
Discussion:Developer screening is directed at external developers. Internal developer screening is addressed by PS-3. Because the system, system component, or system service may be used in critical activities essential to the national or economic security interests of the United States, organizations have a strong interest in ensuring that developers are trustworthy. The degree of trust required of developers may need to be consistent with that of the individuals who access the systems, system components, or system services once deployed. Authorization and personnel screening criteria include clearances, background checks, citizenship, and nationality. Developer trustworthiness may also include a review and analysis of company ownership and relationships that the company has with entities that may potentially affect the quality and reliability of the systems, components, or services being developed. Satisfying the required access authorizations and personnel screening criteria includes providing a list of all individuals who are authorized to perform development activities on the selected system, system component, or system service so that organizations can validate that the developer has satisfied the authorization and screening requirements.' WHERE [Requirement_Id] = 37900
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Replace system components when support for the components is no longer available from the developer, vendor, or manufacturer. All systems shall employ vendor-supported products that are not end-of-life (EOL) and that are regularly maintained in accordance with Control 3.11 Maintenance.
[a: Implementation Statement]
+b. Vulnerabilities identified on unsupported devices must be addressed using mitigating security controls as defined by DMCS.
[b: Implementation Statement]
+
+OT Systems Only:
+OT systems may contain system components that are no longer supported by the developer, vendor, or manufacturer and have not been replaced due to various operational, safety, availability, or lifetime constraints. Organizations identify alternative methods to continue supported operation of such system components and consider additional compensating controls to mitigate against known threats and vulnerabilities to unsupported system components.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PL-2, SA-3
+
+NIST 800-82 Rev 3:
+OT Discussion: OT systems may contain system components that are no longer supported by the developer, vendor, or manufacturer and have not been replaced due to various operational, safety, availability, or lifetime constraints. Organizations identify alternative methods to continue supported operation of such system components and consider additional compensating controls to mitigate against known threats and vulnerabilities to unsupported system components.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Unsupported System Components
a. Replace system components when support for the components is no longer available from the developer, vendor, or manufacturer; or
b. Provide the following options for alternative sources for continued support for unsupported components [Selection (one or more): in-house support; [Assignment: organization-defined support from external providers]].
Discussion:Support for system components includes software patches, firmware updates, replacement parts, and maintenance contracts. An example of unsupported components includes when vendors no longer provide critical software patches or product updates, which can result in an opportunity for adversaries to exploit weaknesses in the installed components. Exceptions to replacing unsupported system components include systems that provide critical mission or business capabilities where newer technologies are not available or where the systems are so isolated that installing replacement components is not an option.
Alternative sources for support address the need to provide continued support for system components that are no longer supported by the original manufacturers, developers, or vendors when such components remain essential to organizational mission and business functions. If necessary, organizations can establish in-house support by developing customized patches for critical software components or, alternatively, obtain the services of external providers who provide ongoing support for the designated unsupported components through contractual relationships. Such contractual relationships can include open-source software value-added vendors. The increased risk of using unsupported system components can be mitigated, for example, by prohibiting the connection of such components to public or uncontrolled networks, or implementing other forms of isolation.
' WHERE [Requirement_Id] = 37901
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Acquire, develop, and manage the system using the SDLC that incorporates information security and privacy considerations;
[a: Implementation Statement]
+b. Define and document information security and privacy roles and responsibilities throughout the SDLC;
[b: Implementation Statement]
+c. Identify individuals having information security and privacy roles and responsibilities; and
[c: Implementation Statement]
+d. Integrate the organizational information security and privacy risk management process into SDLC activities.
[d: Implementation Statement]
+e. Publishing code to a public code repository requires the express written authorization of the AO.
[e: Implementation Statement]
+
+Related Controls: AT-3, PL-8, PM-7, SA-4, SA-5, SA-8, SA-11, SA-15, SA-17, SA-22, SR-3, SR-4, SR-5, SR-9
+
+f. Security Controls Enhancement(s):
[f: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Development Life Cycle
a. Acquire, develop, and manage the system using [Assignment: organization-defined system development life cycle] that incorporates information security and privacy considerations;
b. Define and document information security and privacy roles and responsibilities throughout the system development life cycle;
c. Identify individuals having information security and privacy roles and responsibilities; and
d. Integrate the organizational information security and privacy risk management process into system development life cycle activities.
Discussion:A system development life cycle process provides the foundation for the successful development, implementation, and operation of organizational systems. The integration of security and privacy considerations early in the system development life cycle is a foundational principle of systems security engineering and privacy engineering. To apply the required controls within the system development life cycle requires a basic understanding of information security and privacy, threats, vulnerabilities, adverse impacts, and risk to critical mission and business functions. The security engineering principles in SA-8 help individuals properly design, code, and test systems and system components. Organizations include qualified personnel (e.g., senior agency information security officers, senior agency officials for privacy, security and privacy architects, and security and privacy engineers) in system development life cycle processes to ensure that established security and privacy requirements are incorporated into organizational systems. Role-based security and privacy training programs can ensure that individuals with key security and privacy roles and responsibilities have the experience, skills, and expertise to conduct assigned system development life cycle activities.
The effective integration of security and privacy requirements into enterprise architecture also helps to ensure that important security and privacy considerations are addressed throughout the system life cycle and that those considerations are directly related to organizational mission and business processes. This process also facilitates the integration of the information security and privacy architectures into the enterprise architecture, consistent with the risk management strategy of the organization. Because the system development life cycle involves multiple organizations, (e.g., external suppliers, developers, integrators, service providers), acquisition and supply chain risk management functions and controls play significant roles in the effective management of the system during the life cycle.
' WHERE [Requirement_Id] = 37902
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Protect system preproduction environments commensurate with risk throughout the system development life cycle of the system, system component, or system service.
[Implementation Statement]
+
+OT Systems Only:
+Organizations that do not maintain local preproduction environments and utilize a third-party integrator should ensure contracts are developed to limit the security and privacy risks.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CM-2, CM-4, RA-3, RA-9, SA-4
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations that do not maintain local pre-production environments and utilize a third-party integrator should ensure that contracts are developed to limit security and privacy risks.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Development Life Cycle | Manage Preproduction Environment
Protect system preproduction environments commensurate with risk throughout the system development life cycle for the system, system component, or system service.
Discussion:The preproduction environment includes development, test, and integration environments. The program protection planning processes established by the Department of Defense are examples of managing the preproduction environment for defense contractors. Criticality analysis and the application of controls on developers also contribute to a more secure system development environment.' WHERE [Requirement_Id] = 37903
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Plan for and implement a technology refresh schedule for the system throughout the system development life cycle.
[Implementation Statement]
+
+OT Systems Only:
+Many OT systems have an expected life cycle that is longer than most IT components. Technology refresh is addressed in budget planning to limit the use of obsolete systems that present security or reliability risks.
[OT Systems Only: Implementation Statement]
+
+Related Controls: MA-6
+
+NIST 800-82 Rev 3:
+OT Discussion: Many OT systems have an expected life cycle that is longer than most IT components. Technology refresh is addressed in budget planning to limit the use of obsolete systems that present security or reliability risks.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Development Life Cycle | Technology Refresh
Plan for and implement a technology refresh schedule for the system throughout the system development life cycle.
Discussion:Technology refresh planning may encompass hardware, software, firmware, processes, personnel skill sets, suppliers, service providers, and facilities. The use of obsolete or nearing obsolete technology may increase the security and privacy risks associated with unsupported components, counterfeit or repurposed components, components unable to implement security or privacy requirements, slow or inoperable components, components from untrusted sources, inadvertent personnel error, or increased complexity. Technology refreshes typically occur during the operations and maintenance stage of the system development life cycle.' WHERE [Requirement_Id] = 37904
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Include the following requirements, descriptions, and criteria, explicitly or by reference, using standardized contract language in the acquisition contract for the system, system component, or system service:
[Implementation Statement]
+
+a. Security and privacy functional requirements for all stages of the SDLC as required in Control 3.19 System and Services Acquisition, Section 3, “SA-3 System Development Life Cycle” to include user and administrator guidance for the implementation and operation of controls;
[a: Implementation Statement]
+b. Strength of mechanism requirements associated with capabilities, functions, and mechanisms to include a degree of correctness, completeness, resistance to tampering or bypass, and resistance to direct attack;
[b: Implementation Statement]
+c. Security and privacy assurance requirements to include development processes, procedures, and methodologies as well as the evidence from development and assessment activities that provide grounds for confidence that the required functionality is implemented and possesses the required strength of mechanism;
[c: Implementation Statement]
+d. Controls needed to satisfy the security and privacy requirements;
[d: Implementation Statement]
+e. Security and privacy documentation requirements;
[e: Implementation Statement]
+f. Requirements for protecting security and privacy documentation;
[f: Implementation Statement]
+g. Description of the system development environment and environment in which the system is intended to operate;
[g: Implementation Statement]
+h. Allocation of responsibility or identification of parties responsible for information security, privacy, and supply chain risk management; and
[h: Implementation Statement]
+i. Acceptance criteria.
[i: Implementation Statement]
+j. Providers of defined external information systems are required to identify the location of information systems that receive, process, store, or transmit WMATA data, with special emphasis on sensitive information to include, but is not limited to, Personally Identifiable Information (PII), Federal Tax Information (FTI), etc.
[j: Implementation Statement]
+
+OT Systems Only:
+Organizations engage with OT suppliers to raise awareness of cybersecurity needs. The SCADA/Control Systems Procurement Project provides example cybersecurity procurement language for OT.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CM-6, CM-8, PS-7, SA-3, SA-5, SA-8, SA-11, SA-15, SA-16, SA-17, SA-21, SR-3, SR-5
+
+k. Security Controls Enhancement(s):
[k: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations engage with OT suppliers to raise awareness of cybersecurity needs. The SCADA/Control Systems Procurement Project provides example cybersecurity procurement language for OT.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Acquisition Process
Include the following requirements, descriptions, and criteria, explicitly or by reference, using [Selection (one or more): standardized contract language; [Assignment: organization-defined contract language]] in the acquisition contract for the system, system component, or system service:
a. Security and privacy functional requirements;
b. Strength of mechanism requirements;
c. Security and privacy assurance requirements;
d. Controls needed to satisfy the security and privacy requirements.
e. Security and privacy documentation requirements;
f. Requirements for protecting security and privacy documentation;
g. Description of the system development environment and environment in which the system is intended to operate;
h. Allocation of responsibility or identification of parties responsible for information security, privacy, and supply chain risk management; and
i. Acceptance criteria.
Discussion:Security and privacy functional requirements are typically derived from the high-level security and privacy requirements described in SA-2. The derived requirements include security and privacy capabilities, functions, and mechanisms. Strength requirements associated with such capabilities, functions, and mechanisms include degree of correctness, completeness, resistance to tampering or bypass, and resistance to direct attack. Assurance requirements include development processes, procedures, and methodologies as well as the evidence from development and assessment activities that provide grounds for confidence that the required functionality is implemented and possesses the required strength of mechanism. [SP 800-160-1] describes the process of requirements engineering as part of the system development life cycle.
Controls can be viewed as descriptions of the safeguards and protection capabilities appropriate for achieving the particular security and privacy objectives of the organization and for reflecting the security and privacy requirements of stakeholders. Controls are selected and implemented in order to satisfy system requirements and include developer and organizational responsibilities. Controls can include technical, administrative, and physical aspects. In some cases, the selection and implementation of a control may necessitate additional specification by the organization in the form of derived requirements or instantiated control parameter values. The derived requirements and control parameter values may be necessary to provide the appropriate level of implementation detail for controls within the system development life cycle.
Security and privacy documentation requirements address all stages of the system development life cycle. Documentation provides user and administrator guidance for the implementation and operation of controls. The level of detail required in such documentation is based on the security categorization or classification level of the system and the degree to which organizations depend on the capabilities, functions, or mechanisms to meet risk response expectations. Requirements can include mandated configuration settings that specify allowed functions, ports, protocols, and services. Acceptance criteria for systems, system components, and system services are defined in the same manner as the criteria for any organizational acquisition or procurement.
' WHERE [Requirement_Id] = 37905
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the developer of the system, system component, or system service to provide a description of the functional properties of the controls to be implemented.
[Implementation Statement]
+
+OT Systems Only:
+When acquiring OT products, consideration for security requirements may not have been incorporated into the design. Procurement may need to consider alternative products or complementary hardware, or plan for compensating controls.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: When acquiring OT products, consideration for security requirements may not have been incorporated into the design. Procurement may need to consider alternative products or complementary hardware or plan for compensating controls.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Acquisition Process | Functional Properties of Controls
Require the developer of the system, system component, or system service to provide a description of the functional properties of the controls to be implemented.
Discussion:Functional properties of security and privacy controls describe the functionality (i.e., security or privacy capability, functions, or mechanisms) visible at the interfaces of the controls and specifically exclude functionality and data structures internal to the operation of the controls.' WHERE [Requirement_Id] = 37906
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ only information technology products on the FIPS 201-approved products list for PIV capability implemented within organizational systems.
[Implementation Statement]
+
+OT Systems Only:
+The use of approved PIV products is only required for organizations that follow OMB Memorandum M-19-17, e.g., federal agencies and contractors. Example compensating controls include employing external products on the FIPS 201-approved products list for PIV capability in conjunction with OT products.
[OT Systems Only: Implementation Statement]
+
+Related Controls: IA-2, IA-8, PM-9
+
+NIST 800-82 Rev 3:
+OT Discussion: The use of approved PIV products is only required for organizations that follow OMB Memorandum M-19-17 (e.g., federal agencies and contractors). Example compensating controls include employing external products on the FIPS 201-approved products list for PIV capabilities in conjunction with OT products.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Acquisition Process | Use of Approved PIV Products
Employ only information technology products on the FIPS 201-approved products list for Personal Identity Verification (PIV) capability implemented within organizational systems.
Discussion:Products on the FIPS 201-approved products list meet NIST requirements for Personal Identity Verification (PIV) of Federal Employees and Contractors. PIV cards are used for multi-factor authentication in systems and organizations.' WHERE [Requirement_Id] = 37907
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Include organization data ownership requirements in the acquisition contract; and
[1: Implementation Statement]
+(2) Require all data to be removed from the contractor’s system and returned to the organization within
[2: Assignment: organization-defined time frame].
[Implementation Statement]
+
+NIST 800-82 Rev 3:
+Rationale for adding SA-4 (12) to LOW, MOD, and HIGH baselines: Organizationally sensitive or proprietary OT data is often provided to contractors for project development or support, so data ownership should be defined prior to exchanging data with a vendor or integrator. The potential sharing of data with other parties and the potential deletion of the data after project completion should be determined. OT systems that are operated by contractors on behalf of the organization may be subject to the same requirements (e.g., legal, regulatory, etc.) for data ownership and retention.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Acquisition Process | Data Ownership
(a) Include organizational data ownership requirements in the acquisition contract; and
(b) Require all data to be removed from the contractor’s system and returned to the organization within [Assignment: organization-defined time frame].
Discussion:Contractors who operate a system that contains data owned by an organization initiating the contract have policies and procedures in place to remove the data from their systems and/or return the data in a time frame defined by the contract.' WHERE [Requirement_Id] = 37908
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the developer of the system, system component, or system service to provide design and implementation information for controls that includes:
[Implementation Statement]
+
+(1) Security-relevant system interfaces with external systems;
[1: Implementation Statement]
+(2) Security-relevant system interfaces with internal systems;
[2: Implementation Statement]
+(3) High-level design for the system expressed in terms of subsystems and the interfaces between subsystems with security-relevant functionality/information;
[3: Implementation Statement]
+(4) Low-level design for the system expressed in terms of modules and the interfaces between modules with security-relevant functionality/information;
[4: Implementation Statement]
+(5) Design and implementation documentation to include manufacturer, version, serial number, verification hash signature, software libraries used, date of purchase or download, and the vendor or download source;
[5: Implementation Statement]
+(6) Source code or hardware schematics and any other implementation information at a level of detail necessary for successful review and implementation of the system;
[6: Implementation Statement]
+(7) List of all Ports, Protocols and Services required for the functionality of the system;
[7: Implementation Statement]
+(8) Data Flow Diagram (DFD) that represents a flow of a data in the system (if applicable);
[8: Implementation Statement]
+(9) Data Classification Matrix including data definition, access restrictions and minimum controls specific for your service; and
[9: Implementation Statement]
+(10) Application Boundary Diagram that illustrates the relationships between the application components and hosted environments (if applicable).
[10: Implementation Statement]
+
+OT Systems Only:
+When acquiring OT products, consideration for security requirements may not have been incorporated into the design. Procurement may need to consider alternative products or complementary hardware, or plan for compensating controls.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: When acquiring OT products, consideration for security requirements may not have been incorporated into the design. Procurement may need to consider alternative products or complementary hardware or plan for compensating controls.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Acquisition Process | Design and Implementation Information for Controls
Require the developer of the system, system component, or system service to provide design and implementation information for the controls that includes: [Selection (one or more): security-relevant external system interfaces; high-level design; low-level design; source code or hardware schematics; [Assignment: organization-defined design and implementation information]] at [Assignment: organization-defined level of detail].
Discussion:Organizations may require different levels of detail in the documentation for the design and implementation of controls in organizational systems, system components, or system services based on mission and business requirements, requirements for resiliency and trustworthiness, and requirements for analysis and testing. Systems can be partitioned into multiple subsystems. Each subsystem within the system can contain one or more modules. The high-level design for the system is expressed in terms of subsystems and the interfaces between subsystems providing security-relevant functionality. The low-level design for the system is expressed in terms of modules and the interfaces between modules providing security-relevant functionality. Design and implementation documentation can include manufacturer, version, serial number, verification hash signature, software libraries used, date of purchase or download, and the vendor or download source. Source code and hardware schematics are referred to as the implementation representation of the system.' WHERE [Requirement_Id] = 37909
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the developer of the system, system component, or system service to:
[Implementation Statement]
+
+(1) Deliver the system, component, or service with the following implemented:
[1: Implementation Statement]
+ (a) Secure baselines based on all relevant/applicable STIGs in accordance with Control 3.4 Configuration Management, Section 6, “CM-6 Configuration Settings”;
[1.a: Implementation Statement]
+ (b) Cybersecurity requirements including limitations on deprecated or disallowed functions, ports, protocols, and services; and
[1.b: Implementation Statement]
+ (c) Default passwords changed in accordance with Control 3.9 Identification and Authentication; and
[1.c: Implementation Statement]
+(2) Use the configurations as the default for any subsequent system, component, or service reinstallation or upgrade.
[2: Implementation Statement]
+
+Related Controls: CM-6
+
+
+', [Supplemental_Info]=N' System, Component, and Service Configurations
Require the developer of the system, system component, or system service to:
(a) Deliver the system, component, or service with [Assignment: organization-defined security configurations] implemented; and
(b) Use the configurations as the default for any subsequent system, component, or service reinstallation or upgrade.
Discussion:Examples of security configurations include the U.S. Government Configuration Baseline (USGCB), Security Technical Implementation Guides (STIGs), and any limitations on functions, ports, protocols, and services. Security characteristics can include requiring that default passwords have been changed.' WHERE [Requirement_Id] = 37910
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require the developer of the system, system component, or system service to identify the functions, ports, protocols, and services intended for organizational use.
[Implementation Statement]
+
+OT Systems Only:
+When acquiring OT products, consideration for security requirements may not have been incorporated into the design. Procurement may need to consider alternative products or complementary hardware, or plan for compensating controls.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CM-7, SA-9
+
+NIST 800-82 Rev 3:
+OT Discussion: When acquiring OT products, consideration for security requirements may not have been incorporated into the design. Procurement may need to consider alternative products or complementary hardware or plan for compensating controls.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Acquisition Process | Functions, Ports, Protocols, and Services in Use
Require the developer of the system, system component, or system service to identify the functions, ports, protocols, and services intended for organizational use.
Discussion:The identification of functions, ports, protocols, and services early in the system development life cycle (e.g., during the initial requirements definition and design stages) allows organizations to influence the design of the system, system component, or system service. This early involvement in the system development life cycle helps organizations avoid or minimize the use of functions, ports, protocols, or services that pose unnecessarily high risks and understand the trade-offs involved in blocking specific ports, protocols, or services or requiring system service providers to do so. Early identification of functions, ports, protocols, and services avoids costly retrofitting of controls after the system, component, or system service has been implemented. SA-9 describes the requirements for external system services. Organizations identify which functions, ports, protocols, and services are provided from external sources.' WHERE [Requirement_Id] = 37911
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Obtain or develop (externally or internally) administrator documentation for the system, system component, or system service that describes:
[a: Implementation Statement]
+ i) Secure configuration, installation, and operation of the system, component, or service;
[a.i: Implementation Statement]
+ ii) Effective use and maintenance of security and privacy functions and mechanisms; and
[a.ii: Implementation Statement]
+ iii) Known vulnerabilities regarding configuration and use of administrative or privileged tions;
[a.iii: Implementation Statement]
+b. Obtain or develop (externally or internally) user documentation for the system, system component, or system service that describes:
[b: Implementation Statement]
+ i) User-accessible security and privacy functions and mechanisms and how to effectively use those functions and mechanisms;
[b.i: Implementation Statement]
+ ii) Methods for user interaction, which enables individuals to use the system, component, or service in a more secure manner and protect individual privacy; and
[b.ii: Implementation Statement]
+ iii) User responsibilities in maintaining the security of the system, component, or service and privacy of individuals;
[b.iii: Implementation Statement]
+c. Document attempts to obtain system, system component, or system service documentation when such documentation is either unavailable or nonexistent; and take actions to recreate the documentation if it is essential to the implementation or operation of the controls in response; and
[c: Implementation Statement]
+d. Distribute documentation to required stakeholders.
[d: Implementation Statement]
+
+Related Controls: CM-4, CM-6, CM-7, CM-8, PL-2, PL-4, PL-8, PS-2, SA-3, SA-4, SA-8, SA-9, SA-10, SA-11, SA-15, SA-16, SA-17, SI-12, SR-3
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+', [Supplemental_Info]=N'System Documentation
a. Obtain or develop administrator documentation for the system, system component, or system service that describes:
1. Secure configuration, installation, and operation of the system, component, or service;
2. Effective use and maintenance of security and privacy functions and mechanisms; and
3. Known vulnerabilities regarding configuration and use of administrative or privileged functions;
b. Obtain or develop user documentation for the system, system component, or system service that describes:
1. User-accessible security and privacy functions and mechanisms and how to effectively use those functions and mechanisms;
2. Methods for user interaction, which enables individuals to use the system, component, or service in a more secure manner and protect
individual privacy; and
3. User responsibilities in maintaining the security of the system, component, or service and privacy of individuals;
c. Document attempts to obtain system, system component, or system service documentation when such documentation is either unavailable or nonexistent and take [Assignment: organization-defined actions] in response; and
d. Distribute documentation to [Assignment: organization-defined personnel or roles].
Discussion:System documentation helps personnel understand the implementation and operation of controls. Organizations consider establishing specific measures to determine the quality and completeness of the content provided. System documentation may be used to support the management of supply chain risk, incident response, and other functions. Personnel or roles that require documentation include system owners, system security officers, and system administrators. Attempts to obtain documentation include contacting manufacturers or suppliers and conducting web-based searches. The inability to obtain documentation may occur due to the age of the system or component or the lack of support from developers and contractors. When documentation cannot be obtained, organizations may need to recreate the documentation if it is essential to the implementation or operation of the controls. The protection provided for the documentation is commensurate with the security category or classification of the system. Documentation that addresses system vulnerabilities may require an increased level of protection. Secure operation of the system includes initially starting the system and resuming secure system operation after a lapse in system operation.' WHERE [Requirement_Id] = 37912
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'1. The application of security engineering principles must be integrated into the SDLC. Security engineering principles are primarily targeted at information systems under new development and information systems undergoing major upgrades. For legacy information systems, security engineering principles must be applied to system upgrades and modifications, to the extent feasible, given the current state of the hardware, software, and firmware components within the system.
[1: Implementation Statement]
+2. Apply the following systems security and privacy engineering principles in the specification, design, development, implementation, and modification of the system and system components:
[2: Implementation Statement]
+ a. Developing layered protections;
[a: Implementation Statement]
+ b. Establishing sound security policy, architecture, and controls as the foundation for design;
[b: Implementation Statement]
+ c. Incorporating security into the SDLC;
[c: Implementation Statement]
+ d. Delineating physical and logical security boundaries;
[d: Implementation Statement]
+ e. Ensuring system developers and integrators are trained on how to develop secure software;
[e: Implementation Statement]
+ f. Tailoring security controls to meet organizational and operational needs;
[f: Implementation Statement]
+ g. Reducing risk to acceptable levels, thus enabling informed risk management decisions;
[g: Implementation Statement]
+ h. Establishing network segmentation; and
[h: Implementation Statement]
+ i. Performing threat modeling to identify use cases, threat agents, attack vectors and patterns, design patterns, and compensating controls needed to mitigate risk.
[i: Implementation Statement]
+
+Related Controls: PL-8, PM-7, RA-2, RA-3, RA-9, SA-3, SA-4, SA-15, SA-17, SC-2, SC-3, SC-32, SC-39, SR-2, SR-3, SR-4, SR-5
+
+ j. Security Controls Enhancement(s):
[j: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Security and Privacy Engineering Principles
Apply the following systems security and privacy engineering principles in the specification, design, development, implementation, and modification of the system and system components: [Assignment: organization-defined systems security and privacy engineering principles].
Discussion:Systems security and privacy engineering principles are closely related to and implemented throughout the system development life cycle (see SA-3). Organizations can apply systems security and privacy engineering principles to new systems under development or to systems undergoing upgrades. For existing systems, organizations apply systems security and privacy engineering principles to system upgrades and modifications to the extent feasible, given the current state of hardware, software, and firmware components within those systems.
The application of systems security and privacy engineering principles helps organizations develop trustworthy, secure, and resilient systems and reduces the susceptibility to disruptions, hazards, threats, and the creation of privacy problems for individuals. Examples of system security engineering principles include: developing layered protections; establishing security and privacy policies, architecture, and controls as the foundation for design and development; incorporating security and privacy requirements into the system development life cycle; delineating physical and logical security boundaries; ensuring that developers are trained on how to build secure software; tailoring controls to meet organizational needs; and performing threat modeling to identify use cases, threat agents, attack vectors and patterns, design patterns, and compensating controls needed to mitigate risk.
Organizations that apply systems security and privacy engineering concepts and principles can facilitate the development of trustworthy, secure systems, system components, and system services; reduce risk to acceptable levels; and make informed risk management decisions. System security engineering principles can also be used to protect against certain supply chain risks, including incorporating tamper-resistant hardware into a design.
' WHERE [Requirement_Id] = 37913
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement the privacy principle of minimization through discrete processes, which detail how systems only process PII or other sensitive information in accordance with Control 3.8 Data Sensitivity that is directly relevant and necessary to accomplish an authorized purpose and should only maintain PII for as long as is necessary to accomplish the purpose. All uses of PII shall be approved by the AO in consultation with the Privacy Administrator in accordance with P/I 9.2 Privacy Policy.
[Implementation Statement]
+
+Related Controls: PE-8, PM-25, SI-12
+
+
+', [Supplemental_Info]=N' Minimization
Implement the privacy principle of minimization using [Assignment: organization-defined processes].
Discussion:The principle of minimization states that organizations should only process personally identifiable information that is directly relevant and necessary to accomplish an authorized purpose and should only maintain personally identifiable information for as long as is necessary to accomplish the purpose. Organizations have processes in place, consistent with applicable laws and policies, to implement the principle of minimization.' WHERE [Requirement_Id] = 37914
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Providers of external system services (including any third-party vendors) shall comply with organizational security and privacy requirements and employ applicable security controls per policy;
[a: Implementation Statement]
+b. Define and document organizational oversight and user roles and responsibilities regarding external system services; and
[b: Implementation Statement]
+c. Employ the following processes, methods, and techniques to monitor control compliance by external service providers on an ongoing basis:
[c: Implementation Statement]
+ i) Leverage organizationally controlled monitoring of external system services; and/or
[c.i: Implementation Statement]
+ ii) Require annual attestation from external system service providers regarding compliance with applicable security controls.
[c.ii: Implementation Statement]
+
+Related Controls: AC-20, CA-3, CP-2, IR-4, IR-7, PL-10, PL-11, PS-7, SA-2, SA-4, SR-3, SR-5
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+', [Supplemental_Info]=N'External System Services
a. Require that providers of external system services comply with organizational security and privacy requirements and employ the following controls: [Assignment: organization-defined controls];
b. Define and document organizational oversight and user roles and responsibilities with regard to external system services; and
c. Employ the following processes, methods, and techniques to monitor control compliance by external service providers on an ongoing basis: [Assignment: organization-defined processes, methods, and techniques].
Discussion:External system services are provided by an external provider, and the organization has no direct control over the implementation of the required controls or the assessment of control effectiveness. Organizations establish relationships with external service providers in a variety of ways, including through business partnerships, contracts, interagency agreements, lines of business arrangements, licensing agreements, joint ventures, and supply chain exchanges. The responsibility for managing risks from the use of external system services remains with authorizing officials. For services external to organizations, a chain of trust requires that organizations establish and retain a certain level of confidence that each provider in the consumer-provider relationship provides adequate protection for the services rendered. The extent and nature of this chain of trust vary based on relationships between organizations and the external providers. Organizations document the basis for the trust relationships so that the relationships can be monitored. External system services documentation includes government, service providers, end user security roles and responsibilities, and service-level agreements. Service-level agreements define the expectations of performance for implemented controls, describe measurable outcomes, and identify remedies and response requirements for identified instances of noncompliance.' WHERE [Requirement_Id] = 37915
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Require providers of external system services to identify the functions, ports, protocols, and other services required for the use of such services.
[Implementation Statement]
+
+Related Controls: CM-6, CM-7
+
+
+', [Supplemental_Info]=N' Identification of Functions, Ports, Protocols, and Services
Require providers of the following external system services to identify the functions, ports, protocols, and other services required for the use of such services: [Assignment: organization-defined external system services].
Discussion:Information from external service providers regarding the specific functions, ports, protocols, and services used in the provision of such services can be useful when the need arises to understand the trade-offs involved in restricting certain functions and services or blocking certain ports and protocols.' WHERE [Requirement_Id] = 37916
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SA-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System and Communication Protection Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] system and communications protection policy
that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the system and communications protection policy and the associated system and
communications protection controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the system and communications protection policy and procedures; and
c. Review and update the current system and communications protection:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:System and communications protection policy and procedures address the controls in the SC family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of system and communications protection policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to system and communications protection policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37917
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Terminate the network connection associated with a communications session at the end of the session or after 15 minutes of inactivity.
[Implementation Statement]
+
+Related Controls: AC-17, SC-23
+
+NIST 800-82 Rev 3:
+Rationale for removing SC-10 from MOD and HIGH baselines: The intent of this control is effectively covered by AC-17 (9) for OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Network Disconnect
Terminate the network connection associated with a communications session at the end of the session or after [Assignment: organization-defined time period] of inactivity.
Discussion:Network disconnect applies to internal and external networks. Terminating network connections associated with specific communications sessions includes de-allocating TCP/IP address or port pairs at the operating system level and de-allocating the networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. Periods of inactivity may be established by organizations and include time periods by type of network access or for specific network accesses.' WHERE [Requirement_Id] = 37918
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish and manage cryptographic keys when cryptography is employed within the system in accordance with the following key management requirements:
[Implementation Statement]
+
+a. Use FIPS 140-2 compliant encryption mechanisms when protecting WMATA Restricted – Medium Sensitivity or WMATA Restricted – High Sensitivity data. Products and modules that have been validated by the AO as FIPS 140-2 compliant will be listed in the Approved Product List (APL).
[a: Implementation Statement]
+b. All key-based data encryption systems must implement a key escrow system to guarantee access to encrypted data when needed. Key escrow data shall be routinely backed up. Recovery procedures must be tested at least annually to ensure access and availability to encrypted data.
[b: Implementation Statement]
+c. Ensure that only authorized personnel have access to keys used to access WMATA Restricted – Medium Sensitivity or WMATA Restricted – High Sensitivity data and must ensure encryption keys are properly stored (separate from data) and available, if needed, for later decryption. Users will ensure the following:
[c: Implementation Statement]
+ i) Separation of duties or dual control procedures are enforced.
[c.i: Implementation Statement]
+ ii) Any theft or loss of electronic keys results in the notification of management.
[c.ii: Implementation Statement]
+ iii) All keys are protected against modification, substitution, and destruction, and secret/private keys are protected against unauthorized disclosure.
[c.iii: Implementation Statement]
+ iv) Cryptographic keys are replaced or retired when keys have reached the end of their life or the integrity of the key has been weakened or compromised.
[c.iv: Implementation Statement]
+ v) Physical protection is employed to protect equipment used to synchronize, store, and archive keys.
[c.v: Implementation Statement]
+ vi) An electronic key management and recovery system, including all relevant key escrow procedures, is documented and in place. This shall be handled through key escrow procedures.
[c.vi: Implementation Statement]
+ vii) Custodians of cryptographic keys formally acknowledge they understand and accept their key custodian responsibilities.
[c.vii: Implementation Statement]
+d. Encrypted data are recoverable at any point in time, even when the person(s) who encrypted the data is no longer available.
[d: Implementation Statement]
+e. Only digital certificates either issued by and/or approved by DMCS can be used to access the WMATA network, applications, and/or systems.
[e: Implementation Statement]
+
+Related Controls : AC-17, AU-9, AU-10, CM-3, IA-3, IA-7, SA-4, SA-8, SA-9, SC-8, SC-12, SC-13, SC-17, SC-20, SI-3, SI-7
+
+f. Security Controls Enhancement(s):
[f: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Cryptographic Key Establishment and Management
Establish and manage cryptographic keys when cryptography is employed within the system in accordance with the following key management requirements: [Assignment: organization-defined requirements for key generation, distribution, storage, access, and destruction].
Discussion:Cryptographic key management and establishment can be performed using manual procedures or automated mechanisms with supporting manual procedures. Organizations define key management requirements in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines and specify appropriate options, parameters, and levels. Organizations manage trust stores to ensure that only approved trust anchors are part of such trust stores. This includes certificates with visibility external to organizational systems and certificates related to the internal operations of systems. [NIST CMVP] and [NIST CAVP] provide additional information on validated cryptographic modules and algorithms that can be used in cryptographic key management and establishment.' WHERE [Requirement_Id] = 37919
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Maintain the availability of information using key escrow systems, techniques, and procedures in the event of the loss of cryptographic keys by users.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Availability
Maintain availability of information in the event of the loss of cryptographic keys by users.
Discussion:Escrowing of encryption keys is a common practice for ensuring availability in the event of key loss. A forgotten passphrase is an example of losing a cryptographic key.' WHERE [Requirement_Id] = 37920
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Determine and document the system’s use of cryptography to include cryptographic algorithms, key sizes, solutions, and solution components; and
[a: Implementation Statement]
+b. Implement cryptography leveraging the latest versions of FIPS 140-2, NIST SP800-131A, or NSA CNSA Suite encryption at the direction of the AO.
[b: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-7, AC-17, AC-18, AC-19, AU-9, AU-10, CM-11, CP-9, IA-3, IA-5, IA-7, MA-4, MP-2, MP-4, MP-5, SA-4, SA-8, SA-9, SC-8, SC-12, SC-20, SC-23, SC-28, SI-3, SI-7
+
+
+', [Supplemental_Info]=N'Cryptographic Protection
a. Determine the [Assignment: organization-defined cryptographic uses]; and
b. Implement the following types of cryptography required for each specified cryptographic use: [Assignment: organization-defined types of cryptography for each specified cryptographic use].
Discussion:Cryptography can be employed to support a variety of security solutions, including the protection of classified information and controlled unclassified information, the provision and implementation of digital signatures, and the enforcement of information separation when authorized individuals have the necessary clearances but lack the necessary formal access approvals. Cryptography can also be used to support random number and hash generation. Generally applicable cryptographic standards include FIPS-validated cryptography and NSA-approved cryptography. For example, organizations that need to protect classified information may specify the use of NSA-approved cryptography. Organizations that need to provision and implement digital signatures may specify the use of FIPS-validated cryptography. Cryptography is implemented in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.' WHERE [Requirement_Id] = 37921
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Prohibit remote activation of collaborative computing devices and applications including remote meeting devices and applications, networked whiteboards, cameras, and microphones unless authorized by the AO. Only devices and applications listed on the organizational APL may be used.
[a: Implementation Statement]
+b. Provide an explicit indication of use to users physically present at the devices.
[b: Implementation Statement]
+
+Related Controls: AC-21
+
+
+', [Supplemental_Info]=N'Collaborative Computing Devices and Applications
a. Prohibit remote activation of collaborative computing devices and applications with the following exceptions: [Assignment: organization-defined exceptions where remote activation is to be allowed]; and
b. Provide an explicit indication of use to users physically present at the devices.
Discussion:Collaborative computing devices and applications include remote meeting devices and applications, networked white boards, cameras, and microphones. The explicit indication of use includes signals to users when collaborative computing devices and applications are activated.' WHERE [Requirement_Id] = 37922
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Obtain public key certificates from DMCS-approved service provider(s); and
[a: Implementation Statement]
+b. Include only approved trust anchors in trust stores or certificate stores managed by the organization.
[b: Implementation Statement]
+
+Related Controls: AU-10, IA-5, SC-12
+
+
+', [Supplemental_Info]=N'Public Key Infrastructure Certificates
a. Issue public key certificates under an [Assignment: organization-defined certificate policy] or obtain public key certificates from an approved service provider; and
b. Include only approved trust anchors in trust stores or certificate stores managed by the organization.
Discussion:Public key infrastructure (PKI) certificates are certificates with visibility external to organizational systems and certificates related to the internal operations of systems, such as application-specific time services. In cryptographic systems with a hierarchical structure, a trust anchor is an authoritative source (i.e., a certificate authority) for which trust is assumed and not derived. A root certificate for a PKI system is an example of a trust anchor. A trust store or certificate store maintains a list of trusted root certificates.' WHERE [Requirement_Id] = 37923
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Define acceptable and unacceptable mobile code and mobile code technologies. Only AO- approved technologies are allowed and shall be developed in accordance with Control 3.4, Configuration Management, Section 6, “CM-6 Configuration Settings”.
[a: Implementation Statement]
+b. Authorize, monitor, and control the use of mobile code within the system.
[b: Implementation Statement]
+
+Related Controls: AU-2, AU-12, CM-2, CM-6, SI-3
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.1.d. Block and prevent unauthorized code, including macro scripts, from executing; and (p.8)
[D.1.d: Implementation Statement]
+
+D.2. Procedures to—
+
+D.2.c. Identify and respond to execution of unauthorized code, including macro scripts; and (p.8)
[D.2.c: Implementation Statement]
+', [Supplemental_Info]=N'Mobile Code
a. Define acceptable and unacceptable mobile code and mobile code technologies; and
b. Authorize, monitor, and control the use of mobile code within the system.
Discussion:Mobile code includes any program, application, or content that can be transmitted across a network (e.g., embedded in an email, document, or website) and executed on a remote system. Decisions regarding the use of mobile code within organizational systems are based on the potential for the code to cause damage to the systems if used maliciously. Mobile code technologies include Java applets, JavaScript, HTML5, WebGL, and VBScript. Usage restrictions and implementation guidelines apply to both the selection and use of mobile code installed on servers and mobile code downloaded and executed on individual workstations and devices, including notebook computers and smart phones. Mobile code policy and procedures address specific actions taken to prevent the development, acquisition, and introduction of unacceptable mobile code within organizational systems, including requiring mobile code to be digitally signed by a trusted source.' WHERE [Requirement_Id] = 37924
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Unapproved mobile code and mobile code technologies shall be removed from the WMATA environment. The System Owner shall document a POA&M identifying corrective actions and associated timeline subject to the approval of the AO.
[Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.1.d. Block and prevent unauthorized code, including macro scripts, from executing; and (p.8)
[D.1.d: Implementation Statement]
+
+D.2. Procedures to —
+
+D.2.c. Identify and respond to execution of unauthorized code, including macro scripts; and (p.8)
[D.2.c: Implementation Statement]
+', [Supplemental_Info]=N'Identify Unacceptable Code and Take Corrective Actions
Identify [Assignment: organization-defined unacceptable mobile code] and take [Assignment: organization-defined corrective actions].
Discussion:Corrective actions when unacceptable mobile code is detected include blocking, quarantine, or alerting administrators. Blocking includes preventing the transmission of word processing files with embedded macros when such macros have been determined to be unacceptable mobile code.' WHERE [Requirement_Id] = 37925
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Verify that the acquisition, development, and use of mobile code to be deployed in the system meets DM-defined mobile code requirements in accordance with Control 3.17, Section 13, “SC-18 Mobile Code”, a.
[Implementation Statement]
+
+Related Controls: SC-18
+
+
+' WHERE [Requirement_Id] = 37926
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent the download and execution of unapproved mobile code and mobile code technologies.
[Implementation Statement]
+
+
+' WHERE [Requirement_Id] = 37927
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent the automatic execution of mobile code in software applications and enforce the following actions prior to executing the code:
[Implementation Statement]
+
+(1) Email - prompt users prior to opening attachments or clicking on web links;
[1: Implementation Statement]
+(2) Software - prevent the automatic execution of mobile code by disabling auto-execute features on system components that employ portable storage devices, such as compact discs, digital versatile discs, and universal serial bus devices.
[2: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Prevent Automatic Execution
Prevent the automatic execution of mobile code in [Assignment: organization-defined software applications] and enforce [Assignment: organization-defined actions] prior to executing the code.
Discussion:Actions enforced before executing mobile code include prompting users prior to opening email attachments or clicking on web links. Preventing the automatic execution of mobile code includes disabling auto-execute features on system components that employ portable storage devices, such as compact discs, digital versatile discs, and universal serial bus devices.' WHERE [Requirement_Id] = 37928
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Allow execution of permitted mobile code only in confined virtual machine environments.
[Implementation Statement]
+
+Related Controls: SI-7
+
+
+', [Supplemental_Info]=N'Allow Execution Only in Confined Environments
Allow execution of permitted mobile code only in confined virtual machine environments.
Discussion:Permitting the execution of mobile code only in confined virtual machine environments helps prevent the introduction of malicious code into other systems and system components.' WHERE [Requirement_Id] = 37929
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Separate user functionality, including user interface services, from system management functionality.
[Implementation Statement]
+
+OT Systems Only:
+Physical separation includes using separate systems for managing the OT than for operating OT components. Logical separation includes the use of different user accounts for administrative and operator privileges. Example compensating controls including providing increased auditing measures.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-6, SA-4, SA-8, SC-3, SC-7, SC-22, SC-32, SC-39
+
+NIST 800-82 Rev 3:
+OT Discussion: Physical separation includes using separate systems for managing the OT and for operating OT components. Logical separation includes the use of different user accounts for administrative and operator privileges. Example compensating controls include providing increased auditing measures.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Separation of System and User Functionality
Separate user functionality, including user interface services, from system management functionality.
Discussion:System management functionality includes functions that are necessary to administer databases, network components, workstations, or servers. These functions typically require privileged user access. The separation of user functions from system management functions is physical or logical. Organizations may separate system management functions from user functions by using different computers, instances of operating systems, central processing units, or network addresses; by employing virtualization techniques; or some combination of these or other methods. Separation of system management functions from user functions includes web administrative interfaces that employ separate authentication methods for users of any other system resources. Separation of system and user functions may include isolating administrative interfaces on different domains and with additional access controls. The separation of system and user functionality can be achieved by applying the systems security engineering design principles in SA-8, including SA-8(1), SA-8(3), SA-8(4), SA-8(10), SA-8(12), SA-8(13), SA-8(14), and SA-8(18).' WHERE [Requirement_Id] = 37930
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Provide additional data origin authentication and integrity verification artifacts along with the authoritative name resolution data the system returns in response to external name/address resolution queries; and
[a: Implementation Statement]
+b. Provide the means to indicate the security status of child zones and (if the child supports secure resolution services) to enable verification of a chain of trust among parent and child domains when operating as part of a distributed, hierarchical namespace.
[b: Implementation Statement]
+
+OT Systems Only:
+The use of secure name/address resolution services should be determined only after careful consideration and after verification that it does not adversely impact the operational performance of the OT.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-10, SC-8, SC-12, SC-13, SC-21, SC-22
+
+NIST 800-82 Rev 3:
+OT Discussion: Secure name/address resolution services should only be used after careful consideration and verification that they do not adversely impact the operational performance of the OT.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Secure Name/address Resolution Service (authoritative Source)
a. Provide additional data origin authentication and integrity verification artifacts along with the authoritative name resolution data the system returns in response to external name/address resolution queries; and
b. Provide the means to indicate the security status of child zones and (if the child supports secure resolution services) to enable verification of a chain of trust among parent and child domains, when operating as part of a distributed, hierarchical namespace.
Discussion:Providing authoritative source information enables external clients, including remote Internet clients, to obtain origin authentication and integrity verification assurances for the host/service name to network address resolution information obtained through the service. Systems that provide name and address resolution services include domain name system (DNS) servers. Additional artifacts include DNS Security Extensions (DNSSEC) digital signatures and cryptographic keys. Authoritative data includes DNS resource records. The means for indicating the security status of child zones include the use of delegation signer resource records in the DNS. Systems that use technologies other than the DNS to map between host and service names and network addresses provide other means to assure the authenticity and integrity of response data.' WHERE [Requirement_Id] = 37931
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Request and perform data origin authentication and data integrity verification on the name/address resolution responses the system receives from authoritative sources.
[Implementation Statement]
+
+OT Systems Only:
+The use of secure name/address resolution services should be determined only after careful consideration and after verification that it does not adversely impact the operational performance of the OT.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SC-20, SC-22
+
+NIST 800-82 Rev 3:
+OT Discussion: Secure name/address resolution services should only be used after careful consideration and verification that they do not adversely impact the operational performance of the OT.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Secure Name/address Resolution Service (recursive or Caching Resolver)
Request and perform data origin authentication and data integrity verification on the name/address resolution responses the system receives from authoritative sources.
Discussion:Each client of name resolution services either performs this validation on its own or has authenticated channels to trusted validation providers. Systems that provide name and address resolution services for local clients include recursive resolving or caching domain name system (DNS) servers. DNS client resolvers either perform validation of DNSSEC signatures, or clients use authenticated channels to recursive resolvers that perform such validations. Systems that use technologies other than the DNS to map between host and service names and network addresses provide some other means to enable clients to verify the authenticity and integrity of response data.' WHERE [Requirement_Id] = 37932
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Ensure the systems that collectively provide name/address resolution service for an organization are fault-tolerant and implement internal and external role separation.
[Implementation Statement]
+
+OT Systems Only:
+The use of secure name/address resolution services should be determined only after careful consideration and after verification that it does not adversely impact the operational performance of the OT.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SC-2, SC-20, SC-21, SC-24
+
+NIST 800-82 Rev 3:
+OT Discussion: Secure name/address resolution services should only be used after careful consideration and verification that they do not adversely impact the operational performance of the OT.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Architecture and Provisioning for Name/address Resolution Service
Ensure the systems that collectively provide name/address resolution service for an organization are fault-tolerant and implement internal and external role separation.
Discussion:Systems that provide name and address resolution services include domain name system (DNS) servers. To eliminate single points of failure in systems and enhance redundancy, organizations employ at least two authoritative domain name system servers—one configured as the primary server and the other configured as the secondary server. Additionally, organizations typically deploy the servers in two geographically separated network subnetworks (i.e., not located in the same physical facility). For role separation, DNS servers with internal roles only process name and address resolution requests from within organizations (i.e., from internal clients). DNS servers with external roles only process name and address resolution information requests from clients external to organizations (i.e., on external networks, including the Internet). Organizations specify clients that can access authoritative DNS servers in certain roles (e.g., by address ranges and explicit lists).' WHERE [Requirement_Id] = 37933
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Protect the authenticity of communications sessions.
[Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include auditing measures.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-10, SC-8, SC-10
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include auditing measures.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Session Authenticity
Protect the authenticity of communications sessions.
Discussion:Protecting session authenticity addresses communications protection at the session level, not at the packet level. Such protection establishes grounds for confidence at both ends of communications sessions in the ongoing identities of other parties and the validity of transmitted information. Authenticity protection includes protecting against “man-in-the-middle” attacks, session hijacking, and the insertion of false information into sessions.' WHERE [Requirement_Id] = 37934
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Systems shall fail to a known, secure system state following failures on system components while preserving system state information.
[Implementation Statement]
+
+OT Systems Only:
+The organization selects an appropriate failure state. Preserving OT state information includes consistency among OT state variables and the physical state which the OT represents (e.g., whether valves are open or closed, communication permitted or blocked, continue operations).
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-2, CP-4, CP-10, CP-12, SA-8, SC-7, SC-22, SI-13
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization selects an appropriate failure state. Preserving OT state information includes consistency among OT state variables and the physical state that the OT represents (e.g., whether valves are open or closed, communication permitted or blocked, continue operations).
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding SC-24 to MOD baseline: As part of the architecture and design of the OT, the organization selects an appropriate failure state in accordance with the function performed by the OT and the operational environment. The ability to choose the failure mode for the physical part of OT differentiates OT systems from other IT systems. This choice may be a significant influence in mitigating the impact of a failure since it may be disruptive to ongoing physical processes (e.g., valves failing in closed position may adversely affect system cooling).
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Fail in Known State
Fail to a [Assignment: organization-defined known system state] for the following failures on the indicated components while preserving [Assignment: organization-defined system state information] in failure: [Assignment: list of organization-defined types of system failures on organization-defined system components].
Discussion:Failure in a known state addresses security concerns in accordance with the mission and business needs of organizations. Failure in a known state prevents the loss of confidentiality, integrity, or availability of information in the event of failures of organizational systems or system components. Failure in a known safe state helps to prevent systems from failing to a state that may cause injury to individuals or destruction to property. Preserving system state information facilitates system restart and return to the operational mode with less disruption of mission and business processes.' WHERE [Requirement_Id] = 37935
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Protect the confidentiality and integrity of information at rest.
[a: Implementation Statement]
+
+OT Systems Only:
+The use of cryptographic mechanisms is implemented only after careful consideration and after verification that it does not adversely impact the operational performance of the OT. Cryptographic mechanisms may not be feasible on certain OT devices. In these cases, compensating controls may be relocating the data to a location that does not support cryptographic mechanisms.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-4, AC-6, AC-19, CA-7, CM-3, CM-5, CM-6, CP-9, MP-4, MP-5, PE-3, SC-8, SC-12, SC-13, SI-3, SI-7, SI-16
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Cryptographic mechanisms are implemented only after careful consideration and verification that they do not adversely impact the operational performance of the OT. When cryptographic mechanisms are not feasible on certain OT devices, compensating controls may include relocating the data to a location that does support cryptographic mechanisms.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Protection of Information at Rest
Protect the [Selection (one or more): confidentiality; integrity] of the following information at rest: [Assignment: organization-defined information at rest].
Discussion:Information at rest refers to the state of information when it is not in process or in transit and is located on system components. Such components include internal or external hard disk drives, storage area network devices, or databases. However, the focus of protecting information at rest is not on the type of storage device or frequency of access but rather on the state of the information. Information at rest addresses the confidentiality and integrity of information and covers user information and system information. System-related information that requires protection includes configurations or rule sets for firewalls, intrusion detection and prevention systems, filtering routers, and authentication information. Organizations may employ different mechanisms to achieve confidentiality and integrity protections, including the use of cryptographic mechanisms and file share scanning. Integrity protection can be achieved, for example, by implementing write-once-read-many (WORM) technologies. When adequate protection of information at rest cannot otherwise be achieved, organizations may employ other controls, including frequent scanning to identify malicious code at rest and secure offline storage in lieu of online storage.' WHERE [Requirement_Id] = 37936
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement cryptographic mechanisms to prevent unauthorized disclosure and modification of sensitive information on system components or media commensurate with the security category or classification of the information in accordance with Control 3.8 Data Sensitivity.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Cryptographic Protection
Implement cryptographic mechanisms to prevent unauthorized disclosure and modification of the following information at rest on [Assignment: organization-defined system components or media]: [Assignment: organization-defined information].
Discussion:The selection of cryptographic mechanisms is based on the need to protect the confidentiality and integrity of organizational information. The strength of mechanism is commensurate with the security category or classification of the information. Organizations have the flexibility to encrypt information on system components or media or encrypt data structures, including files, records, or fields.' WHERE [Requirement_Id] = 37937
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Isolate security functions from non-security functions.
[Implementation Statement]
+
+OT Systems Only:
+Organizations consider implementing this control when designing new architectures or updating existing components. An example compensating control includes access controls.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-6, AC-25, CM-2, CM-4, SA-4, SA-5, SA-8, SA-15, SA-17, SC-2, SC-7, SC-32, SC-39, SI-16
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations consider implementing this control when designing new architectures or updating existing components. An example compensating control includes access controls.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Security Function Isolation
Isolate security functions from nonsecurity functions.
Discussion:Security functions are isolated from nonsecurity functions by means of an isolation boundary implemented within a system via partitions and domains. The isolation boundary controls access to and protects the integrity of the hardware, software, and firmware that perform system security functions. Systems implement code separation in many ways, such as through the provision of security kernels via processor rings or processor modes. For non-kernel code, security function isolation is often achieved through file system protections that protect the code on disk and address space protections that protect executing code. Systems can restrict access to security functions using access control mechanisms and by implementing least privilege capabilities. While the ideal is for all code within the defined security function isolation boundary to only contain security-relevant code, it is sometimes necessary to include nonsecurity functions as an exception. The isolation of security functions from nonsecurity functions can be achieved by applying the systems security engineering design principles in SA-8, including SA-8(1), SA-8(3), SA-8(4), SA-8(10), SA-8(12), SA-8(13), SA-8(14), and SA-8(18).' WHERE [Requirement_Id] = 37938
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Partition the system into [Assignment: organization-defined system components] residing in separate
[Selection: physical; logical] domains or environments based on [Assignment: organization-defined circumstances for physical or logical separation of components].
[Implementation Statement]
+
+a. Security Controls Enhancement(s):
[a: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Partitioning
Partition the system into [Assignment: organization-defined system components] residing in separate [Selection: physical; logical] domains or environments based on [Assignment: organization-defined circumstances for physical or logical separation of components].
Discussion:System partitioning is part of a defense-in-depth protection strategy. Organizations determine the degree of physical separation of system components. Physical separation options include physically distinct components in separate racks in the same room, critical components in separate rooms, and geographical separation of critical components. Security categorization can guide the selection of candidates for domain partitioning. Managed interfaces restrict or prohibit network access and information flow among partitioned system components.' WHERE [Requirement_Id] = 37939
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Partition privileged functions into separate physical domains.
[Implementation Statement]
+
+OT Systems Only:
+Organizations consider separate physical domains for privileged functions such as those affecting security and safety.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-19, SC-12, SC-13
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations consider separate physical domains for privileged functions, such as those that affect security and safety.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Partitioning | Separate Physical Domains for Privileged Functions
Partition privileged functions into separate physical domains.
Discussion:Privileged functions that operate in a single physical domain may represent a single point of failure if that domain becomes compromised or experiences a denial of service.' WHERE [Requirement_Id] = 37940
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Maintain a separate execution domain for each executing system process.
[Implementation Statement]
+
+OT System Only:
+Example compensating controls include partition processes to separate platforms.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-4, AC-6, AC-25, SA-8, SC-2, SC-3, SI-16
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include partition processes to separate platforms.
+
+
+', [Supplemental_Info]=N'Process Isolation
Maintain a separate execution domain for each executing system process.
Discussion:Systems can maintain separate execution domains for each executing process by assigning each process a separate address space. Each system process has a distinct address space so that communication between processes is performed in a manner controlled through the security functions, and one process cannot modify the executing code of another process. Maintaining separate execution domains for executing processes can be achieved, for example, by implementing separate address spaces. Process isolation technologies, including sandboxing or virtualization, logically separate software and firmware from other software, firmware, and data. Process isolation helps limit the access of potentially untrusted software to other system resources. The capability to maintain separate execution domains is available in commercial operating systems that employ multi-state processor technologies.' WHERE [Requirement_Id] = 37941
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent unauthorized and unintended information transfer via shared system resources.
[Implementation Statement]
+
+OT Systems Only:
+This control is especially relevant for OT systems that process confidential data. Example compensating controls include architecting the use of the OT to prevent sharing system resources.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AC-4, SA-8
+
+NIST 800-82 Rev 3:
+OT Discussion: This control is especially relevant for OT systems that process confidential data. Example compensating controls include engineering the use of the OT to prevent sharing system resources.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Information in Shared System Resources
Prevent unauthorized and unintended information transfer via shared system resources.
Discussion:Preventing unauthorized and unintended information transfer via shared system resources stops information produced by the actions of prior users or roles (or the actions of processes acting on behalf of prior users or roles) from being available to current users or roles (or current processes acting on behalf of current users or roles) that obtain access to shared system resources after those resources have been released back to the system. Information in shared system resources also applies to encrypted representations of information. In other contexts, control of information in shared system resources is referred to as object reuse and residual information protection. Information in shared system resources does not address information remanence, which refers to the residual representation of data that has been nominally deleted; covert channels (including storage and timing channels), where shared system resources are manipulated to violate information flow restrictions; or components within systems for which there are only single users or roles.' WHERE [Requirement_Id] = 37942
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'
[Selection: Physically; Logically] disable or remove [Assignment: organization-defined connection ports or input/output devices] on the following systems or system components: [Assignment: organization-defined systems or system components].
[Implementation Statement]
+
+Related Controls: AC-20, MP-7
+
+NIST 800-82 Rev 3:
+Rationale for adding SC-41 to LOW, MOD, and HIGH baselines: OT functionality is generally defined in advance and does not change often.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Port and I/O Device Access
[Selection: Physically; Logically] disable or remove [Assignment: organization-defined connection ports or input/output devices] on the following systems or system components: [Assignment: organization-defined systems or system components].
Discussion:Connection ports include Universal Serial Bus (USB), Thunderbolt, and Firewire (IEEE 1394). Input/output (I/O) devices include compact disc and digital versatile disc drives. Disabling or removing such connection ports and I/O devices helps prevent the exfiltration of information from systems and the introduction of malicious code from those ports or devices. Physically disabling or removing ports and/or devices is the stronger action.' WHERE [Requirement_Id] = 37943
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Synchronize system clocks within and between systems and system components.
[a: Implementation Statement]
+
+OT System Only:
+Organizations coordinate time synchronization on OT to allow for accurate troubleshooting and forensics.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-3, AU-8, IA-2, IA-8
+
+b) Security Controls Enhancement(s):
[b: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations coordinate time synchronization on OT to allow for accurate troubleshooting and forensics.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding SC-45 to LOW, MOD, and HIGH baselines: Organizations may find relative system time beneficial for many OT systems to ensure the safe and reliable delivery of essential functions. Time synchronization can also make root cause analysis more efficient by ensuring that audit logs from different systems are aligned so that organizations have an accurate view of events across multiple systems when the logs are aggregated.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+
+', [Supplemental_Info]=N'System Time Synchronization
Synchronize system clocks within and between systems and system components.
Discussion:Time synchronization of system clocks is essential for the correct execution of many system services, including identification and authentication processes that involve certificates and time-of-day restrictions as part of access control. Denial of service or failure to deny expired credentials may result without properly synchronized clocks within and between systems and system components. Time is commonly expressed in Coordinated Universal Time (UTC), a modern continuation of Greenwich Mean Time (GMT), or local time with an offset from UTC. The granularity of time measurements refers to the degree of synchronization between system clocks and reference clocks, such as clocks synchronizing within hundreds of milliseconds or tens of milliseconds. Organizations may define different time granularities for system components. Time service can be critical to other security capabilities—such as access control and identification and authentication—depending on the nature of the mechanisms used to support the capabilities.' WHERE [Requirement_Id] = 37944
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Compare the internal system clocks [Assignment: organization-defined frequency] with [Assignment: organization-defined authoritative time source]; and
[1: Implementation Statement]
+(2) Synchronize the internal system clocks to the authoritative time source when the time difference is greater than [Assignment: organization-defined time period].
[2: Implementation Statement]
+
+OT Systems Only:
+Syncing with an authoritative time source may be selected as a control when data is being correlated across organizational boundaries. OT employ suitable mechanisms (e.g., GPS, IEEE 1588) for time stamps.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Syncing with an authoritative time source may be selected as a control when data is being correlated across organizational boundaries. OT employ suitable mechanisms (e.g., GPS, IEEE 1588) for timestamps.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Time Synchronization | Synchronization with Authoritative Time Source
(a) Compare the internal system clocks [Assignment: organization-defined frequency] with [Assignment: organization-defined authoritative time source]; and
(b) Synchronize the internal system clocks to the authoritative time source when the time difference is greater than [Assignment: organization-defined time period].
Discussion:Synchronization of internal system clocks with an authoritative source provides uniformity of time stamps for systems with multiple system clocks and systems connected over a network.' WHERE [Requirement_Id] = 37945
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish [Assignment: organization-defined alternate communications paths] for system operations organizational command and control.
[Implementation Statement]
+
+OT Systems Only:
+Organization considers which systems require alternate communications paths to ensure a loss of communication does not lead to an unacceptable loss of view, control or safety event.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-2, CP-8
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations consider which systems require alternate communication paths to ensure that a loss of communication does not lead to an unacceptable loss of view or control or to a safety event.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding SC-47 to HIGH baseline: For continuity of operations during an incident, organizations should consider establishing alternate communications paths for command-and-control purposes to continue to operate and take appropriate actions for high-impact systems when the loss of availability or integrity may result in severe or catastrophic adverse impacts, including impacts to safety and critical service delivery.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Alternate Communication Paths
Establish [Assignment: organization-defined alternate communications paths] for system operations organizational command and control.
Discussion:An incident, whether adversarial- or nonadversarial-based, can disrupt established communications paths used for system operations and organizational command and control. Alternate communications paths reduce the risk of all communications paths being affected by the same incident. To compound the problem, the inability of organizational officials to obtain timely information about disruptions or to provide timely direction to operational elements after a communications path incident, can impact the ability of the organization to respond to such incidents in a timely manner. Establishing alternate communications paths for command and control purposes, including designating alternative decision makers if primary decision makers are unavailable and establishing the extent and limitations of their actions, can greatly facilitate the organization’s ability to continue to operate and take appropriate actions during an incident.' WHERE [Requirement_Id] = 37946
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Protect against and limit the effects of denial-of-service events; and
[a: Implementation Statement]
+b. Employ the controls to achieve the denial-of-service objective to include, but not limited to:
[b: Implementation Statement]
+ i) Requiring implementation of enterprise boundary protection devices (e.g., firewall, web application firewall, etc.) at all network access points;
[b.i: Implementation Statement]
+ ii) Requiring system integration with enterprise boundary protection devices;
[b.ii: Implementation Statement]
+ iii) Periodically scanning network and devices for malware;
[b.iii: Implementation Statement]
+ iv) Providing detection and monitoring capabilities to detect indicators of attack against WMATA;
[b.iv: Implementation Statement]
+ v) Monitoring system resource utilization to ensure sufficient capacity;
[b.v: Implementation Statement]
+ vi) Managing excess capacity, bandwidth, or other redundancy;
[b.vi: Implementation Statement]
+ vii) Deploying authentication mechanisms wherever technically configurable;
[b.vii: Implementation Statement]
+ viii) Designing and implementing networks for maximum resiliency that incorporate high availability (e.g., load balancing, redundant systems, etc.) and automated disaster recovery (e.g., automated failover and isolated restoration capabilities);
[b.viii: Implementation Statement]
+ ix) Developing specific plans for responding to DoS and DDoS attacks in the WMATA incident response plan, a system’s disaster recovery and continuity of operations plan, and the enterprise business continuity plan;
[b.ix: Implementation Statement]
+
+OT Systems Only:
+Some OT equipment may be more susceptible to DoS attacks due to the time criticality of some OT applications. Risk-based analysis informs prioritization of DoS protection and establishment of policy and procedure.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-2, IR-4, SC-7
+
+NIST 800-82 Rev 3:
+OT Discussion: Some OT equipment may be more susceptible to DoS attacks due to the time criticality of some OT applications. Risk-based analysis informs the prioritization of DoS protection and the establishment of policy and procedure.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Denial-of-service Protection
a. [Selection: Protect against; Limit] the effects of the following types of denial-of-service events: [Assignment: organization-defined types of denial-of-service events]; and
b. Employ the following controls to achieve the denial-of-service objective: [Assignment: organization-defined controls by type of denial-of-service event].
Discussion:Denial-of-service events may occur due to a variety of internal and external causes, such as an attack by an adversary or a lack of planning to support organizational needs with respect to capacity and bandwidth. Such attacks can occur across a wide range of network protocols (e.g., IPv4, IPv6). A variety of technologies are available to limit or eliminate the origination and effects of denial-of-service events. For example, boundary protection devices can filter certain types of packets to protect system components on internal networks from being directly affected by or the source of denial-of-service attacks. Employing increased network capacity and bandwidth combined with service redundancy also reduces the susceptibility to denial-of-service events.' WHERE [Requirement_Id] = 37947
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a) Employ hardware-based, write-protect for [Assignment: organization-defined system firmware components]; and
[a: Implementation Statement]
+b) Implement specific procedures for [Assignment: organization-defined authorized individuals] to manually disable hardware write-protect for firmware modifications and re-enable the write-protect prior to returning to operational mode.
[b: Implementation Statement]
+
+OT Systems Only:
+Some OT systems support write-protection by implementing physical key switches or write-protect switches. Organizations define the systems for which write-protection will be enables and develop a process for how to take the system out of write-protect mode.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Some OT systems support write-protection by implementing physical key switches or write-protect switches. Organizations define the systems for which write-protection will be enabled and develop a process for how to take the system out of write-protect mode.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+' WHERE [Requirement_Id] = 37948
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Monitor and control communications at the external managed interfaces to the system and at key internal managed interfaces (e.g., gateways, routers, firewalls, guards, network-based malicious code analysis, virtualization systems, or encrypted tunnels) within the system;
[a: Implementation Statement]
+b. Implement subnetworks for publicly accessible system components that are physically and logically separated from internal organizational networks; and
[b: Implementation Statement]
+c. Connect to external networks or systems only through managed interfaces consisting of boundary protection devices arranged in accordance with an organizational security and privacy architecture.
[c: Implementation Statement]
+
+Related Controls: AC-4, AC-17, AC-18, AC-19, AC-20, CA-3, CM-2, CM-4, CM-7, CM-10, CP-8, CP-10, IR-4, MA-4, PE-3, PL-8, PM-12, SA-8, SA-17, SC-5, SC-32
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.a. Implement network segmentation policies and controls to ensure that the Operational Technology system can continue to safely operate in the event that an Information Technology system has been compromised; (p.2)
[1.a: Implementation Statement]
+
+III. Cybersecurity Measures
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+
+D.1.b. Block ingress and egress communications with known or suspected malicious Internet Protocol addresses; (p.8)
[D.1.b: Implementation Statement]
+
+D.1.c. Control impact of known or suspected malicious web domains or web applications, such as by preventing users and devices from accessing malicious websites; (p.8)
[D.1.c: Implementation Statement]
+
+D.1.e. Monitor and/or block connections from known or suspected malicious command and control servers (such as Tor exit nodes, and other anonymization services). (p.8)
[D.1.e: Implementation Statement]
+
+D.2. Procedures to—
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.a: Implementation Statement]
+
+D.4. Mitigation measures or manual controls to ensure industrial control systems can be isolated when a cybersecurity incident in the Information Technology system creates risk to the safety and reliability of the Operational Technology system. (p.8)
[D.4: Implementation Statement]
+
+IV. Records
+
+C. Documentation to Establish Compliance
[c: Implementation Statement]
+
+C.2.a. Hardware/software asset inventory, including supervisory control, and data acquisition systems. (p.11)
[C.2.a: Implementation Statement]
+', [Supplemental_Info]=N'Boundary Protection
a. Monitor and control communications at the external managed interfaces to the system and at key internal managed interfaces within the system;
b. Implement subnetworks for publicly accessible system components that are [Selection: physically; logically] separated from internal organizational networks; and
c. Connect to external networks or systems only through managed interfaces consisting of boundary protection devices arranged in accordance with an organizational security and privacy architecture.
Discussion:Managed interfaces include gateways, routers, firewalls, guards, network-based malicious code analysis, virtualization systems, or encrypted tunnels implemented within a security architecture. Subnetworks that are physically or logically separated from internal networks are referred to as demilitarized zones or DMZs. Restricting or prohibiting interfaces within organizational systems includes restricting external web traffic to designated web servers within managed interfaces, prohibiting external traffic that appears to be spoofing internal addresses, and prohibiting internal traffic that appears to be spoofing external addresses. [SP 800-189] provides additional information on source address validation techniques to prevent ingress and egress of traffic with spoofed addresses. Commercial telecommunications services are provided by network components and consolidated management systems shared by customers. These services may also include third party-provided access lines and other service elements. Such services may represent sources of increased risk despite contract security provisions. Boundary protection may be implemented as a common control for all or part of an organizational network such that the boundary to be protected is greater than a system-specific boundary (i.e., an authorization boundary).' WHERE [Requirement_Id] = 37949
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Only allow incoming communications from [Assignment: organization-defined authorized sources] to be routed to [Assignment: organization-defined authorized destinations].
[Implementation Statement]
+
+Related Controls: AC-3
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.1.b. Block ingress and egress communications with known or suspected malicious Internet Protocol addresses; (p.8)
[D.1.b: Implementation Statement]
+
+D.1.c. Control impact of known or suspected malicious web domains or web applications, such as by preventing users and devices from accessing malicious websites; (p.8)
[D.1.c: Implementation Statement]
+
+D.1.e. Monitor and/or block connections from known or suspected malicious command and control servers (such as Tor exit nodes, and other anonymization services). (p.8)
[D.1.c: Implementation Statement]
+
+D.2. Procedures to—
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.4. Mitigation measures or manual controls to ensure industrial control systems can be isolated when a cybersecurity incident in the Information Technology system creates risk to the safety and reliability of the Operational Technology system. (p.8)
[D.4: Implementation Statement]
+', [Supplemental_Info]=N' Restrict Incoming Communications Traffic
Only allow incoming communications from [Assignment: organization-defined authorized sources] to be routed to [Assignment: organization-defined authorized destinations].
Discussion:General source address validation techniques are applied to restrict the use of illegal and unallocated source addresses as well as source addresses that should only be used within the system. The restriction of incoming communications traffic provides determinations that source and destination address pairs represent authorized or allowed communications. Determinations can be based on several factors, including the presence of such address pairs in the lists of authorized or allowed communications, the absence of such address pairs in lists of unauthorized or disallowed pairs, or meeting more general rules for authorized or allowed source and destination pairs. Strong authentication of network addresses is not possible without the use of explicit security protocols, and thus, addresses can often be spoofed. Further, identity-based incoming traffic restriction methods can be employed, including router access control lists and firewall rules.' WHERE [Requirement_Id] = 37950
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent systems from entering unsecure states in the event of an operational failure of a boundary protection device.
[Implementation Statement]
+
+OT Systems Only:
+The organization selects an appropriate failure mode (e.g., permit or block all communications).
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-2, CP-12, SC-24
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization selects an appropriate failure mode (e.g., permit or block all communications).
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding SC-7 (18) to MOD baseline: The ability to choose the failure mode for the physical part of the OT differentiates the OT from other IT systems. This choice may be a significant influence in mitigating the impact of a failure.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Boundary Protection | Fail Secure
Prevent systems from entering unsecure states in the event of an operational failure of a boundary protection device.
Discussion:Fail secure is a condition achieved by employing mechanisms to ensure that in the event of operational failures of boundary protection devices at managed interfaces, systems do not enter into unsecure states where intended security properties no longer hold. Managed interfaces include routers, firewalls, and application gateways that reside on protected subnetworks (commonly referred to as demilitarized zones). Failures of boundary protection devices cannot lead to or cause information external to the devices to enter the devices nor can failures permit unauthorized information releases.' WHERE [Requirement_Id] = 37951
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Provide the capability to dynamically isolate [Assignment: organization-defined system components] from other system components.
[Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.1.b. Block ingress and egress communications with known or suspected malicious Internet Protocol addresses; (p.8)
[D.1.b: Implementation Statement]
+
+D.1.c. Control impact of known or suspected malicious web domains or web applications, such as by preventing users and devices from accessing malicious websites; (p.8)
[D.1.c: Implementation Statement]
+
+D.1.e. Monitor and/or block connections from known or suspected malicious command and control servers (such as Tor exit nodes, and other anonymization services). (p.8)
[D.1.e: Implementation Statement]
+
+D.2. Procedures to—
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.4. Mitigation measures or manual controls to ensure industrial control systems can be isolated when a cybersecurity incident in the Information Technology system creates risk to the safety and reliability of the Operational Technology system. (p.8)
[D.4: Implementation Statement]
+', [Supplemental_Info]=N' Dynamic Isolation and Segregation
Provide the capability to dynamically isolate [Assignment: organization-defined system components] from other system components.
Discussion:The capability to dynamically isolate certain internal system components is useful when it is necessary to partition or separate system components of questionable origin from components that possess greater trustworthiness. Component isolation reduces the attack surface of organizational systems. Isolating selected system components can also limit the damage from successful attacks when such attacks occur.' WHERE [Requirement_Id] = 37952
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ additional boundary protection mechanisms to isolate system components supporting critical or essential missions and/or business functions (e.g., financial systems, health systems, payment card systems, industrial control systems, etc.).
[Implementation Statement]
+
+Related Controls: CA-9
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.a. Implement network segmentation policies and controls to ensure that the Operational Technology system can continue to safely operate in the event that an Information Technology system has been compromised; (p.2)
[1.a: Implementation Statement]
+
+III. Cybersecurity Measures
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+
+D.1.b. Block ingress and egress communications with known or suspected malicious Internet Protocol addresses; (p.8)
[D.1.b: Implementation Statement]
+
+D.1.c. Control impact of known or suspected malicious web domains or web applications, such as by preventing users and devices from accessing malicious websites; (p.8)
[D.1.c: Implementation Statement]
+
+D.1.e. Monitor and/or block connections from known or suspected malicious command and control servers (such as Tor exit nodes, and other anonymization services). (p.8)
[D.1.e: Implementation Statement]
+
+D.2. Procedures to—
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.4. Mitigation measures or manual controls to ensure industrial control systems can be isolated when a cybersecurity incident in the Information Technology system creates risk to the safety and reliability of the Operational Technology system. (p.8)
[D.4: Implementation Statement]
+', [Supplemental_Info]=N' Isolation of System Components
Employ boundary protection mechanisms to isolate [Assignment: organization-defined system components] supporting [Assignment: organization-defined missions and/or business functions].
Discussion:Organizations can isolate system components that perform different mission or business functions. Such isolation limits unauthorized information flows among system components and provides the opportunity to deploy greater levels of protection for selected system components. Isolating system components with boundary protection mechanisms provides the capability for increased protection of individual system components and to more effectively control information flows between those components. Isolating system components provides enhanced protection that limits the potential harm from hostile cyber-attacks and errors. The degree of isolation varies depending upon the mechanisms chosen. Boundary protection mechanisms include routers, gateways, and firewalls that separate system components into physically separate networks or subnetworks; cross-domain devices that separate subnetworks; virtualization techniques; and the encryption of information flows among system components using distinct encryption keys.' WHERE [Requirement_Id] = 37953
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'For systems that process PII:
[Implementation Statement]
+
+(1) Apply the following processing rules to data elements of personally identifiable information:
[1: Implementation Statement]
+ (a) Implement Data Loss Prevention technologies and processes designed to enforce the proper handling of PII, as defined in P/I 9.3 Public Access to Records Policy and Control 3.8 Data Sensitivity.
[1.a: Implementation Statement]
+(2) Monitor for permitted processing at the external interfaces to the system and at key internal boundaries within the system;
[2: Implementation Statement]
+(3) Document each processing exception and require AO approval; and
[3: Implementation Statement]
+(4) Review and remove exceptions that are no longer supported.
[4: Implementation Statement]
+
+Related Controls: PT-2
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.1.b. Block ingress and egress communications with known or suspected malicious Internet Protocol addresses; (p.8)
[D.1.b: Implementation Statement]
+
+D.1.c. Control impact of known or suspected malicious web domains or web applications, such as by preventing users and devices from accessing malicious websites; (p.8)
[D.1.c: Implementation Statement]
+
+D.1.e. Monitor and/or block connections from known or suspected malicious command and control servers (such as Tor exit nodes, and other anonymization services). (p.8)
[D.1.e: Implementation Statement]
+', [Supplemental_Info]=N' Personally Identifiable Information
For systems that process personally identifiable information:
(a) Apply the following processing rules to data elements of personally identifiable information: [Assignment: organization-defined processing rules];
(b) Monitor for permitted processing at the external interfaces to the system and at key internal boundaries within the system;
(c) Document each processing exception; and
(d) Review and remove exceptions that are no longer supported.
Discussion:Managing the processing of personally identifiable information is an important aspect of protecting an individual’s privacy. Applying, monitoring for, and documenting exceptions to processing rules ensure that personally identifiable information is processed only in accordance with established privacy requirements.' WHERE [Requirement_Id] = 37954
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prohibit the direct connection of [Assignment: organization-defined system] to a public network.
[Implementation Statement]
+
+OT Systems Only:
+Organizations consider the need for a direct connection to a public network for each OT system, including potential benefits, additional threat vectors, and potential adverse impact specifically relevant to what type of public access that connection introduces.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Organizations consider the need for a direct connection to a public network for each OT system, including potential benefits, additional threat vectors, and potential adverse impacts that are specifically relevant to the type of public access that connection introduces.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding SC-7 (28) to LOW, MOD, and HIGH baselines: Access to OT should be restricted to the individuals required for operation. A connection made from the OT directly to a public network has limited applicability in OT environments but significant potential risk.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Boundary Protection | Connections to Public Networks
Prohibit the direct connection of [Assignment: organization-defined system] to a public network.
Discussion:A direct connection is a dedicated physical or virtual connection between two or more systems. A public network is a network accessible to the public, including the Internet and organizational extranets with public access.' WHERE [Requirement_Id] = 37955
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement
[Selection: physically; logically] separate subnetworks to isolate the following critical system components and functions: [Assignment: organization-defined critical system components and functions].
[Implementation Statement]
+
+OT Systems Only:
+Subnets can be used to isolate low-risk functions from higher-risk ones, and control from safety. Subnets should be considered along with other boundary protection technologies.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Subnets can be used to isolate low-risk functions from higher-risk ones and control from safety. Subnets should be considered along with other boundary protection technologies.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding SC-7 (29) to LOW, MOD, and HIGH baselines: In OT environments, subnets and zoning are common practices for isolating functions.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Boundary Protection | Separate Subnets to Isolate Functions
Implement [Selection: physically; logically] separate subnetworks to isolate the following critical system components and functions: [Assignment: organization-defined critical system components and functions].
Discussion:Separating critical system components and functions from other noncritical system components and functions through separate subnetworks may be necessary to reduce susceptibility to a catastrophic or debilitating breach or compromise that results in system failure. For example, physically separating the command and control function from the in-flight entertainment function through separate subnetworks in a commercial aircraft provides an increased level of assurance in the trustworthiness of critical system functions.' WHERE [Requirement_Id] = 37956
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Limit the number of external network connections to the system. External network connections must be documented via a System Architecture/Topology/Data Flow and PPS/M. An ISA may be required at the discretion of the AO.
[Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.a. Implement network segmentation policies and controls to ensure that the Operational Technology system can continue to safely operate in the event that an Information Technology system has been compromised; (p.2)
[1.a: Implementation Statement]
+
+III. Cybersecurity Measures
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+
+D.1.b. Block ingress and egress communications with known or suspected malicious Internet Protocol addresses; (p.8)
[D.1.b: Implementation Statement]
+
+D.1.c. Control impact of known or suspected malicious web domains or web applications, such as by preventing users and devices from accessing malicious websites; (p.8)
[D.1.c: Implementation Statement]
+
+D.1.e. Monitor and/or block connections from known or suspected malicious command and control servers (such as Tor exit nodes, and other anonymization services). (p.8)
[D.1.e: Implementation Statement]
+
+D.2. Procedures to—
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.4. Mitigation measures or manual controls to ensure industrial control systems can be isolated when a cybersecurity incident in the Information Technology system creates risk to the safety and reliability of the Operational Technology system. (p.8)
[D.4: Implementation Statement]
+', [Supplemental_Info]=N' Access Points
Limit the number of external network connections to the system.
Discussion:Limiting the number of external network connections facilitates monitoring of inbound and outbound communications traffic. The Trusted Internet Connection [DHS TIC] initiative is an example of a federal guideline that requires limits on the number of external network connections. Limiting the number of external network connections to the system is important during transition periods from older to newer technologies (e.g., transitioning from IPv4 to IPv6 network protocols). Such transitions may require implementing the older and newer technologies simultaneously during the transition period and thus increase the number of access points to the system.' WHERE [Requirement_Id] = 37957
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Implement a managed interface for each external telecommunication service;
[1: Implementation Statement]
+(2) Establish a traffic flow policy for each managed interface;
[2: Implementation Statement]
+(3) Protect the confidentiality and integrity of the information being transmitted across each interface;
[3: Implementation Statement]
+(4) Document each exception to the traffic flow policy with a supporting mission or business need and the duration of that need;
[4: Implementation Statement]
+(5) Review exceptions to the traffic flow policy at least semi-annually and remove exceptions that are no longer supported by an explicit mission or business need;
[5: Implementation Statement]
+(6) Prevent unauthorized exchange of control plane traffic (e.g., Border Gateway Protocol (BGP) routing, Domain Name System (DNS), and management protocols) with external networks;
[6: Implementation Statement]
+(7) Publish information to enable remote networks to detect unauthorized control plane traffic from internal networks; and (8) Filter unauthorized control plane traffic from external networks.
[7: Implementation Statement]
+(8) Filter unauthorized control plane traffic from external networks.
[8: Implementation Statement]
+
+Related Controls: AC-3, SC-8, SC-20, SC-21, SC-22
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.a. Implement network segmentation policies and controls to ensure that the Operational Technology system can continue to safely operate in the event that an Information Technology system has been compromised; (p.2)
[1.a: Implementation Statement]
+
+III. Cybersecurity Measures
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+
+D.2. Procedures to—
+
+D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.4. Mitigation measures or manual controls to ensure industrial control systems can be isolated when a cybersecurity incident in the Information Technology system creates risk to the safety and reliability of the Operational Technology system. (p.8)
[D.4: Implementation Statement]
+
+
+', [Supplemental_Info]=N' External Telecommunications Services
(a) Implement a managed interface for each external telecommunication service;
(b) Establish a traffic flow policy for each managed interface;
(c) Protect the confidentiality and integrity of the information being transmitted across each interface;
(d) Document each exception to the traffic flow policy with a supporting mission or business need and duration of that need;
(e) Review exceptions to the traffic flow policy [Assignment: organization-defined frequency] and remove exceptions that are no longer supported by an explicit mission or business need;
(f) Prevent unauthorized exchange of control plane traffic with external networks;
(g) Publish information to enable remote networks to detect unauthorized control plane traffic from internal networks; and
(h) Filter unauthorized control plane traffic from external networks.
Discussion:External telecommunications services can provide data and/or voice communications services. Examples of control plane traffic include Border Gateway Protocol (BGP) routing, Domain Name System (DNS), and management protocols. See [SP 800-189] for additional information on the use of the resource public key infrastructure (RPKI) to protect BGP routes and detect unauthorized BGP announcements.' WHERE [Requirement_Id] = 37958
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Deny network communications traffic by default. Any explicit rules to allow network communications traffic by default or exception shall be authorized by the AO.
[Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.a. Implement network segmentation policies and controls to ensure that the Operational Technology system can continue to safely operate in the event that an Information Technology system has been compromised; (p.2)
[1.a: Implementation Statement]
+
+III. Cybersecurity Measures
+
+C.5. Regularly updated schedule for review of existing domain trust relationships to ensure their necessity and establish policies to manage these relationships. (p.7)
[C.5: Implementation Statement]
+
+D.1.b. Block ingress and egress communications with known or suspected malicious Internet Protocol addresses; (p.8)
[D.1.b: Implementation Statement]
+
+D.1.c. Control impact of known or suspected malicious web domains or web applications, such as by preventing users and devices from accessing malicious websites; (p.8)
[D.1.c: Implementation Statement]
+
+D.1.e. Monitor and/or block connections from known or suspected malicious command and control servers (such as Tor exit nodes, and other anonymization services). (p.8)
[D.1.e: MATA System Implementation Statement]
+
+D.2. Procedures to—
[D.2: Implementation Statement]
D.2.a. Audit unauthorized access to internet domains and addresses; (p.8)
[D.2.a: Implementation Statement]
+
+D.2.b. Document and audit any communications between the Operational Technology system and an external system that deviates from the Owner/Operator’s identified baseline of communications; (p.8)
[D.2.b: Implementation Statement]
+
+D.4. Mitigation measures or manual controls to ensure industrial control systems can be isolated when a cybersecurity incident in the Information Technology system creates risk to the safety and reliability of the Operational Technology system. (p.8)
[D.4: Implementation Statement]
+', [Supplemental_Info]=N' Deny by Default — Allow by Exception
Deny network communications traffic by default and allow network communications traffic by exception [Selection (one or more): at managed interfaces; for [Assignment: organization-defined systems]].
Discussion:Denying by default and allowing by exception applies to inbound and outbound network communications traffic. A deny-all, permit-by-exception network communications traffic policy ensures that only those system connections that are essential and approved are allowed. Deny by default, allow by exception also applies to a system that is connected to an external system.' WHERE [Requirement_Id] = 37959
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Prevent split tunneling for remote devices connecting to organizational systems unless the split tunnel is authorized by the AO.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Split Tunneling for Remote Devices
Prevent split tunneling for remote devices connecting to organizational systems unless the split tunnel is securely provisioned using [Assignment: organization-defined safeguards].
Discussion:Split tunneling is the process of allowing a remote user or device to establish a non-remote connection with a system and simultaneously communicate via some other connection to a resource in an external network. This method of network access enables a user to access remote devices and simultaneously, access uncontrolled networks. Split tunneling might be desirable by remote users to communicate with local system resources, such as printers or file servers. However, split tunneling can facilitate unauthorized external connections, making the system vulnerable to attack and to exfiltration of organizational information. Split tunneling can be prevented by disabling configuration settings that allow such capability in remote devices and by preventing those configuration settings from being configurable by users. Prevention can also be achieved by the detection of split tunneling (or of configuration settings that allow split tunneling) in the remote device, and by prohibiting the connection if the remote device is using split tunneling. A virtual private network (VPN) can be used to securely provision a split tunnel. A securely provisioned VPN includes locking connectivity to exclusive, managed, and named environments, or to a specific set of pre-approved addresses, without user control.' WHERE [Requirement_Id] = 37960
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Route internal communications traffic to external networks through authenticated proxy servers at managed interfaces.
[Implementation Statement]
+
+(1) Inappropriate Web Content and Filtering
[1: Implementation Statement]
+ (a) The use of Metro information technology systems to access inappropriate web content is strictly prohibited and will be blocked. Any user attempting to access such content will be subject to disciplinary action, up to and including termination of employment.
[1.a: Implementation Statement]
+ (b) Web content filtering shall be employed to prevent access to internet sites and web pages that are non-business related. Filtering shall disallow, segregate, or reject certain internet listings.
[b: Implementation Statement]
+
+The following web content categories will be blocked:
+ (i) Sexually explicit and obscene material (including any and all forms of pornography, adult humor, profanity, dating services/personals);
[b.i: Implementation Statement]
+ (ii) Websites selling drugs, firearms, and other weapons;
[b.ii: Implementation Statement]
+ (iii) Websites advocating or involving terrorism, hacking, gambling, fraud or any other criminal conduct or enterprises;
[b.iii: Implementation Statement]
+ (iv) Harassing material, including racial, religious, national origin, sexual or sexual orientation harassment; and/or
[b.iv: Implementation Statement]
+ (v) Information that violates federal laws on discrimination.
[b.v: Implementation Statement]
+ (c) Miscategorized websites and requests appropriate and necessary business access to restricted websites shall be referred to the DM Helpdesk.
[c: Implementation Statement]
+ (d) Website categorization decisions and exceptions to access restricted websites shall be managed by DMCS.
[d: Implementation Statement]
+
+Related Controls: AC-3
+
+
+', [Supplemental_Info]=N' Route Traffic to Authenticated Proxy Servers
Route [Assignment: organization-defined internal communications traffic] to [Assignment: organization-defined external networks] through authenticated proxy servers at managed interfaces.
Discussion:External networks are networks outside of organizational control. A proxy server is a server (i.e., system or application) that acts as an intermediary for clients requesting system resources from non-organizational or other organizational servers. System resources that may be requested include files, connections, web pages, or services. Client requests established through a connection to a proxy server are assessed to manage complexity and provide additional protection by limiting direct connectivity. Web content filtering devices are one of the most common proxy servers that provide access to the Internet. Proxy servers can support the logging of Transmission Control Protocol sessions and the blocking of specific Uniform Resource Locators, Internet Protocol addresses, and domain names. Web proxies can be configured with organization-defined lists of authorized and unauthorized websites. Note that proxy servers may inhibit the use of virtual private networks (VPNs) and create the potential for “man-in-the-middle” attacks (depending on the implementation).' WHERE [Requirement_Id] = 37961
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Protect the confidentiality and integrity of transmitted information.
[a: Implementation Statement]
+
+Related Controls: AC-17, AC-18, AU-10, IA-3, IA-8, MA-4, PE-4, SA-4, SA-8, SC-7, SC-20, SC-23, SC-28
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+B.2.b. To prohibit Operational Technology system services from traversing the Information Technology system, and vice-versa, unless the content is encrypted or, if not technologically feasible, otherwise secured and protected to ensure integrity and prevent corruption or compromise while the content is in transit. (p.6)
[B.2.b: Implementation Statement]
+', [Supplemental_Info]=N'Transmission Confidentiality and Integrity
Protect the [Selection (one or more): confidentiality; integrity] of transmitted information.
Discussion:Protecting the confidentiality and integrity of transmitted information applies to internal and external networks as well as any system components that can transmit information, including servers, notebook computers, desktop computers, mobile devices, printers, copiers, scanners, facsimile machines, and radios. Unprotected communication paths are exposed to the possibility of interception and modification. Protecting the confidentiality and integrity of information can be accomplished by physical or logical means. Physical protection can be achieved by using protected distribution systems. A protected distribution system is a wireline or fiber-optics telecommunications system that includes terminals and adequate electromagnetic, acoustical, electrical, and physical controls to permit its use for the unencrypted transmission of classified information. Logical protection can be achieved by employing encryption techniques.
Organizations that rely on commercial providers who offer transmission services as commodity services rather than as fully dedicated services may find it difficult to obtain the necessary assurances regarding the implementation of needed controls for transmission confidentiality and integrity. In such situations, organizations determine what types of confidentiality or integrity services are available in standard, commercial telecommunications service packages. If it is not feasible to obtain the necessary controls and assurances of control effectiveness through appropriate contracting vehicles, organizations can implement appropriate compensating controls.
' WHERE [Requirement_Id] = 37962
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement cryptographic mechanisms to prevent unauthorized disclosure of information and detect changes to information during transmission.
[Implementation Statement]
+
+OT Systems Only:
+When transmitting across untrusted network segments, the organization explores all possible cryptographic integrity mechanisms (e.g., digital signature, hash function) to protect confidentiality and integrity of the information. Example compensating controls include physical protections, such as a secure conduit (e.g., point-to-point link) between two system components.
[OT Systems Only: Implementation Statement]
+
+Related Controls: SC-12, SC-13
+
+NIST 800-82 Rev 3:
+OT Discussion: When transmitting across untrusted network segments, the organization explores all possible cryptographic integrity mechanisms (e.g., digital signature, hash function) to protect the confidentiality and integrity of the information. Example compensating controls include physical protections, such as a secure conduit (e.g., point-to-point link) between two system components.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+B.2.b. To prohibit Operational Technology system services from traversing the Information Technology system, and vice-versa, unless the content is encrypted or, if not technologically feasible, otherwise secured and protected to ensure integrity and prevent corruption or compromise while the content is in transit. (p.6)
[D.2.b: Implementation Statement]
+', [Supplemental_Info]=N'Transmission Confidentiality and Integrity | Cryptographic Protection
Implement cryptographic mechanisms to [Selection (one or more): prevent unauthorized disclosure of information; detect changes to information] during transmission.
Discussion:Encryption protects information from unauthorized disclosure and modification during transmission. Cryptographic mechanisms that protect the confidentiality and integrity of information during transmission include TLS and IPSec. Cryptographic mechanisms used to protect information integrity include cryptographic hash functions that have applications in digital signatures, checksums, and message authentication codes.' WHERE [Requirement_Id] = 37963
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+Related Controls: PM-9, PS-8, SA-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: The policy specifically addresses the unique properties and requirements of OT and the relationship to non-OT systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System and Information Integrity Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] system and information integrity policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the system and information integrity policy and the associated system and information integrity
controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the system and information integrity policy and procedures; and
c. Review and update the current system and information integrity:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:System and information integrity policy and procedures address the controls in the SI family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of system and information integrity policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to system and information integrity policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 37964
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Character set, length, numerical range, and acceptable values;
[a: Implementation Statement]
+b. Username and password combinations;
[b: Implementation Statement]
+c. Attributes used to validate a password reset request (e.g., security questions);
[c: Implementation Statement]
+d. PII (excluding unique username identifiers provided as a normal part of a transactional record) or other Sensitive Information in accordance with Control 3.8 Data Sensitivity;
[d: Implementation Statement]
+e. Content related to internal security functions: private encryption keys, whitelist or blacklist rules, object permission attributes and settings;
[e: Implementation Statement]
+f. Content received from system interfaces that is passed to interpreters that can unintentionally be interpreted as commands and to prevent cross-site scripting and injection attacks;
[f: Implementation Statement]
+g. User-supplied data is validated, filtered, and sanitized;
[g: Implementation Statement]
+h. Context-aware escaping is used for dynamic queries and non-parameterized calls when used directly in the interpreter;
[h: Implementation Statement]
+i. Hostile data is not used within object-relational mapping search parameters to extract additional, sensitive records; and
[i: Implementation Statement]
+j. Hostile data is not directly used or concatenated, such that the SQL or command contains both structure and hostile data in dynamic queries, commands, or stored procedures.
[j: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Information Input Validation
Check the validity of the following information inputs: [Assignment: organization-defined information inputs to the system].
Discussion:Checking the valid syntax and semantics of system inputs—including character set, length, numerical range, and acceptable values—verifies that inputs match specified definitions for format and content. For example, if the organization specifies that numerical values between 1-100 are the only acceptable inputs for a field in a given application, inputs of “387,” “abc,” or “%K%” are invalid inputs and are not accepted as input to the system. Valid inputs are likely to vary from field to field within a software application. Applications typically follow well-defined protocols that use structured messages (i.e., commands or queries) to communicate between software modules or system components. Structured messages can contain raw or unstructured data interspersed with metadata or control information. If software applications use attacker-supplied inputs to construct structured messages without properly encoding such messages, then the attacker could insert malicious commands or special characters that can cause the data to be interpreted as control information or metadata. Consequently, the module or component that receives the corrupted output will perform the wrong operations or otherwise interpret the data incorrectly. Prescreening inputs prior to passing them to interpreters prevents the content from being unintentionally interpreted as commands. Input validation ensures accurate and correct inputs and prevents attacks such as cross-site scripting and a variety of injection attacks.' WHERE [Requirement_Id] = 37965
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Generate error messages that provide information necessary for corrective actions without revealing information that could be exploited; and
[a: Implementation Statement]
+b. Reveal error messages only to users and administrators in accordance with assigned roles and responsibilities.
[b: Implementation Statement]
+
+Related Controls: AU-2, AU-3, SI-2
+
+
+', [Supplemental_Info]=N'Error Handling
a. Generate error messages that provide information necessary for corrective actions without revealing information that could be exploited; and
b. Reveal error messages only to [Assignment: organization-defined personnel or roles].
Discussion:Organizations consider the structure and content of error messages. The extent to which systems can handle error conditions is guided and informed by organizational policy and operational requirements. Exploitable information includes stack traces and implementation details; erroneous logon attempts with passwords mistakenly entered as the username; mission or business information that can be derived from, if not stated explicitly by, the information recorded; and personally identifiable information, such as account numbers, social security numbers, and credit card numbers. Error messages may also provide a covert channel for transmitting information.' WHERE [Requirement_Id] = 37966
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Manage and retain information within the system and information output from the system in accordance with applicable laws, directives, regulations, policies, standards, guidelines and operational requirements.
[a: Implementation Statement]
+
+Related Controls: All XX-1 Controls, AU-5, AU-11, CA-2, CA-3, CA-5, CA-6, CA-7, CA-9, CM-5, CM-9, CP-2, IR-8, MP-2, MP-3, MP-4, MP-6, PL-2, PL-4, PM-4, PM-8, PM-9, PS-2, PS-6, PT-2, PT-3, RA-2, RA-3, SA-5, SA-8, SR-2
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Information Management and Retention
Manage and retain information within the system and information output from the system in accordance with applicable laws, executive orders, directives, regulations, policies, standards, guidelines and operational requirements.
Discussion:Information management and retention requirements cover the full life cycle of information, in some cases extending beyond system disposal. Information to be retained may also include policies, procedures, plans, reports, data output from control implementation, and other types of administrative information. The National Archives and Records Administration (NARA) provides federal policy and guidance on records retention and schedules. If organizations have a records management office, consider coordinating with records management personnel. Records produced from the output of implemented controls that may require management and retention include, but are not limited to: All XX-1, AC-6(9), AT-4, AU-12, CA-2, CA-3, CA-5, CA-6, CA-7, CA-8, CA-9, CM-2, CM-3, CM-4, CM-6, CM-8, CM-9, CM-12, CM-13, CP-2, IR-6, IR-8, MA-2, MA-4, PE-2, PE-8, PE-16, PE-17, PL-2, PL-4, PL-7, PL-8, PM-5, PM-8, PM-9, PM-18, PM-21, PM-27, PM-28, PM-30, PM-31, PS-2, PS-6, PS-7, PT-2, PT-3, PT-7, RA-2, RA-3, RA-5, RA-8, SA-4, SA-5, SA-8, SA-10, SI-4, SR-2, SR-4, SR-8.' WHERE [Requirement_Id] = 37967
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Limit Personally Identifiable Information (PII) being processed in the information life cycle (i.e. information creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposition) to the minimum necessary to enable the purpose of the system.
[Implementation Statement]
+
+Related Controls: PM-25
+
+
+', [Supplemental_Info]=N' Limit Personally Identifiable Information Elements
Limit personally identifiable information being processed in the information life cycle to the following elements of personally identifiable information: [Assignment: organization-defined elements of personally identifiable information].
Discussion:Limiting the use of personally identifiable information throughout the information life cycle when the information is not needed for operational purposes helps to reduce the level of privacy risk created by a system. The information life cycle includes information creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposition. Risk assessments as well as applicable laws, regulations, and policies can provide useful inputs to determining which elements of personally identifiable information may create risk.' WHERE [Requirement_Id] = 37968
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Use the following techniques to minimize the use of Sensitive Information for research, testing, or training:
[Implementation Statement]
+
+(1) De-identification or subsetting of live production data (“live data”); or
[1: Implementation Statement]
+(2) Use of synthetic data.
[2: Implementation Statement]
+
+Related Controls: PM-22, PM-25, SI-19
+
+
+', [Supplemental_Info]=N' Minimize Personally Identifiable Information in Testing, Training, and Research
Use the following techniques to minimize the use of personally identifiable information for research, testing, or training: [Assignment: organization-defined techniques].
Discussion:Organizations can minimize the risk to an individual’s privacy by employing techniques such as de-identification or synthetic data. Limiting the use of personally identifiable information throughout the information life cycle when the information is not needed for research, testing, or training helps reduce the level of privacy risk created by a system. Risk assessments as well as applicable laws, regulations, and policies can provide useful inputs to determining the techniques to use and when to use them.' WHERE [Requirement_Id] = 37969
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Use techniques to dispose of, destroy, or erase information following the retention period applicable to each type of data.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Information Disposal
Use the following techniques to dispose of, destroy, or erase information following the retention period: [Assignment: organization-defined techniques].
Discussion:Organizations can minimize both security and privacy risks by disposing of information when it is no longer needed. The disposal or destruction of information applies to originals as well as copies and archived records, including system logs that may contain personally identifiable information.' WHERE [Requirement_Id] = 37970
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Determine mean time to failure (MTTF) for the following system components in specific environments of operation: [Assignment: organization-defined system components]; and
[a: Implementation Statement]
+b. Provide substitute system components and a means to exchange active and standby components in accordance with the following criteria: [Assignment: organization-defined MTTF substitution criteria].
[b: Implementation Statement]
+
+Related Controls: CP-2, CP-10, MA-2, MA-6, SA-8
+
+NIST 800-82 Rev 3:
+Rationale for adding SI-13 control to HIGH baseline: OT are designed and built with certain boundary conditions, design parameters, and assumptions about their environment and mode of operation. OT may run much longer than conventional systems, allowing latent flaws that are not manifest in other environments to become effective. For example, integer overflow might never occur in systems that are re-initialized more frequently than the occurrence of the overflow. Experience and forensic studies of anomalies and incidents in OT can lead to the identification of emergent properties that were previously unknown, unexpected, or unanticipated. Preventative and restorative actions (e.g., restarting the system or application) are prudent but may not be acceptable in OT for operational reasons.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Predictable Failure Protection
a. Determine mean time to failure (MTTF) for the following system components in specific environments of operation: [Assignment: organization-defined system components]; and
b. Provide substitute system components and a means to exchange active and standby components in accordance with the following criteria: [Assignment: organization-defined MTTF substitution criteria].
Discussion:While MTTF is primarily a reliability issue, predictable failure prevention is intended to address potential failures of system components that provide security capabilities. Failure rates reflect installation-specific consideration rather than the industry-average. Organizations define the criteria for the substitution of system components based on the MTTF value with consideration for the potential harm from component failures. The transfer of responsibilities between active and standby components does not compromise safety, operational readiness, or security capabilities. The preservation of system state variables is also critical to help ensure a successful transfer process. Standby components remain available at all times except for maintenance issues or recovery failures in progress.' WHERE [Requirement_Id] = 37971
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement controls to protect the system memory from unauthorized code execution through data execution prevention controls that are either hardware-enforced or software-enforced such as data execution prevention, address space layout randomization, and implementation of secure configuration settings.
[Implementation Statement]
+
+Related Controls: AC-25, SC-3, SI-7
+
+
+', [Supplemental_Info]=N'Memory Protection
Implement the following controls to protect the system memory from unauthorized code execution: [Assignment: organization-defined controls].
Discussion:Some adversaries launch attacks with the intent of executing code in non-executable regions of memory or in memory locations that are prohibited. Controls employed to protect memory include data execution prevention and address space layout randomization. Data execution prevention controls can either be hardware-enforced or software-enforced with hardware enforcement providing the greater strength of mechanism.' WHERE [Requirement_Id] = 37972
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement the indicated fail-safe procedures when the indicated failures occur: [Assignment: organization-defined list of failure conditions and associated fail-safe procedures].
[Implementation Statement]
+
+OT Systems Only:
+The selected failure conditions and corresponding procedures may vary among baselines. The same failure event may trigger different responses, depending on the impact level mechanical and analog systems can be sued to provide mechanisms to ensure fail-safe procedures. Fail-safe states should incorporate potential impacts to human safety, physical systems, and the environment. Related controls: CP-6.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CP-6, CP-12, SC-24, SI-13
+
+NIST 800-82 Rev 3:
+OT Discussion: The selected failure conditions and corresponding procedures may vary among baselines. The same failure event may trigger different responses, depending on the impact level. Mechanical and analog systems can be used to provide mechanisms to ensure fail-safe procedures. Fail-safe states should incorporate potential impacts to human safety, physical systems, and the environment. A related controls is CP-6.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding SI-17 to LOW, MOD, and HIGH baselines: This control provides a structure for the organization to identify its policy and procedures for dealing with failures and other incidents. Creating a written record of the decision process for selecting incidents and appropriate responses in light of a changing environment of operations is part of risk management.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Fail-Safe Procedures
Implement the indicated fail-safe procedures when the indicated failures occur: [Assignment: organization-defined list of failure conditions and associated fail-safe procedures].
Discussion:Failure conditions include the loss of communications among critical system components or between system components and operational facilities. Fail-safe procedures include alerting operator personnel and providing specific instructions on subsequent steps to take. Subsequent steps may include doing nothing, reestablishing system settings, shutting down processes, restarting the system, or contacting designated organizational personnel.' WHERE [Requirement_Id] = 37973
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Check the accuracy, relevance, timeliness, and completeness of PII across the information life cycle annually; and
[a: Implementation Statement]
+b. Correct or delete inaccurate or outdated personally identifiable information.
[b: Implementation Statement]
+c. Individual requests for access or amendment to PII will be processed according to the procedures set forth in P/I 9.2 Privacy Policy sections 7.2-7.5.
[c: Implementation Statement]
+
+Related Controls: PM-22, PM-24, PT-2, SI-4
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Personally Identifiable Information Quality Operations
a. Check the accuracy, relevance, timeliness, and completeness of personally identifiable information across the information life cycle [Assignment: organization-defined frequency]; and
b. Correct or delete inaccurate or outdated personally identifiable information.
Discussion:Personally identifiable information quality operations include the steps that organizations take to confirm the accuracy and relevance of personally identifiable information throughout the information life cycle. The information life cycle includes the creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposal of personally identifiable information. Personally identifiable information quality operations include editing and validating addresses as they are collected or entered into systems using automated address verification look-up application programming interfaces. Checking personally identifiable information quality includes the tracking of updates or changes to data over time, which enables organizations to know how and what personally identifiable information was changed should erroneous information be identified. The measures taken to protect personally identifiable information quality are based on the nature and context of the personally identifiable information, how it is to be used, how it was obtained, and the potential de-identification methods employed. The measures taken to validate the accuracy of personally identifiable information used to make determinations about the rights, benefits, or privileges of individuals covered under federal programs may be more comprehensive than the measures used to validate personally identifiable information used for less sensitive purposes.' WHERE [Requirement_Id] = 37974
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'1) Correct or delete PII upon request by individuals or their designated representatives. Discretion shall be used when determining if PII is to be corrected or deleted based on the scope of request, the change(s) sought, the impact of the change(s), and applicable law, regulation, and policy.
[1: Implementation Statement]
+2) Consult with the Privacy Officer and Legal Counsel regarding appropriate measures to be taken for requests to correct or delete PII based on balancing the rights of the individual with the needs of the organization.
[2: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Individual Requests
Correct or delete personally identifiable information upon request by individuals or their designated representatives.
Discussion:Inaccurate personally identifiable information maintained by organizations may cause problems for individuals, especially in those business functions where inaccurate information may result in inappropriate decisions or the denial of benefits and services to individuals. Even correct information, in certain circumstances, can cause problems for individuals that outweigh the benefits of an organization maintaining the information. Organizations use discretion when determining if personally identifiable information is to be corrected or deleted based on the scope of requests, the changes sought, the impact of the changes, and laws, regulations, and policies. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding appropriate instances of correction or deletion.' WHERE [Requirement_Id] = 37975
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Remove sensitive information about individuals that can be used to distinguish or trace an individual’s identity (e.g., name, social security number, date and place of birth, mother’s maiden name, or biometric records, financial records, educational records, etc.) from datasets unless otherwise authorized by the Privacy Administrator under P/I 9.2 Privacy Policy and AO. See also Control 3.18 System and Information Integrity, Section 11, (a), (ii), “S1-12 (2) Minimize Sensitive Information in Testing, Training, and Research”;
[a: Implementation Statement]
+b. Personally identifiable information is removed from datasets by trained individuals when such information is not (or no longer) necessary to satisfy the requirements envisioned for the data (e.g., if the dataset is only used to produce aggregate statistics, the identifiers that are not needed for producing those statistics are removed); and
[b: Implementation Statement]
+c. Evaluate annually for the effectiveness of de-identification.
[c: Implementation Statement]
+
+Related Controls: MP-6, PM-22, PM-23, PM-24, RA-2, SI-12
+
+
+', [Supplemental_Info]=N'De-Identification
a. Remove the following elements of personally identifiable information from datasets: [Assignment: organization-defined elements of personally identifiable information]; and
b. Evaluate [Assignment: organization-defined frequency] for effectiveness of de-identification.
Discussion:De-identification is the general term for the process of removing the association between a set of identifying data and the data subject. Many datasets contain information about individuals that can be used to distinguish or trace an individual’s identity, such as name, social security number, date and place of birth, mother’s maiden name, or biometric records. Datasets may also contain other information that is linked or linkable to an individual, such as medical, educational, financial, and employment information. Personally identifiable information is removed from datasets by trained individuals when such information is not (or no longer) necessary to satisfy the requirements envisioned for the data. For example, if the dataset is only used to produce aggregate statistics, the identifiers that are not needed for producing those statistics are removed. Removing identifiers improves privacy protection since information that is removed cannot be inadvertently disclosed or improperly used. Organizations may be subject to specific de-identification definitions or methods under applicable laws, regulations, or policies. Re-identification is a residual risk with de-identified data. Re-identification attacks can vary, including combining new datasets or other improvements in data analytics. Maintaining awareness of potential attacks and evaluating for the effectiveness of the de-identification over time support the management of this residual risk.' WHERE [Requirement_Id] = 37976
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Identify, report, and correct system flaws;
[a: Implementation Statement]
+b. Test software and firmware updates related to flaw remediation for effectiveness and potential side effects before installation;
[b: Implementation Statement]
+c. Install security-relevant software and firmware updates within a timeframe set per Control 3.16 Risk Assessment of the release of the updates; and
[c: Implementation Statement]
+d. Incorporate flaw remediation into the organizational configuration management process.
[d: Implementation Statement]
+
+OT Systems Only:
+Flaw remediation, or patching, is complicated since many OT employ OSs and other software no longer maintained by the vendors. OT operators may also not have the resources or capability to test patches and are dependent on vendors to validate the operability of a patch. Sometimes the organization has no choice but to accept the additional risk if no vendor patch is available, patching requires additional time to complete validation/testing, or deployment requires an unacceptable operations shutdown. In these situations, compensating controls should be implemented (e.g., limiting the exposure of these vulnerable system, restricting vulnerable services, implementing virtual patching). Other compensating controls that do not decrease the residual risk but increase the ability to respond may be desirable (e.g., provide a timely response in case of an incident; devise a plan to ensure the OT can identify the exploitation of the flaw). Testing flaw remediation in an OT may exceed the organization’s available resources.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CA-5, CM-3, CM-4, CM-5, CM-6, CM-8, MA-2, RA-5, SA-8, SA-10, SA-11, SI-3, SI-5, SI-7, SI-11
+
+e. Security Controls Enhancement(s):
[e: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Flaw remediation, or patching, is complicated since many OT employ OSs and other software that are no longer maintained by the vendors. OT operators may also not have the resources or capability to test patches and are dependent on vendors to validate the operability of a patch. Sometimes, the organization has no choice but to accept additional risk if no vendor patch is available, if patching requires additional time to complete validation or testing, or if deployment requires an unacceptable operations shutdown. In these situations, compensating controls should be implemented (e.g., limiting the exposure of the vulnerable system, restricting vulnerable services, implementing virtual patching). Other compensating controls that do not decrease the residual risk but increase the ability to respond may be desirable (e.g., provide a timely response in case of an incident, devise a plan to ensure that the OT can identify exploitation of the flaw). Testing flaw remediation in an OT may exceed the organization’s available resources.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+I. Purpose and General Information
+
+1.d. Reduce the risk of exploitation of unpatched systems through the application of security patches and updates for operating systems, applications, drivers and firmware on Critical Cyber Systems in a timely manner using a risk-based methodology. (p.3)
[1.d: Implementation Statement]
+
+2. Develop a Cybersecurity Assessment Plan and submit (a) an annual update, for approval, that describes how the Owner/Operator will proactively and regularly assess the effectiveness of cybersecurity measures, and identify and resolve device, network, and/or system vulnerabilities, and (b) an annual report that provides Cybersecurity Assessment Plan results from the previous year. See Section III.F. (p.3)
[2: Implementation Statement]
+
+III. Cybersecurity Measures
+
+E. Reduce the risk of exploitation of unpatched systems through the application of security patches and updates for operating systems, applications, drivers, and firmware on Critical Cyber Systems consistent with the Owner/Operator’s risk based methodology. These measures must include: (pp.8-9)
[E: Implementation Statement]
+
+E.1. A patch management strategy that ensures all critical security patches and updates on Critical Cyber Systems are current. (p.9)
[E.1: Implementation Statement]
+
+E.2. The strategy required by Section III.E.1. must include: (p.9)
[E.2: Implementation Statement]
+
+E.2.a. The risk methodology for categorizing and determining criticality of patches and updates, and an implementation timeline based on categorization and criticality; and (p.9)
[E.2.a: Implementation Statement]
+
+E.2.b. Prioritization of all security patches and updates on the Cybersecurity and Infrastructure Security Agency''s Known Exploited Vulnerabilities Catalog. (p.9)
[E.2.b: Implementation Statement]
+
+E.3. If the Owner/Operator cannot apply patches and updates on specific Operational Technology systems without causing a severe degradation of operational capability to meet necessary capacity, the patch management strategy must include a description and timeline of additional mitigations that address the risk created by not installing the patch or update. (p.9)
[E.3: Implementation Statement]
+', [Supplemental_Info]=N'Flaw Remediation
a. Identify, report, and correct system flaws;
b. Test software and firmware updates related to flaw remediation for effectiveness and potential side effects before installation;
c. Install security-relevant software and firmware updates within [Assignment: organization-defined time period] of the release of the updates; and
d. Incorporate flaw remediation into the organizational configuration management process.
Discussion:The need to remediate system flaws applies to all types of software and firmware. Organizations identify systems affected by software flaws, including potential vulnerabilities resulting from those flaws, and report this information to designated organizational personnel with information security and privacy responsibilities. Security-relevant updates include patches, service packs, and malicious code signatures. Organizations also address flaws discovered during assessments, continuous monitoring, incident response activities, and system error handling. By incorporating flaw remediation into configuration management processes, required remediation actions can be tracked and verified.
Organization-defined time periods for updating security-relevant software and firmware may vary based on a variety of risk factors, including the security category of the system, the criticality of the update (i.e., severity of the vulnerability related to the discovered flaw), the organizational risk tolerance, the mission supported by the system, or the threat environment. Some types of flaw remediation may require more testing than other types. Organizations determine the type of testing needed for the specific type of flaw remediation activity under consideration and the types of changes that are to be configuration-managed. In some situations, organizations may determine that the testing of software or firmware updates is not necessary or practical, such as when implementing simple malicious code signature updates. In testing decisions, organizations consider whether security-relevant software or firmware updates are obtained from authorized sources with appropriate digital signatures.
' WHERE [Requirement_Id] = 37977
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Determine if system components have applicable security-relevant software and firmware updates installed using automated mechanisms in accordance with Control 3.16 Risk Assessment, Section 4, “RA-5 Vulnerability Monitoring and Scanning“.
[Implementation Statement]
+
+Related Controls: CA-7, RA-5, SI-4
+
+
+', [Supplemental_Info]=N' Automated Flaw Remediation Status
Determine if system components have applicable security-relevant software and firmware updates installed using [Assignment: organization-defined automated mechanisms] [Assignment: organization-defined frequency].
Discussion:Automated mechanisms can track and determine the status of known flaws for system components.' WHERE [Requirement_Id] = 37978
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Identify the following alternative sources of information for [Assignment: organization-defined essential functions and services]: [Assignment: organization-defined alternative information sources];
[a: Implementation Statement]
+b. Use an alternative information source for the execution of essential functions or services on [Assignment: organization-defined systems or system components] when the primary source of information is corrupted or unavailable.
[b: Implementation Statement]
+
+OT Systems Only:
+Many OT systems use information diversity in their design in order to achieve reliability requirements. Some examples of information diversity for an OT system include sensor voting and state estimation.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Many OT systems use information diversity in their design to achieve reliability requirements. Some examples of information diversity for an OT system include sensor voting and state estimation.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Information Diversity
a. Identify the following alternative sources of information for [Assignment: organization-defined essential functions and services]: [Assignment: organization-defined alternative information sources]; and
b. Use an alternative information source for the execution of essential functions or services on [Assignment: organization-defined systems or system components] when the primary source of information is corrupted or unavailable.
Discussion:Actions taken by a system service or a function are often driven by the information it receives. Corruption, fabrication, modification, or deletion of that information could impact the ability of the service function to properly carry out its intended actions. By having multiple sources of input, the service or function can continue operation if one source is corrupted or no longer available. It is possible that the alternative sources of information may be less precise or less accurate than the primary source of information. But having such sub-optimal information sources may still provide a sufficient level of quality that the essential service or function can be carried out, even in a degraded or debilitated manner.' WHERE [Requirement_Id] = 37979
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Implement non-signature based malicious code protection mechanisms at system entry and exit points to detect and eradicate malicious code;
[a: Implementation Statement]
+b. Automatically update malicious code protection mechanisms as new releases are available in accordance with organizational configuration management control family and procedures;
[b: Implementation Statement]
+c. Configure malicious code protection mechanisms to:
[c: Implementation Statement]
+ i) Perform real-time monitoring to detect attempts of malicious code execution at endpoints, servers, between security zones, and at network entry and exit points;
[c.i: Implementation Statement]
+ ii) Conduct scans of files and embedded code which are attached to, or included in email communication; and
[c.ii: Implementation Statement]
+ iii) Block or quarantine malicious code and send alert to required stakeholders in response to malicious code detection.
[c.iii: Implementation Statement]
+d. Address the receipt of false positives during malicious code detection and eradication and the resulting potential impact on the availability of the system.
[d: Implementation Statement]
+
+OT Systems Only:
+The use and deployment of malicious code protection is determined after careful consideration and after verification that it does not adversely impact the operation of the OT. Malicious code protection tools should be configured to minimize their potential impact on the OT (e.g., employ notification rather than quarantine). Example compensating controls include increase traffic monitoring and auditing.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-4, AC-19, CM-3, CM-8, IR-4, MA-3, MA-4, PL-9, RA-5, SC-7, SC-23, SC-28, SI-2, SI-4, SI-7, SI-8
+
+NIST 800-82 Rev 3:
+OT Discussion: Malicious code protection should only be deployed after careful consideration and verification that it does not adversely impact the operation of the OT. Malicious code protection tools should be configured to minimize their potential impact on the OT (e.g., employ notification rather than quarantine). Example compensating controls include increased traffic monitoring and auditing.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.1.d. Block and prevent unauthorized code, including macro scripts, from executing; and (p.8)
[D.1.d: Implementation Statement]
+', [Supplemental_Info]=N'Malicious Code Protection
a. Implement [Selection (one or more): signature based; non-signature based] malicious code protection mechanisms at system entry and exit points to detect and eradicate malicious code;
b. Automatically update malicious code protection mechanisms as new releases are available in accordance with organizational configuration management policy and procedures;
c. Configure malicious code protection mechanisms to:
1. Perform periodic scans of the system [Assignment: organization-defined frequency] and real-time scans of files from external sources at
[Selection (one or more): endpoint; network entry and exit points] as the files are downloaded, opened, or executed in accordance with
organizational policy; and
2. [Selection (one or more): block malicious code; quarantine malicious code; take [Assignment: organization-defined action]]; and send alert
to [Assignment: organization-defined personnel or roles] in response to malicious code detection; and
d. Address the receipt of false positives during malicious code detection and eradication and the resulting potential impact on the availability of the system.
Discussion:System entry and exit points include firewalls, remote access servers, workstations, electronic mail servers, web servers, proxy servers, notebook computers, and mobile devices. Malicious code includes viruses, worms, Trojan horses, and spyware. Malicious code can also be encoded in various formats contained within compressed or hidden files or hidden in files using techniques such as steganography. Malicious code can be inserted into systems in a variety of ways, including by electronic mail, the world-wide web, and portable storage devices. Malicious code insertions occur through the exploitation of system vulnerabilities. A variety of technologies and methods exist to limit or eliminate the effects of malicious code.
Malicious code protection mechanisms include both signature- and nonsignature-based technologies. Nonsignature-based detection mechanisms include artificial intelligence techniques that use heuristics to detect, analyze, and describe the characteristics or behavior of malicious code and to provide controls against such code for which signatures do not yet exist or for which existing signatures may not be effective. Malicious code for which active signatures do not yet exist or may be ineffective includes polymorphic malicious code (i.e., code that changes signatures when it replicates). Nonsignature-based mechanisms also include reputation-based technologies. In addition to the above technologies, pervasive configuration management, comprehensive software integrity controls, and anti-exploitation software may be effective in preventing the execution of unauthorized code. Malicious code may be present in commercial off-the-shelf software as well as custom-built software and could include logic bombs, backdoors, and other types of attacks that could affect organizational mission and business functions.
In situations where malicious code cannot be detected by detection methods or technologies, organizations rely on other types of controls, including secure coding practices, configuration management and control, trusted procurement processes, and monitoring practices to ensure that software does not perform functions other than the functions intended. Organizations may determine that, in response to the detection of malicious code, different actions may be warranted. For example, organizations can define actions in response to malicious code detection during periodic scans, the detection of malicious downloads, or the detection of maliciousness when attempting to open or execute files.
' WHERE [Requirement_Id] = 37980
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Monitor the system to detect:
[a: Implementation Statement]
+ i) Attacks and indicators of potential attacks in accordance with the following monitoring objectives:
[a.i: Implementation Statement]
+ (1) Systems shall be monitored in real-time to assure the proper functioning of system processes and controls at external interfaces to the system and within the system; and
[a.i.1: Implementation Statement]
+ (2) For assurance that the system is functioning in an optimal, resilient, and secure state and that any irregularities or anomalies that are indicators of a system malfunction or compromise are detected;
[a.i.2: Implementation Statement]
+ ii) Unauthorized local, network, and remote connections;
[a.ii: Implementation Statement]
+b. Identify unauthorized use of the system via the following tools, techniques and methods: intrusion detection and prevention systems, malicious code protection software, scanning tools, audit record monitoring software, and network monitoring software;
[b: Implementation Statement]
+c. Invoke internal monitoring capabilities or deploy monitoring devices:
[c: Implementation Statement]
+ i) Strategically within the system to collect organization-determined essential information; and
[c.i: Implementation Statement]
+ ii) At ad hoc locations within the system to track specific types of transactions of interest to the organization;
[c.ii: Implementation Statement]
+d. Analyze detected events and anomalies;
[d: Implementation Statement]
+e. Adjust the level of system monitoring activity when there is a change in risk to organizational operations and assets, individuals, other organizations, or the Nation;
[e: Implementation Statement]
+f. Obtain legal advice regarding system monitoring activities; and
[f: Implementation Statement]
+g. Provide information system monitoring information to personnel with administration, monitoring, and/or security responsibilities; continuously.
[g: Implementation Statement]
+
+OT Systems Only:
+The organization ensures that use of monitoring tools and techniques does not adversely impact the operational performance of the OT. Example compensating controls include deploying sufficient network process, and physical monitoring.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-2, AC-3, AC-4, AC-8, AC-17, AU-2, AU-6, AU-7, AU-9, AU-12, CA-7, CM-3, CM-6, CM-8, CM-11, IR-4, MA-3, MA-4, PL-9, PM-12, RA-5, SC-5, SC-7, SC-18, SI-3, SI-6, SI-7, SR-9, SR-10
+
+h. Security Controls Enhancement(s):
[h: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization ensures that the use of monitoring tools and techniques does not adversely impact the operational performance of the OT. Example compensating controls include deploying sufficient network, process, and physical monitoring.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Monitoring
a. Monitor the system to detect:
1. Attacks and indicators of potential attacks in accordance with the following monitoring objectives: [Assignment: organization-defined
monitoring objectives]; and
2. Unauthorized local, network, and remote connections;
b. Identify unauthorized use of the system through the following techniques and methods: [Assignment: organization-defined techniques and methods];
c. Invoke internal monitoring capabilities or deploy monitoring devices:
1. Strategically within the system to collect organization-determined essential information; and
2. At ad hoc locations within the system to track specific types of transactions of interest to the organization;
d. Analyze detected events and anomalies;
e. Adjust the level of system monitoring activity when there is a change in risk to organizational operations and assets, individuals, other organizations, or the Nation;
f. Obtain legal opinion regarding system monitoring activities; and
g. Provide [Assignment: organization-defined system monitoring information] to [Assignment: organization-defined personnel or roles] [Selection (one or more): as needed; [Assignment: organization-defined frequency]].
Discussion:System monitoring includes external and internal monitoring. External monitoring includes the observation of events occurring at external interfaces to the system. Internal monitoring includes the observation of events occurring within the system. Organizations monitor systems by observing audit activities in real time or by observing other system aspects such as access patterns, characteristics of access, and other actions. The monitoring objectives guide and inform the determination of the events. System monitoring capabilities are achieved through a variety of tools and techniques, including intrusion detection and prevention systems, malicious code protection software, scanning tools, audit record monitoring software, and network monitoring software.
Depending on the security architecture, the distribution and configuration of monitoring devices may impact throughput at key internal and external boundaries as well as at other locations across a network due to the introduction of network throughput latency. If throughput management is needed, such devices are strategically located and deployed as part of an established organization-wide security architecture. Strategic locations for monitoring devices include selected perimeter locations and near key servers and server farms that support critical applications. Monitoring devices are typically employed at the managed interfaces associated with controls SC-7 and AC-17. The information collected is a function of the organizational monitoring objectives and the capability of systems to support such objectives. Specific types of transactions of interest include Hypertext Transfer Protocol (HTTP) traffic that bypasses HTTP proxies. System monitoring is an integral part of organizational continuous monitoring and incident response programs, and output from system monitoring serves as input to those programs. System monitoring requirements, including the need for specific types of system monitoring, may be referenced in other controls (e.g., AC-2g, AC-2(7), AC-2(12)(a), AC-17(1), AU-13, AU-13(1), AU-13(2), CM-3f, CM-6d, MA-3a, MA-4a, SC-5(3)(b), SC-7a, SC-7(24)(b), SC-18b, SC-43b). Adjustments to levels of system monitoring are based on law enforcement information, intelligence information, or other sources of information. The legality of system monitoring activities is based on applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.
' WHERE [Requirement_Id] = 37981
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Make provisions so that encrypted communications traffic is visible to organizational monitoring tools and mechanisms.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Visibility of Encrypted Communications
Make provisions so that [Assignment: organization-defined encrypted communications traffic] is visible to [Assignment: organization-defined system monitoring tools and mechanisms].
Discussion:Organizations balance the need to encrypt communications traffic to protect data confidentiality with the need to maintain visibility into such traffic from a monitoring perspective. Organizations determine whether the visibility requirement applies to internal encrypted traffic, encrypted traffic intended for external destinations, or a subset of the traffic types.' WHERE [Requirement_Id] = 37982
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Alert required stakeholders using automated mechanisms when there are indications of inappropriate or unusual activities with security or privacy implications.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Organization-generated Alerts
Alert [Assignment: organization-defined personnel or roles] using [Assignment: organization-defined automated mechanisms] when the following indications of inappropriate or unusual activities with security or privacy implications occur: [Assignment: organization-defined activities that trigger alerts].
Discussion:Organizational personnel on the system alert notification list include system administrators, mission or business owners, system owners, senior agency information security officer, senior agency official for privacy, system security officers, or privacy officers. Automated organization-generated alerts are the security alerts generated by organizations and transmitted using automated means. The sources for organization-generated alerts are focused on other entities such as suspicious activity reports and reports on potential insider threats. In contrast to alerts generated by the organization, alerts generated by the system in SI-4(5) focus on information sources that are internal to the systems, such as audit records.' WHERE [Requirement_Id] = 37983
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ a wireless intrusion detection system to identify rogue wireless devices and to detect attack attempts and potential compromises or breaches to the system.
[Implementation Statement]
+
+Related Controls: AC-18, IA-3
+
+
+', [Supplemental_Info]=N' Wireless Intrusion Detection
Employ a wireless intrusion detection system to identify rogue wireless devices and to detect attack attempts and potential compromises or breaches to the system.
Discussion:Wireless signals may radiate beyond organizational facilities. Organizations proactively search for unauthorized wireless connections, including the conduct of thorough scans for unauthorized wireless access points. Wireless scans are not limited to those areas within facilities containing systems but also include areas outside of facilities to verify that unauthorized wireless access points are not connected to organizational systems.' WHERE [Requirement_Id] = 37984
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ automated tools and mechanisms to support near real-time analysis of events.
[Implementation Statement]
+
+OT Systems Only:
+In situations where the OT cannot support the use of automated tools to support near-real-time analysis of events, the organization employs compensating controls (e.g., providing an auditing capability on a separate system, nonautomated mechanisms or procedures) in accordance with the general tailoring guidance.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PM-23, PM-25
+
+NIST 800-82 Rev 3:
+OT Discussion: When the OT cannot support the use of automated tools for near-real-time analysis of events, the organization employs compensating controls (e.g., providing an auditing capability on a separate system, nonautomated mechanisms or procedures) in accordance with the general tailoring guidance.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Monitoring | Automated Tools and Mechanisms for Real-time Analysis
Employ automated tools and mechanisms to support near real-time analysis of events.
Discussion:Automated tools and mechanisms include host-based, network-based, transport-based, or storage-based event monitoring tools and mechanisms or security information and event management (SIEM) technologies that provide real-time analysis of alerts and notifications generated by organizational systems. Automated monitoring techniques can create unintended privacy risks because automated controls may connect to external or otherwise unrelated systems. The matching of records between these systems may create linkages with unintended consequences. Organizations assess and document these risks in their privacy impact assessment and make determinations that are in alignment with their privacy program plan.' WHERE [Requirement_Id] = 37985
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement the following additional monitoring of privileged users:
[Implementation Statement]
+
+(1) Monitoring of all privileged actions taken or attempted; and
[1: Implementation Statement]
+(2) Actions that violate normal or expected behaviors.
[2: Implementation Statement]
+
+Related Controls: AC-18
+
+
+', [Supplemental_Info]=N' Privileged Users
Implement the following additional monitoring of privileged users: [Assignment: organization-defined additional monitoring].
Discussion:Privileged users have access to more sensitive information, including security-related information, than the general user population. Access to such information means that privileged users can potentially do greater damage to systems and organizations than non-privileged users. Therefore, implementing additional monitoring on privileged users helps to ensure that organizations can identify malicious activity at the earliest possible time and take appropriate actions.' WHERE [Requirement_Id] = 37986
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Detect network services that have not been authorized or approved by the DM Change Control Board and audit and alert when detected.
[Implementation Statement]
+
+Related Controls: CM-7
+
+
+', [Supplemental_Info]=N' Unauthorized Network Services
(a) Detect network services that have not been authorized or approved by [Assignment: organization-defined authorization or approval processes]; and
(b) [Selection (one or more): Audit; Alert [Assignment: organization-defined personnel or roles]] when detected.
Discussion:Unauthorized or unapproved network services include services in service-oriented architectures that lack organizational verification or validation and may therefore be unreliable or serve as malicious rogues for valid services.' WHERE [Requirement_Id] = 37987
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'(1) Determine criteria for unusual or unauthorized activities or conditions for inbound and outbound communications traffic;
[1: Implementation Statement]
+(2) Monitor inbound and outbound communications traffic continuously for unusual or unauthorized activities or conditions.
[2: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Inbound and Outbound Communications Traffic
(a) Determine criteria for unusual or unauthorized activities or conditions for inbound and outbound communications traffic;
(b) Monitor inbound and outbound communications traffic [Assignment: organization-defined frequency] for [Assignment: organization-defined unusual or unauthorized activities or conditions].
Discussion:Unusual or unauthorized activities or conditions related to system inbound and outbound communications traffic includes internal traffic that indicates the presence of malicious code or unauthorized use of legitimate code or credentials within organizational systems or propagating among system components, signaling to external systems, and the unauthorized exporting of information. Evidence of malicious code or unauthorized use of legitimate code or credentials is used to identify potentially compromised systems or system components.' WHERE [Requirement_Id] = 37988
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Alert required stakeholders when the following system-generated indications of compromise or potential compromise occur. At a minimum, compromise indicators may include but shall not be limited to the following:
[Implementation Statement]
+
+(1) Protected system files or directories have been modified without notification from the appropriate change/configuration management channels;
[1: Implementation Statement]
+(2) System performance indicates resource consumption that is inconsistent with expected operating conditions;
[2: Implementation Statement]
+(3) Auditing functionality has been disabled or modified to reduce audit visibility;
[3: Implementation Statement]
+(4) Audit or log records have been deleted or modified without explanation;
[4: Implementation Statement]
+(5) The system is raising alerts or faults in a manner that indicates the presence of an abnormal condition;
[5: Implementation Statement]
+(6) Resource or service requests are initiated from clients that are outside of the expected client membership set;
[6: Implementation Statement]
+(7) The system reports failed logins or password changes for administrative or key service accounts;
[7: Implementation Statement]
+(8) Processes and services are running that are outside of the baseline system profile; and
[8: Implementation Statement]
+(9) Utilities, tools, or scripts have been saved or installed on production systems without a clear indication of their use or purpose.
[9: Implementation Statement]
+
+OT Systems Only:
+Example compensating controls include manual methods of generating alerts.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-4, AU-5, PE-6
+
+NIST 800-82 Rev 3:
+OT Discussion: Example compensating controls include manually generating alerts.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'System Monitoring | System-generated Alerts
Alert [Assignment: organization-defined personnel or roles] when the following system-generated indications of compromise or potential compromise occur: [Assignment: organization-defined compromise indicators].
Discussion:Alerts may be generated from a variety of sources, including audit records or inputs from malicious code protection mechanisms, intrusion detection or prevention mechanisms, or boundary protection devices such as firewalls, gateways, and routers. Alerts can be automated and may be transmitted telephonically, by electronic mail messages, or by text messaging. Organizational personnel on the alert notification list can include system administrators, mission or business owners, system owners, information owners/stewards, senior agency information security officers, senior agency officials for privacy, system security officers, or privacy officers. In contrast to alerts generated by the system, alerts generated by organizations in SI-4(12) focus on information sources external to the system, such as suspicious activity reports and reports on potential insider threats.' WHERE [Requirement_Id] = 37989
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Receive system security alerts, advisories, and directives from supply chain partners, external mission or business partners, external service providers, other peer or supporting organizations, Cybersecurity and Infrastructure Agency, Information Sharing and Analysis Centers, and other resources as determined by DMCS on an ongoing basis;
[a: Implementation Statement]
+b. Generate internal security alerts, advisories, and directives as deemed necessary;
[b: Implementation Statement]
+c. Disseminate security alerts, advisories, and directives to all staff with system administration, monitoring, and/or security responsibilities; and other required stakeholders; and
[c: Implementation Statement]
+d. Implement security directives in accordance with established time frames or notify the issuing organization of the degree of noncompliance.
[d: Implementation Statement]
+
+OT Systems Only:
+CISA generates security alerts and advisories relative to OT at https://www.cisa.gove/uscert/ics. Industry-specific ISACs often provide tailored advisories and alerts, which can be found at https://www.nationalisacs.org/.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PM-15, RA-5, SI-2
+
+e. Security Controls Enhancement(s):
[e: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: CISA generates security alerts and advisories relative to OT at https://www.cisa.gov/uscert/ics. Industry-specific ISACs often provide tailored advisories and alerts, which can be found at https://www.nationalisacs.org/.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Security Alerts, Advisories, and Directives
a. Receive system security alerts, advisories, and directives from [Assignment: organization-defined external organizations] on an ongoing basis;
b. Generate internal security alerts, advisories, and directives as deemed necessary;
c. Disseminate security alerts, advisories, and directives to: [Selection (one or more): [Assignment: organization-defined personnel or roles]; [Assignment: organization-defined elements within the organization]; [Assignment: organization-defined external organizations]]; and
d. Implement security directives in accordance with established time frames, or notify the issuing organization of the degree of noncompliance.
Discussion:The Cybersecurity and Infrastructure Security Agency (CISA) generates security alerts and advisories to maintain situational awareness throughout the Federal Government. Security directives are issued by OMB or other designated organizations with the responsibility and authority to issue such directives. Compliance with security directives is essential due to the critical nature of many of these directives and the potential (immediate) adverse effects on organizational operations and assets, individuals, other organizations, and the Nation should the directives not be implemented in a timely manner. External organizations include supply chain partners, external mission or business partners, external service providers, and other peer or supporting organizations.' WHERE [Requirement_Id] = 37990
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Broadcast security alerts and advisory information throughout the organization using automated mechanisms.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N' Automated Alerts and Advisories
Broadcast security alert and advisory information throughout the organization using [Assignment: organization-defined automated mechanisms].
Discussion:The significant number of changes to organizational systems and environments of operation requires the dissemination of security-related information to a variety of organizational entities that have a direct interest in the success of organizational mission and business functions. Based on information provided by security alerts and advisories, changes may be required at one or more of the three levels related to the management of risk, including the governance level, mission and business process level, and the information system level.' WHERE [Requirement_Id] = 37991
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Verify the correct operation of system security and privacy functions;
[a: Implementation Statement]
+b. Perform the verification of the system security and privacy functions during system startup, restart, shutdown, and abort and upon command by the user with appropriate privilege annually or as a part of information system continuous monitoring;
[b: Implementation Statement]
+c. Alert required stakeholders to fail security and privacy verification tests; and
[c: Implementation Statement]
+d. Audits shall be captured in accordance with Control 3.3 Audit and Accountability to reflect sufficient details as to the anomaly that occurred, appropriate action taken (e.g., shutdown of the system) as specified in the System Security Plan (SSP), and/or Control 3.5 Contingency Planning, Section 2, “CP-2 Information System Contingency Plan”, and personnel identified in Section 4, (g), (iii), “SI-4, (5) System-Generated Alerts” and Section 4, (g), (v), “SI-4 (12) Automated Organization-Generated Alerts”, and alerted when anomalies are discovered.
[d: Implementation Statement]
+e. If the system is shut down due to a privacy-related anomaly, the relevant Control 3.3 Audit and Accountability and Control 3.5 Contingency Planning controls shall be updated in the SSP and the Information System Contingency Plan (ISCP)/Disaster Recovery Plan (DRP) to reflect how operations shall be maintained in the event of a system or system component outage.
[e: Implementation Statement]
+
+OT Systems Only:
+Shutting down and restarting the OT may not always be feasible upon the identification of an anomaly; these actions should be scheduled according to OT operational requirements.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CA-7, CM-4, CM-6, CP-2, SI-4, SI-7
+
+NIST 800-82 Rev 3:
+OT Discussion: Shutting down and restarting the OT may not always be feasible upon the identification of an anomaly. These actions should be scheduled according to OT operational requirements.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Security and Privacy Function Verification
a. Verify the correct operation of [Assignment: organization-defined security and privacy functions];
b. Perform the verification of the functions specified in SI-6a [Selection (one or more): [Assignment: organization-defined system transitional states]; upon command by user with appropriate privilege; [Assignment: organization-defined frequency]];
c. Alert [Assignment: organization-defined personnel or roles] to failed security and privacy verification tests; and
d. [Selection (one or more): Shut the system down; Restart the system; [Assignment: organization-defined alternative action(s)]] when anomalies are discovered.
Discussion:Transitional states for systems include system startup, restart, shutdown, and abort. System notifications include hardware indicator lights, electronic alerts to system administrators, and messages to local computer consoles. In contrast to security function verification, privacy function verification ensures that privacy functions operate as expected and are approved by the senior agency official for privacy or that privacy attributes are applied or used as expected.' WHERE [Requirement_Id] = 37992
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Employ integrity verification tools to detect unauthorized changes to system software, firmware, information, and data; and
[a: Implementation Statement]
+b. Take the following actions when unauthorized changes to the software, firmware, and information are detected:
[b: Implementation Statement]
+ i) Audit the changes made in accordance with Control 3.3 Audit and Accountability;
[b.i: Implementation Statement]
+ ii) Notify/alert required stakeholders; and
[b.ii: Implementation Statement]
+ iii) Take the appropriate action (e.g., shutdown or halting the system, reversing the changes, or triggering audit alerts) as specified in the SSP and/or Control 3.5 Contingency Planning, Section 2, “CP-2 Information System Contingency Plan”. If the system is shut down due to unauthorized changes, the relevant Control 3.3 Audit and Accountability and Control 3.5 Contingency Planning controls shall be updated in the SSP and the CP/DRP to reflect how operations shall be maintained in the event of a system or system component outage.
[b.iii: Implementation Statement]
+
+OT Systems Only:
+The organization determines whether the use of integrity verification applications would adversely impact operation of the ICS and employs compensating controls (e.g., manual integrity verifications that do not affect performance).
[OT Systems Only: Implementation Statement]
+
+Related Controls: AC-4, CM-3, CM-7, CM-8, CP-2, MA-3, MA-4, RA-5, SA-8, SA-9, SA-10, SC-8, SC-12, SC-13, SC-28, SI-3, SR-3, SR-4, SR-5, SR-6, SR-9, SR-10, SR-11
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization determines whether the use of integrity verification applications would adversely impact operation of the ICS and employs compensating controls (e.g., manual integrity verifications that do not affect performance).
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Software, Firmware, and Information Integrity
a. Employ integrity verification tools to detect unauthorized changes to the following software, firmware, and information: [Assignment: organization-defined software, firmware, and information]; and
b. Take the following actions when unauthorized changes to the software, firmware, and information are detected: [Assignment: organization-defined actions].
Discussion:Unauthorized changes to software, firmware, and information can occur due to errors or malicious activity. Software includes operating systems (with key internal components, such as kernels or drivers), middleware, and applications. Firmware interfaces include Unified Extensible Firmware Interface (UEFI) and Basic Input/Output System (BIOS). Information includes personally identifiable information and metadata that contains security and privacy attributes associated with information. Integrity-checking mechanisms—including parity checks, cyclical redundancy checks, cryptographic hashes, and associated tools—can automatically monitor the integrity of systems and hosted applications.' WHERE [Requirement_Id] = 37993
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Perform an integrity check of software, firmware, and information at least monthly and at system startup, restart, shutdown, abort, and during configuration changes or security-relevant events.
[Implementation Statement]
+
+OT Systems Only:
+The organization ensures that the use of integrity verification applications does not adversely impact the operational performance of the OT.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: The organization ensures that the use of integrity verification applications does not adversely impact the operational performance of the OT.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Software, Firmware, and Information Integrity | Integrity Checks
Perform an integrity check of [Assignment: organization-defined software, firmware, and information] [Selection (one or more): at startup; at [Assignment: organization-defined transitional states or security-relevant events]; [Assignment: organization-defined frequency]].
Discussion:Security-relevant events include the identification of new threats to which organizational systems are susceptible and the installation of new hardware, software, or firmware. Transitional states include system startup, restart, shutdown, and abort.' WHERE [Requirement_Id] = 37994
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Implement cryptographic mechanisms that authenticate software and firmware components and provide digitally signed certificates from trusted authorities approved by DMCS prior to installation.
[Implementation Statement]
+
+OT Systems Only:
+Code authentication provides assurance to the organization that the software and firmware have not been tampered with. If automated mechanisms are not available, organizations could verify code authentication by manually using a combination of techniques including verifying hashes, downloading from reputable sources, verifying version numbers with the vendor, or testing software/firmware in offline/test environment.
[OT Systems Only: Implementation Statement]
+
+Related Controls: CM-5, SC-12, SC-13
+
+NIST 800-82 Rev 3:
+OT Discussion: Code authentication provides assurance that the software and firmware have not been tampered with. If automated mechanisms are not available, organizations could manually verify code authentication by using a combination of techniques, including verifying hashes, downloading from reputable sources, verifying version numbers with the vendor, or testing software and firmware in offline or test environments.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Software, Firmware, and Information Integrity | Code Authentication
Implement cryptographic mechanisms to authenticate the following software or firmware components prior to installation: [Assignment: organization-defined software or firmware components].
Discussion:Cryptographic authentication includes verifying that software or firmware components have been digitally signed using certificates recognized and approved by organizations. Code signing is an effective method to protect against malicious code. Organizations that employ cryptographic mechanisms also consider cryptographic key management solutions.' WHERE [Requirement_Id] = 37995
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ automated tools that provide notification to required stakeholders upon discovering discrepancies during integrity verification.
[Implementation Statement]
+
+OT Systems Only:
+In situations where the organization cannot employ automated tools that provide notification of integrity discrepancies, the organization employs nonautomated mechanisms or procedures. Example compensating controls include performing scheduled manual inspections for integrity violations.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: When the organization cannot employ automated tools that provide notifications about integrity discrepancies, the organization employs nonautomated mechanisms or procedures. Example compensating controls include performing scheduled manual inspections for integrity violations.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Software, Firmware, and Information Integrity | Automated Notifications of Integrity Violations
Employ automated tools that provide notification to [Assignment: organization-defined personnel or roles] upon discovering discrepancies during integrity verification.
Discussion:The employment of automated tools to report system and information integrity violations and to notify organizational personnel in a timely matter is essential to effective risk response. Personnel with an interest in system and information integrity violations include mission and business owners, system owners, senior agency information security official, senior agency official for privacy, system administrators, software developers, systems integrators, information security officers, and privacy officers.' WHERE [Requirement_Id] = 37996
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Automatically act and implement controls (e.g., shutdown or halting the system, reversing the changes, or triggering audit alerts) when integrity violations are discovered. If the system is shut down due to unauthorized changes, the relevant security controls shall be updated in the SSP and the CP/DRP to reflect how operations shall be maintained in the event of a system or system component outage.
[Implementation Statement]
+
+OT Systems Only:
+Shutting down and restarting the ICS may not always be feasible upon identification of an anomaly; these actions should be scheduled according to ICS operational requirements.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Shutting down and restarting the ICS may not always be feasible upon identification of an anomaly. These actions should be scheduled according to ICS operational requirements.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Software, Firmware, and Information Integrity | Automated Response to Integrity Violations
Automatically [Selection (one or more): shut the system down; restart the system; implement [Assignment: organization-defined controls]] when integrity violations are discovered.
Discussion:Organizations may define different integrity-checking responses by type of information, specific information, or a combination of both. Types of information include firmware, software, and user data. Specific information includes boot firmware for certain types of machines. The automatic implementation of controls within organizational systems includes reversing the changes, halting the system, or triggering audit alerts when unauthorized modifications to critical security files occur.' WHERE [Requirement_Id] = 37997
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Incorporate the detection of unauthorized system changes to include unauthorized changes to established configuration settings or baselines or unauthorized elevation of system privileges into the organizational incident response capability.
[Implementation Statement]
+
+OT Systems Only:
+In situations where the ICS cannot detect unauthorized security-relevant changes, the organization employs compensating controls (e.g., manual procedures) in accordance with the general tailoring guidance.
[OT Systems Only: Implementation Statement]
+
+Related Controls: AU-2, AU-6, IR-4, IR-5, SI-4
+
+NIST 800-82 Rev 3:
+OT Discussion: When the ICS cannot detect unauthorized securityrelevant changes, the organization employs compensating controls (e.g., manual procedures) in accordance with the general tailoring guidance.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Software, Firmware, and Information Integrity | Integration of Detection and Response
Incorporate the detection of the following unauthorized changes into the organizational incident response capability: [Assignment: organization-defined security-relevant changes to the system].
Discussion:Integrating detection and response helps to ensure that detected events are tracked, monitored, corrected, and available for historical purposes. Maintaining historical records is important for being able to identify and discern adversary actions over an extended time period and for possible legal actions. Security-relevant changes include unauthorized changes to established configuration settings or the unauthorized elevation of system privileges.' WHERE [Requirement_Id] = 37998
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Employ spam protection mechanisms at system entry and exit points to detect and act on unsolicited messages; and
[a: Implementation Statement]
+b. Update spam protection mechanisms when new releases are available in accordance with organizational configuration management control family and procedures.
[b: Implementation Statement]
+
+OT Systems Only:
+OT organizations implement spam protection by removing spam transport mechanisms, functions, and services (e.g., electronic mail, web browsing) from the OT.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PL-9, SC-5, SC-7, SI-3, SI-4
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: OT organizations implement spam protection by removing spam transport mechanisms, functions, and services (e.g., electronic mail, web browsing) from the OT.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.1. Capabilities to—
+
+a. Defend against malicious email, such as spam and phishing emails, to preclude or mitigate against adverse impacts to operations; (p.7)
[D.1: Implementation Statement]
+', [Supplemental_Info]=N'Spam Protection
a. Employ spam protection mechanisms at system entry and exit points to detect and act on unsolicited messages; and
b. Update spam protection mechanisms when new releases are available in accordance with organizational configuration management policy and procedures.
Discussion:System entry and exit points include firewalls, remote-access servers, electronic mail servers, web servers, proxy servers, workstations, notebook computers, and mobile devices. Spam can be transported by different means, including email, email attachments, and web accesses. Spam protection mechanisms include signature definitions.' WHERE [Requirement_Id] = 37999
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Automatically and continuously update spam protection mechanisms to ensure that updates occur on a regular basis and provide the latest content and protection capabilities.
[Implementation Statement]
+
+NIST 800-82 Rev 3:
+Rationale for removing SI-8 (2) from MOD and HIGH baselines: Spam transport mechanisms are disabled or removed from the OT, so automatic updates are not necessary.
[NIST 800-82 Rev 3: Implementation Statement]
+
+DHS TSA Security Directive 1580/82-2022-01A
+
+III. Cybersecurity Measures
+
+D.1. Capabilities to—
+
+a. Defend against malicious email, such as spam and phishing emails, to preclude or mitigate against adverse impacts to operations; (p.7)
[D.1: Implementation Statement]
+', [Supplemental_Info]=N'Spam Protection | Automatic Updates
Automatically update spam protection mechanisms [Assignment: organization-defined frequency].
Discussion:Using automated mechanisms to update spam protection mechanisms helps to ensure that updates occur on a regular basis and provide the latest content and protection capabilities.' WHERE [Requirement_Id] = 38000
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Reference P/I 15.28 Cybersecurity Policy for requirements.
[Implementation Statement]
+
+OT Systems Only:
+Supply chain and procedures for OT should consider components received as well as components produced. Many OT systems use legacy components that cannot meet modern supply chain expectations. Appropriate compensating controls should be developed to achieve organization supply chain expectations for legacy systems.
[OT Systems Only: Implementation Statement]
+
+Related Controls: PM-9, PM-30, PS-8, SI-12
+
+NIST 800-82 Rev 3:
+OT Discussion: Supply chain policies and procedures for OT should consider both components received and components produced. Many OT systems use legacy components that cannot meet modern supply chain expectations. Appropriate compensating controls should be developed to achieve organizational supply chain expectations for legacy systems.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Cybersecurity Supply Chain Risk Management Policy and Procedures
a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:
1. [Selection (one or more): Organization-level; Mission/business process-level; System-level] supply chain risk management policy that:
(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and
compliance; and
(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and
2. Procedures to facilitate the implementation of the supply chain risk management policy and the associated supply chain risk management
controls;
b. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the supply chain risk management policy and procedures; and
c. Review and update the current supply chain risk management:
1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and
2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].
Discussion:Supply chain risk management policy and procedures address the controls in the SR family as well as supply chain-related controls in other families that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of supply chain risk management policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to supply chain risk management policy and procedures include assessment or audit findings, security incidents or breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.' WHERE [Requirement_Id] = 38001
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Inspect systems or system components for physical and logical tampering:
[Implementation Statement]
+
+a. Immediately upon delivery of a new system or system component and when there is a significant change to a hardware, software, or firmware component;
[a: Implementation Statement]
+b. Immediately when a system or system component is removed and returned from travel to high-risk locations or travel outside organizationally-controlled areas or facilities (other than when personnel are in telework status in the contiguous US);
[b: Implementation Statement]
+c. Randomly when there are indications of a need for inspection to include changes in packaging, specifications, factory location, entities, or locations in which the part is purchased; and
[c: Implementation Statement]
+d. At the discretion of DMCS.
[d: Implementation Statement]
+
+Related Controls: AT-3, PM-30, SI-4, SI-7, SR-3, SR-4, SR-5, SR-9, SR-11
+
+
+', [Supplemental_Info]=N'Inspection of Systems or Components
Inspect the following systems or system components [Selection (one or more): at random; at [Assignment: organization-defined frequency], upon [Assignment: organization-defined indications of need for inspection]] to detect tampering: [Assignment: organization-defined systems or system components].
Discussion:The inspection of systems or systems components for tamper resistance and detection addresses physical and logical tampering and is applied to systems and system components removed from organization-controlled areas. Indications of a need for inspection include changes in packaging, specifications, factory location, or entity in which the part is purchased, and when individuals return from travel to high-risk locations.' WHERE [Requirement_Id] = 38002
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop and implement anti-counterfeit procedures that include the validation of authenticity of any system with the authorized vendor.
[a: Implementation Statement]
+b. Report counterfeit system components to DMCS.
[b: Implementation Statement]
+
+Related Controls: PE-3, SA-4, SI-7, SR-9, SR-10
+
+c. Security Controls Enhancement(s):
[c: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Component Authenticity
a. Develop and implement anti-counterfeit policy and procedures that include the means to detect and prevent counterfeit components from entering the system; and
b. Report counterfeit system components to [Selection (one or more): source of counterfeit component; [Assignment: organization-defined external reporting organizations]; [Assignment: organization-defined personnel or roles]].
Discussion:Sources of counterfeit components include manufacturers, developers, vendors, and contractors. Anti-counterfeiting policies and procedures support tamper resistance and provide a level of protection against the introduction of malicious code. External reporting organizations include CISA.' WHERE [Requirement_Id] = 38003
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Train System Owners to detect counterfeit system components (including hardware, software, and firmware).
[Implementation Statement]
+
+Related Controls: AT-3
+
+
+' WHERE [Requirement_Id] = 38004
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Validate authenticity of any system being returned to service or coming back from repair with the authorized vendor.
[Implementation Statement]
+
+Related Controls: CM-3, MA-2, MA-4, SA-10
+
+
+' WHERE [Requirement_Id] = 38005
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Dispose of data, documentation, tools, or system components only after media sanitization techniques and methods in accordance with Control 3.12 Media Protection, Section 6, “MP-6 Media Sanitization”.
[Implementation Statement]
+
+Related Controls: MP-6
+
+
+', [Supplemental_Info]=N'Component Disposal
Dispose of [Assignment: organization-defined data, documentation, tools, or system components] using the following techniques and methods: [Assignment: organization-defined techniques and methods].
Discussion:Data, documentation, tools, or system components can be disposed of at any time during the system development life cycle (not only in the disposal or retirement phase of the life cycle). For example, disposal can occur during research and development, design, prototyping, or operations/maintenance and include methods such as disk cleaning, removal of cryptographic keys, partial reuse of components. Opportunities for compromise during disposal affect physical and logical data, including system documentation in paper-based or digital files; shipping and delivery documentation; memory sticks with software code; or complete routers or servers that include permanent media, which contain sensitive or proprietary information. Additionally, proper disposal of system components helps to prevent such components from entering the gray market.' WHERE [Requirement_Id] = 38006
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Develop a plan for managing supply chain risks associated with the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of information and operational technology (IT/OT) systems, system components, or system services;
[a: Implementation Statement]
+b. Review and update the supply chain risk management plan annually or as required, to address threat, organizational or environmental changes; and
[b: Implementation Statement]
+c. Protect the supply chain risk management plan from unauthorized disclosure and modification.
[c: Implementation Statement]
+
+Related Controls: CA-2, CP-4, IR-4, MA-2, MA-6, PE-16, PL-2, PM-9, PM-30, RA-3, RA-7, SA-8, SI-4
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Supply Chain Risk Management Plan
a. Develop a plan for managing supply chain risks associated with the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of the following systems, system components or system services: [Assignment: organization-defined systems, system components, or system services];
b. Review and update the supply chain risk management plan [Assignment: organization-defined frequency] or as required, to address threat, organizational or environmental changes; and
c. Protect the supply chain risk management plan from unauthorized disclosure and modification.
Discussion:The dependence on products, systems, and services from external providers, as well as the nature of the relationships with those providers, present an increasing level of risk to an organization. Threat actions that may increase security or privacy risks include unauthorized production, the insertion or use of counterfeits, tampering, theft, insertion of malicious software and hardware, and poor manufacturing and development practices in the supply chain. Supply chain risks can be endemic or systemic within a system element or component, a system, an organization, a sector, or the Nation. Managing supply chain risk is a complex, multifaceted undertaking that requires a coordinated effort across an organization to build trust relationships and communicate with internal and external stakeholders. Supply chain risk management (SCRM) activities include identifying and assessing risks, determining appropriate risk response actions, developing SCRM plans to document response actions, and monitoring performance against plans. The SCRM plan (at the system-level) is implementation specific, providing policy implementation, requirements, constraints and implications. It can either be stand-alone, or incorporated into system security and privacy plans. The SCRM plan addresses managing, implementation, and monitoring of SCRM controls and the development/sustainment of systems across the SDLC to support mission and business functions.
Because supply chains can differ significantly across and within organizations, SCRM plans are tailored to the individual program, organizational, and operational contexts. Tailored SCRM plans provide the basis for determining whether a technology, service, system component, or system is fit for purpose, and as such, the controls need to be tailored accordingly. Tailored SCRM plans help organizations focus their resources on the most critical mission and business functions based on mission and business requirements and their risk environment. Supply chain risk management plans include an expression of the supply chain risk tolerance for the organization, acceptable supply chain risk mitigation strategies or controls, a process for consistently evaluating and monitoring supply chain risk, approaches for implementing and communicating the plan, a description of and justification for supply chain risk mitigation measures taken, and associated roles and responsibilities. Finally, supply chain risk management plans address requirements for developing trustworthy, secure, privacy-protective, and resilient system components and systems, including the application of the security design principles implemented as part of life cycle-based systems security engineering processes (see SA-8).
' WHERE [Requirement_Id] = 38007
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish a supply chain risk management team consisting of Procurement, the Legal Department, CORs/COTRs, CISO, AO, BISO, Cybersecurity SCRM Team, and other personnel/roles as deemed necessary to lead and support the following SCRM activities:
[Implementation Statement]
+
+(1) Leading and supporting SCRM activities on projects and programs with a nexus to technology;
[1: Implementation Statement]
+(2) Identification, assessment, and analysis of supply chain risks and the supply chain risk management program;
[2: Implementation Statement]
+(3) Management and mitigation of supply chain risks; and
[3: Implementation Statement]
+(4) Communication with internal and external partners or stakeholders (including third-party vendors (TPV)).
[4: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Establish SCRM Team
Establish a supply chain risk management team consisting of [Assignment: organization-defined personnel, roles, and responsibilities] to lead and support the following SCRM activities: [Assignment: organization-defined supply chain risk management activities].
Discussion:To implement supply chain risk management plans, organizations establish a coordinated, team-based approach to identify and assess supply chain risks and manage these risks by using programmatic and technical mitigation techniques. The team approach enables organizations to conduct an analysis of their supply chain, communicate with internal and external partners or stakeholders, and gain broad consensus regarding the appropriate resources for SCRM. The SCRM team consists of organizational personnel with diverse roles and responsibilities for leading and supporting SCRM activities, including risk executive, information technology, contracting, information security, privacy, mission or business, legal, supply chain and logistics, acquisition, business continuity, and other relevant functions. Members of the SCRM team are involved in various aspects of the SDLC and, collectively, have an awareness of and provide expertise in acquisition processes, legal practices, vulnerabilities, threats, and attack vectors, as well as an understanding of the technical aspects and dependencies of systems. The SCRM team can be an extension of the security and privacy risk management processes or be included as part of an organizational risk management team.' WHERE [Requirement_Id] = 38008
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Establish a process or processes to identify and address weaknesses or deficiencies in the supply chain elements and processes of systems in coordination with the SCRM Team;
[a: Implementation Statement]
+b. Employ security controls in compliance with WMATA policy and instructions to protect against cybersecurity supply chain risks to the system, system component, or system service and to limit the harm or consequences from supply chain-related events; and
[b: Implementation Statement]
+c. As a part of the acquisition process for any new technology, document the selected and implemented cybersecurity supply chain processes and controls in the Cybersecurity Supply Chain Risk Management Plan (CSCRMP).
[c: Implementation Statement]
+ i) All WMATA IT/OT systems, upon completion of the acquisition process but prior to operational use, are subject to the Assessment & Authorization (A&A) process and shall document or reference selected and implemented cybersecurity supply chain controls and processes annotated in the CSCRMP in System Security Plans (SSPs) affiliated with the A&A process.
[c.i: Implementation Statement]
+
+Related Controls: CA-2, MA-2, MA-6, PE-3, PE-16, PL-8, PM-30, SA-2, SA-3, SA-4, SA-5, SA-8, SA-9, SA-10, SA-15, SC-7, SI-7, SR-6, SR-9, SR-11
+
+d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Supply Chain Controls and Processes
a. Establish a process or processes to identify and address weaknesses or deficiencies in the supply chain elements and processes of [Assignment: organization-defined system or system component] in coordination with [Assignment: organization-defined supply chain personnel];
b. Employ the following controls to protect against supply chain risks to the system, system component, or system service and to limit the harm or consequences from supply chain-related events: [Assignment: organization-defined supply chain controls]; and
c. Document the selected and implemented supply chain processes and controls in [Selection: security and privacy plans; supply chain risk management plan; [Assignment: organization-defined document]].
Discussion:Supply chain elements include organizations, entities, or tools employed for the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of systems and system components. Supply chain processes include hardware, software, and firmware development processes; shipping and handling procedures; personnel security and physical security programs; configuration management tools, techniques, and measures to maintain provenance; or other programs, processes, or procedures associated with the development, acquisition, maintenance and disposal of systems and system components. Supply chain elements and processes may be provided by organizations, system integrators, or external providers. Weaknesses or deficiencies in supply chain elements or processes represent potential vulnerabilities that can be exploited by adversaries to cause harm to the organization and affect its ability to carry out its core missions or business functions. Supply chain personnel are individuals with roles and responsibilities in the supply chain.' WHERE [Requirement_Id] = 38009
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ a diverse set of sources for all system components and services.
[Implementation Statement]
+
+OT Systems Only:
+Using a diverse set of suppliers in the OT environment can improve reliability by reducing common cause failures. This is not always possible since some technologies have limited supply options that meet the operational requirements.
[OT Systems Only: Implementation Statement]
+
+NIST 800-82 Rev 3:
+OT Discussion: Using a diverse set of suppliers in the OT environment can improve reliability by reducing common cause failures. This is not always possible since some technologies have limited supply options that meet the operational requirements.
[NIST 800-82 Rev 3: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Supply Chain Controls and Processes | Diverse Supply Base
Employ a diverse set of sources for the following system components and services: [Assignment: organization-defined system components and services].
Discussion:Diversifying the supply of systems, system components, and services can reduce the probability that adversaries will successfully identify and target the supply chain and can reduce the impact of a supply chain event or compromise. Identifying multiple suppliers for replacement components can reduce the probability that the replacement component will become unavailable. Employing a diverse set of developers or logistics service providers can reduce the impact of a natural disaster or other supply chain event. Organizations consider designing the system to include diverse materials and components.' WHERE [Requirement_Id] = 38010
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'In order to limit harm from potential adversaries identifying and targeting the organizational supply chain, evaluate vendors prior to contract award and throughout the lifecycle of the contract for controls designed to reduce the probability of adversaries successfully identifying and targeting the supply chain, including:
[Implementation Statement]
+
+(1) Avoiding the purchase of custom or non-standardized configurations;
[1: Implementation Statement]
+(2) Employing approved vendor lists with standing reputations in the industry;
[2: Implementation Statement]
+(3) Following pre-agreed maintenance schedules and update and patch delivery mechanisms;
[3: Implementation Statement]
+(4) Maintaining a contingency plan in case of a supply chain event;
[4: Implementation Statement]
+(5) Using procurement carve-outs that provide exclusions to commitments or obligations; and
[5: Implementation Statement]
+(6) Minimizing the time between purchase decisions and delivery.
[6: Implementation Statement]
+
+
+', [Supplemental_Info]=N' Limitation of Harm
Employ the following controls to limit harm from potential adversaries identifying and targeting the organizational supply chain: [Assignment: organization-defined controls].
Discussion:Controls that can be implemented to reduce the probability of adversaries successfully identifying and targeting the supply chain include avoiding the purchase of custom or non-standardized configurations, employing approved vendor lists with standing reputations in industry, following pre-agreed maintenance schedules and update and patch delivery mechanisms, maintaining a contingency plan in case of a supply chain event, using procurement carve-outs that provide exclusions to commitments or obligations, using diverse delivery routes, and minimizing the time between purchase decisions and delivery.' WHERE [Requirement_Id] = 38011
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Ensure that the controls included in the contracts of prime contractors are also included in the contracts of subcontractors.
[Implementation Statement]
+
+Related Controls: SR-5, SR-8
+
+
+', [Supplemental_Info]=N' Sub-Tier Flow Down
Ensure that the controls included in the contracts of prime contractors are also included in the contracts of subcontractors.
Discussion:To manage supply chain risk effectively and holistically, it is important that organizations ensure that supply chain risk management controls are included at all tiers in the supply chain. This includes ensuring that Tier 1 (prime) contractors have implemented processes to facilitate the “flow down” of supply chain risk management controls to sub-tier contractors. The controls subject to flow down are identified in SR-3b.' WHERE [Requirement_Id] = 38012
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Monitoring and documenting the chronology of the origin, development, ownership, location, and changes to a system or system component and the associated data, including personnel and processes used to interact with or make modifications to the system, component, or associated data. Document, monitor, and maintain valid provenance for systems, system components, and associated data, including procedures for allocating responsibilities for the creation, maintenance, and monitoring of provenance for systems and system components; transferring provenance documentation and responsibility between organizations; and preventing and monitoring for unauthorized changes to the provenance records.
[a: Implementation Statement]
+
+Related Controls: CM-8, MA-2, MA-6, RA-9, SA-3, SA-8, SI-4
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Provenance
Document, monitor, and maintain valid provenance of the following systems, system components, and associated data: [Assignment: organization-defined systems, system components, and associated data].
Discussion:Every system and system component has a point of origin and may be changed throughout its existence. Provenance is the chronology of the origin, development, ownership, location, and changes to a system or system component and associated data. It may also include personnel and processes used to interact with or make modifications to the system, component, or associated data. Organizations consider developing procedures (see SR-1) for allocating responsibilities for the creation, maintenance, and monitoring of provenance for systems and system components; transferring provenance documentation and responsibility between organizations; and preventing and monitoring for unauthorized changes to the provenance records. Organizations have methods to document, monitor, and maintain valid provenance baselines for systems, system components, and related data. These actions help track, assess, and document any changes to the provenance, including changes in supply chain elements or configuration, and help ensure non-repudiation of provenance information and the provenance change records. Provenance considerations are addressed throughout the system development life cycle and incorporated into contracts and other arrangements, as appropriate.' WHERE [Requirement_Id] = 38013
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish and maintain unique identification (methods sufficient to support an investigation in case of a supply chain change (e.g., if a supply company is purchased), compromise, or event) of cybersecurity supply chain elements, processes, and personnel associated with the identified system and critical system components, including:
[Implementation Statement]
+
+(1) Cybersecurity supply chain elements to include organizations, entities, or tools used for the research and development, design, manufacturing, acquisition, delivery, integration, operations, maintenance, and disposal of systems and system components.
[1: Implementation Statement]
+(2) Cybersecurity supply chain processes to include development processes for hardware, software, and firmware; shipping and handling procedures; configuration management tools, techniques, and measures to maintain provenance; personnel and physical security programs; or other programs, processes, or procedures associated with the production and distribution of supply chain elements.
[2: Implementation Statement]
+(3) Cybersecurity supply chain personnel to include individuals with specific roles and responsibilities related to the secure research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of a system or system component.
[3: Implementation Statement]
+
+Related Controls: IA-2, IA-8, PE-16
+
+
+', [Supplemental_Info]=N' Identity
Establish and maintain unique identification of the following supply chain elements, processes, and personnel associated with the identified system and critical system components: [Assignment: organization-defined supply chain elements, processes, and personnel associated with organization-defined systems and critical system components].
Discussion:Knowing who and what is in the supply chains of organizations is critical to gaining visibility into supply chain activities. Visibility into supply chain activities is also important for monitoring and identifying high-risk events and activities. Without reasonable visibility into supply chains elements, processes, and personnel, it is very difficult for organizations to understand and manage risk and reduce their susceptibility to adverse events. Supply chain elements include organizations, entities, or tools used for the research and development, design, manufacturing, acquisition, delivery, integration, operations, maintenance, and disposal of systems and system components. Supply chain processes include development processes for hardware, software, and firmware; shipping and handling procedures; configuration management tools, techniques, and measures to maintain provenance; personnel and physical security programs; or other programs, processes, or procedures associated with the production and distribution of supply chain elements. Supply chain personnel are individuals with specific roles and responsibilities related to the secure the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of a system or system component. Identification methods are sufficient to support an investigation in case of a supply chain change (e.g. if a supply company is purchased), compromise, or event.' WHERE [Requirement_Id] = 38014
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish and maintain unique identification (e.g., system components may be labeled using serial numbers or tagged using radio-frequency identification tags) of systems and critical system components for tracking through the supply chain.
[Implementation Statement]
+
+Related Controls: IA-2, IA-8, PE-16
+
+
+', [Supplemental_Info]=N' Track and Trace
Establish and maintain unique identification of the following systems and critical system components for tracking through the supply chain: [Assignment: organization-defined systems and critical system components].
Discussion:Tracking the unique identification of systems and system components during development and transport activities provides a foundational identity structure for the establishment and maintenance of provenance. For example, system components may be labeled using serial numbers or tagged using radio-frequency identification tags. Labels and tags can help provide better visibility into the provenance of a system or system component. A system or system component may have more than one unique identifier. Identification methods are sufficient to support a forensic investigation after a supply chain compromise or event.' WHERE [Requirement_Id] = 38015
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ controls (e.g., optical and nanotechnology tagging, physically unclonable functions, side-channel analysis, cryptographic hash verifications or digital signatures, and visible anti-tamper labels or stickers) to validate that the system or system component received is genuine and has not been altered, including:
[Implementation Statement]
+
+(1) Monitoring for out of specification performance, which can be an indicator of tampering or counterfeits.
[1: Implementation Statement]
+(2) Leveraging supplier and contractor processes for validating that a system or component is genuine and has not been altered and for replacing a suspect system or component.
[2: Implementation Statement]
+(3) Monitoring for tampering that may be visible and addressable before accepting delivery, such as inconsistent packaging, broken seals, and incorrect labels.
[3: Implementation Statement]
+
+Related Controls: AT-3, SR-9, SR-10, SR-11
+
+
+', [Supplemental_Info]=N' Validate as Genuine and Not Altered
Employ the following controls to validate that the system or system component received is genuine and has not been altered: [Assignment: organization-defined controls].
Discussion:For many systems and system components, especially hardware, there are technical means to determine if the items are genuine or have been altered, including optical and nanotechnology tagging, physically unclonable functions, side-channel analysis, cryptographic hash verifications or digital signatures, and visible anti-tamper labels or stickers. Controls can also include monitoring for out of specification performance, which can be an indicator of tampering or counterfeits. Organizations may leverage supplier and contractor processes for validating that a system or component is genuine and has not been altered and for replacing a suspect system or component. Some indications of tampering may be visible and addressable before accepting delivery, such as inconsistent packaging, broken seals, and incorrect labels. When a system or system component is suspected of being altered or counterfeit, the supplier, contractor, or original equipment manufacturer may be able to replace the item or provide a forensic capability to determine the origin of the counterfeit or altered item. Organizations can provide training to personnel on how to identify suspicious system or component deliveries.' WHERE [Requirement_Id] = 38016
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'1) Conduct assessments to ensure the integrity of the system and system components by validating the internal composition and provenance of critical or mission-essential technologies, products, and services. For microelectronics, this includes material composition of components. For software, this includes the composition of open-source and proprietary code, including the version of the component at a given point in time.
[1: Implementation Statement]
+2) The validation of the internal composition and provenance shall be achieved by requiring various evidentiary artifacts or records from manufacturers and suppliers which are produced during the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of technology, products, and services. Evidentiary artifacts include, but are not limited to, software identification (SWID) tags, software component inventory, the manufacturers’ declarations of platform attributes (e.g., serial numbers, hardware component inventory), and measurements (e.g., firmware hashes) that are tightly bound to the hardware itself.
[2: Implementation Statement]
+
+Related Controls: RA-3
+
+
+', [Supplemental_Info]=N' Supply Chain Integrity – Pedigree
Employ [Assignment: organization-defined controls] and conduct [Assignment: organization-defined analysis] to ensure the integrity of the system and system components by validating the internal composition and provenance of critical or mission-essential technologies, products, and services.
Discussion:Authoritative information regarding the internal composition of system components and the provenance of technology, products, and services provides a strong basis for trust. The validation of the internal composition and provenance of technologies, products, and services is referred to as the pedigree. For microelectronics, this includes material composition of components. For software this includes the composition of open-source and proprietary code, including the version of the component at a given point in time. Pedigrees increase the assurance that the claims suppliers assert about the internal composition and provenance of the products, services, and technologies they provide are valid. The validation of the internal composition and provenance can be achieved by various evidentiary artifacts or records that manufacturers and suppliers produce during the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of technology, products, and services. Evidentiary artifacts include, but are not limited to, software identification (SWID) tags, software component inventory, the manufacturers’ declarations of platform attributes (e.g., serial numbers, hardware component inventory), and measurements (e.g., firmware hashes) that are tightly bound to the hardware itself.' WHERE [Requirement_Id] = 38017
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'1) Employ the following acquisition strategies, contract tools, and procurement methods to protect against, identify, and mitigate supply chain risks:
[1: Implementation Statement]
+2) All solicitations shall be reviewed by DMCS and shall include cybersecurity specifications and the cybersecurity questionnaire as applicability is determined by DMCS. Where cybersecurity requirements have been applied to a solicitation, cybersecurity shall be included as an element of the selection criteria.
[2: Implementation Statement]
+3) Acquisition strategies to include:
[3: Implementation Statement]
+ a. Requiring tamper-evident packaging or using trusted or controlled distribution;
[3.a: Implementation Statement]
+ b. Training, education, and awareness programs for personnel regarding supply chain risk, available mitigation strategies, and when the programs should be employed; and
[3.b: Implementation Statement]
+ c. Methods for reviewing and protecting development plans, documentation, and evidence commensurate with the security and privacy requirements of the organization.
[3.c: Implementation Statement]
+
+ Related Controls: AT-3, SA-2, SA-3, SA-4, SA-5, SA-8, SA-9, SA-10, SA-15, SR-6, SR-9, SR-10, SR-11
+
+ d. Security Controls Enhancement(s):
[d: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Acquisition Strategies, Tools, and Methods
Employ the following acquisition strategies, contract tools, and procurement methods to protect against, identify, and mitigate supply chain risks: [Assignment: organization-defined acquisition strategies, contract tools, and procurement methods].
Discussion:The use of the acquisition process provides an important vehicle to protect the supply chain. There are many useful tools and techniques available, including obscuring the end use of a system or system component, using blind or filtered buys, requiring tamper-evident packaging, or using trusted or controlled distribution. The results from a supply chain risk assessment can guide and inform the strategies, tools, and methods that are most applicable to the situation. Tools and techniques may provide protections against unauthorized production, theft, tampering, insertion of counterfeits, insertion of malicious software or backdoors, and poor development practices throughout the system development life cycle. Organizations also consider providing incentives for suppliers who implement controls, promote transparency into their processes and security and privacy practices, provide contract language that addresses the prohibition of tainted or counterfeit components, and restrict purchases from untrustworthy suppliers. Organizations consider providing training, education, and awareness programs for personnel regarding supply chain risk, available mitigation strategies, and when the programs should be employed. Methods for reviewing and protecting development plans, documentation, and evidence are commensurate with the security and privacy requirements of the organization. Contracts may specify documentation protection requirements.' WHERE [Requirement_Id] = 38018
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Ensure an adequate supply of critical system components through the following cybersecurity controls pertaining to HVA, as determined by DMCS:
[Implementation Statement]
+
+(1) Track systems and component mean time to failure to mitigate the loss of temporary or permanent system function;
[1: Implementation Statement]
+(2) The use of multiple suppliers throughout the supply chain for the identified critical components;
[2: Implementation Statement]
+(3) Stockpiling spare components to ensure operation during mission-critical times; and
[3: Implementation Statement]
+(4) The identification of functionally identical or similar components that may be used, if necessary.
[4: Implementation Statement]
+
+OT Systems Only:
+Vendor relationships and spare parts strategies are developed to ensure an adequate supply of critical components is available to meet operational needs.
[OT Systems Only: Implementation Statement]
+
+Related Controls: RA-9
+
+NIST 800-82 Rev 3:
+OT Discussion: Vendor relationships and spare parts strategies are developed to ensure that an adequate supply of critical components is available to meet operational needs.
[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]
+
+Rationale for adding SR-5 (1) to MOD and HIGH baselines: OT systems and system components are often built for purpose and have a limited number of vendors or suppliers for a specific component. Organizations identify critical OT system components and controls to ensure an adequate supply in the event of supply chain disruptions.
[NIST 800-82 Rev 3_Rationale: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Acquisition Strategies, Tools, and Methods |Adequate Supply
Employ the following controls to ensure an adequate supply of [Assignment: organization-defined critical system components]: [Assignment: organization-defined controls].
Discussion:Adversaries can attempt to impede organizational operations by disrupting the supply of critical system components or corrupting supplier operations. Organizations may track systems and component mean time to failure to mitigate the loss of temporary or permanent system function. Controls to ensure that adequate supplies of critical system components include the use of multiple suppliers throughout the supply chain for the identified critical components, stockpiling spare components to ensure operation during mission-critical times, and the identification of functionally identical or similar components that may be used, if necessary.' WHERE [Requirement_Id] = 38019
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Assess the system, system component, or system service prior to selection, acceptance, modification, or update.
[Implementation Statement]
+
+Related Controls: CA-8, RA-5, SA-11, SI-7
+
+
+', [Supplemental_Info]=N'Assessments Prior to Selection, Acceptance, Modification, or Update
Assess the system, system component, or system service prior to selection, acceptance, modification, or update.
Discussion:Organizational personnel or independent, external entities conduct assessments of systems, components, products, tools, and services to uncover evidence of tampering, unintentional and intentional vulnerabilities, or evidence of non-compliance with supply chain controls. These include malicious code, malicious processes, defective software, backdoors, and counterfeits. Assessments can include evaluations; design proposal reviews; visual or physical inspection; static and dynamic analyses; visual, x-ray, or magnetic particle inspections; simulations; white, gray, or black box testing; fuzz testing; stress testing; and penetration testing (see SR-6(1)). Evidence generated during assessments is documented for follow-on actions by organizations. The evidence generated during the organizational or independent assessments of supply chain elements may be used to improve supply chain processes and inform the supply chain risk management process. The evidence can be leveraged in follow-on assessments. Evidence and other documentation may be shared in accordance with organizational agreements.' WHERE [Requirement_Id] = 38020
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Assess and review the supply chain-related risks associated with suppliers or contractors and the system, system component, or system service they provide at the discretion of DMCS.
[a: Implementation Statement]
+
+Related Controls: SR-3, SR-5
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Supplier Assessments and Reviews
Assess and review the supply chain-related risks associated with suppliers or contractors and the system, system component, or system service they provide [Assignment: organization-defined frequency].
Discussion:An assessment and review of supplier risk includes security and supply chain risk management processes, foreign ownership, control or influence (FOCI), and the ability of the supplier to effectively assess subordinate second-tier and third-tier suppliers and contractors. The reviews may be conducted by the organization or by an independent third party. The reviews consider documented processes, documented controls, all-source intelligence, and publicly available information related to the supplier or contractor. Organizations can use open-source information to monitor for indications of stolen information, poor development and quality control practices, information spillage, or counterfeits. In some cases, it may be appropriate or required to share assessment and review results with other organizations in accordance with any applicable rules, policies, or inter-organizational agreements or contracts.' WHERE [Requirement_Id] = 38021
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ organizational analysis; independent third-party analysis; organizational testing; independent third-party testing of systems, system components, or system services, which includes:
[Implementation Statement]
+
+(1) Supply chain elements including organizations, entities, or tools that are used for the research and development, design, manufacturing, acquisition, delivery, integration, operations, maintenance, and disposal of systems, system components, or system services.
[1: Implementation Statement]
+(2) Supply chain processes including supply chain risk management programs; SCRM strategies and implementation plans; personnel and physical security programs; hardware, software, and firmware development processes; configuration management tools, techniques, and measures to maintain provenance; shipping and handling procedures; and programs, processes, or procedures associated with the production and distribution of supply chain elements.
[2: Implementation Statement]
+(3) Supply chain actors including individuals with specific roles and responsibilities in the supply chain.
[3: Implementation Statement]
+
+Related Controls: CA-8, SI-4
+
+
+', [Supplemental_Info]=N' Testing and Analysis
Employ [Selection (one or more): organizational analysis; independent third-party analysis; organizational testing; independent third-party testing] of the following supply chain elements, processes, and actors associated with the system, system component, or system service: [Assignment: organization-defined supply chain elements, processes, and actors].
Discussion:Relationships between entities and procedures within the supply chain, including development and delivery, are considered. Supply chain elements include organizations, entities, or tools that are used for the research and development, design, manufacturing, acquisition, delivery, integration, operations, maintenance, and disposal of systems, system components, or system services. Supply chain processes include supply chain risk management programs; SCRM strategies and implementation plans; personnel and physical security programs; hardware, software, and firmware development processes; configuration management tools, techniques, and measures to maintain provenance; shipping and handling procedures; and programs, processes, or procedures associated with the production and distribution of supply chain elements. Supply chain actors are individuals with specific roles and responsibilities in the supply chain. The evidence generated and collected during analyses and testing of supply chain elements, processes, and actors is documented and used to inform organizational risk management activities and decisions.' WHERE [Requirement_Id] = 38022
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ the following Operations Security (OPSEC) controls to protect supply chain-related information for the system, system component, or system service, including identifying critical information, analyzing friendly actions related to operations, and other activities to identify actions that can be observed by potential adversaries, determining indicators that potential adversaries might obtain that could be interpreted or pieced together to derive information in sufficient time to cause harm to WMATA, implementing safeguards or countermeasures to eliminate or reduce exploitable vulnerabilities and risk to an acceptable level, and considering how aggregated information may expose users or specific uses of the supply chain. Supply chain information includes user identities; uses for systems, system components, and system services; supplier identities; security and privacy requirements; system and component configurations; supplier processes; design specifications; and testing and evaluation results.
[Implementation Statement]
+
+
+', [Supplemental_Info]=N'Supply Chain Operations Security
Employ the following Operations Security (OPSEC) controls to protect supply chain-related information for the system, system component, or system service: [Assignment: organization-defined Operations Security (OPSEC) controls].
Discussion:Supply chain OPSEC expands the scope of OPSEC to include suppliers and potential suppliers. OPSEC is a process that includes identifying critical information, analyzing friendly actions related to operations and other activities to identify actions that can be observed by potential adversaries, determining indicators that potential adversaries might obtain that could be interpreted or pieced together to derive information in sufficient time to cause harm to organizations, implementing safeguards or countermeasures to eliminate or reduce exploitable vulnerabilities and risk to an acceptable level, and considering how aggregated information may expose users or specific uses of the supply chain. Supply chain information includes user identities; uses for systems, system components, and system services; supplier identities; security and privacy requirements; system and component configurations; supplier processes; design specifications; and testing and evaluation results. Supply chain OPSEC may require organizations to withhold mission or business information from suppliers and may include the use of intermediaries to hide the end use or users of systems, system components, or system services.' WHERE [Requirement_Id] = 38023
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Establish agreements and procedures with entities involved in the supply chain for the system, system component, or system service for the notification of supply chain compromises; and the sharing of results from assessments, audits or other sources that can assist the mitigation and resolution of supply chain risks or improve its processes.
[Implementation Statement]
+
+Related Controls: IR-4, IR-6, IR-8
+
+
+', [Supplemental_Info]=N'Notification Agreements
Establish agreements and procedures with entities involved in the supply chain for the system, system component, or system service for the [Selection (one or more): notification of supply chain compromises; results of assessments or audits; [Assignment: organization-defined information]].
Discussion:The establishment of agreements and procedures facilitates communications among supply chain entities. Early notification of compromises and potential compromises in the supply chain that can potentially adversely affect or have adversely affected organizational systems or system components is essential for organizations to effectively respond to such incidents. The results of assessments or audits may include open-source information that contributed to a decision or result and could be used to help the supply chain entity resolve a concern or improve its processes.' WHERE [Requirement_Id] = 38024
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'a. Implement a tamper protection program for the system, system component, or system service.
[a: Implementation Statement]
+
+Related Controls: PE-3, PM-30, SA-15, SI-4, SI-7, SR-3, SR-4, SR-5, SR-10, SR-11
+
+b. Security Controls Enhancement(s):
[b: Implementation Statement]
+
+
+', [Supplemental_Info]=N'Tamper Resistance and Detection
Implement a tamper protection program for the system, system component, or system service.
Discussion:Anti-tamper technologies, tools, and techniques provide a level of protection for systems, system components, and services against many threats, including reverse engineering, modification, and substitution. Strong identification combined with tamper resistance and/or tamper detection is essential to protecting systems and components during distribution and when in use.' WHERE [Requirement_Id] = 38025
+UPDATE [dbo].[NEW_REQUIREMENT] SET [Requirement_Text]=N'Employ anti-tamper technologies, tools, and techniques throughout the system development life cycle.
[Implementation Statement]
+
+Related Controls: SA-3
+
+
+', [Supplemental_Info]=N' Multiple Stages of System Development Life Cycle
Employ anti-tamper technologies, tools, and techniques throughout the system development life cycle.
Discussion:The system development life cycle includes research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal. Organizations use a combination of hardware and software techniques for tamper resistance and detection. Organizations use obfuscation and self-checking to make reverse engineering and modifications more difficult, time-consuming, and expensive for adversaries. The customization of systems and system components can make substitutions easier to detect and therefore limit damage.' WHERE [Requirement_Id] = 38026
+PRINT(N'Operation applied to 519 rows out of 519')
+
+PRINT(N'Update rows in [dbo].[MATURITY_REFERENCES]')
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 172 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I:pg3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 172 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I:pg4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 172 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.3:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 173 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I.B:pg4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 173 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.A:pg47:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 174 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I.B:pg4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 174 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 175 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I.C:pg5:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 175 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.9:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 197 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.Introduction:pg2:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 197 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.3:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 198 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II:pg6:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 198 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.3.1:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 199 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.C:pg50:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 200 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I:pg4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 200 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.Wp.6.2:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 202 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.21:pg43:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 202 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.Wp.6.34.c:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 203 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.Introduction:pg2:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 203 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.3.2:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 218 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.5:pg14:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 218 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.6:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 219 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.5:pg14:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 219 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.6:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 220 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.5:pg14:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 220 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.6:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 221 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.10:pg21:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 221 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.11:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 234 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.21:pg43:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 234 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.34:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 250 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I.B:pg4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 250 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 251 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I.B:pg4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 251 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.17:pg38-39:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 251 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.27.g:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 252 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.A:pg7:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 252 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C:pg11:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 252 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.3.d:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 261 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.IV.A.2(d):pg56:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 263 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.22:pg43:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 263 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.35(c):' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 264 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.IV.A.2(d):pg56:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 264 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.8:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 279 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.1:pg11:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 280 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I.C:pg5:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 289 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.B:pgs4-5:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 289 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.5.l:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 290 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.7(e):pg17:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 290 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.8.f:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 291 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.7(e):pg17:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 291 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.8.f:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 292 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.16(a):' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 292 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.16:pg36:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 292 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.26:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 304 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.7(e):pg17:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 313 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C:pg11:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 313 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.3.f:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 314 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.A:pg47:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 314 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.3.f:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 315 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.A:pg48:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 315 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.3.a.d:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 325 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.22:pg44:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 325 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.35:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 326 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.22:pg44:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 326 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.35:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 343 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.D:pg45:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 343 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.7.1:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 344 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.D:pg.51:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 345 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.D:pg.51:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 358 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.9:pg19:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 358 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.1.a:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 359 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.17:pg39:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 359 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.27(g):' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 360 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.12:pg26:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 360 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.16:pg37:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 361 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.12:pg26:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 361 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.17:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 362 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.10(c):pg23:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 362 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.14:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 363 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.B.6.13:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 363 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.10(b):pg23:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 364 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.10:pg21:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 364 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.11:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 365 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.15(a):pg32:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 365 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.21:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 366 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.16:pg36:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 367 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.9(a):pg20:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 367 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.9(a):pg21:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 389 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.10(b):pg23:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 389 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.7:pg15:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 389 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.13:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 390 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.7:pg15:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 390 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.5.g:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 391 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.15:pg31:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 391 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.20:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 392 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.15:pg31:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 392 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.Wp.6.8.c:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 393 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.7(b):pg16:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 393 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.8:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 394 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.IS.II.C.15(b):pg33:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 394 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.22:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 395 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.7:pg15:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 395 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.1.k:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 396 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.15:pg31:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 396 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.20:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 397 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.16:pg36:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 397 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.22:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 398 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.9:pg19:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 398 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.10.a:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 399 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.8:pg18:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 399 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.9:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 400 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.19:pg41:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 400 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.30:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 401 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.13(b):pg28:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 401 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.30:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 402 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.13(a):pg27:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 402 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.30:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 403 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.15(c):pg33:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 403 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.23:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 405 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.12:pg26:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 405 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.11:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 406 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.16:pg36:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 406 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.22.a:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 407 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.13(c):pg28:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 407 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.18.e:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 427 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.13(a):pg27:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 427 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.13(d):pg29:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 427 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.18:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 441 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.17:pg38:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 441 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.27:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 442 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.10:pg21:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 442 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.15:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 454 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.17:pg38:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 454 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.4.2.d:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 455 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.12:pg26:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 455 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.17:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 456 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III:pg46:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 456 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.1.a:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 457 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.12:pg26:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 457 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.17:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 471 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.12:pg26:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 471 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.17:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 473 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.C.22:pg44:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 473 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.21(f):' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 475 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.15:pg31:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 475 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.4.f:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 493 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.C:pg49:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 493 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.4.e:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 494 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.B:pg48:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 494 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.5:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 495 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.Introduction:pg2:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 496 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.B:pg48:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 496 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.4.b:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 497 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.8:pg18:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 497 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.9:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 508 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.10(d):pg24:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 508 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.15:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 521 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.IV.A.4:pg56:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 521 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.1.2.a:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 532 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.6:pg14-15:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 532 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.7:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 533 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.6:pg14-15:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 533 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.7:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 534 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.9:pg20:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 534 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.10.b:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 535 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.9:pg20:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 535 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.10.b:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 548 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.20:pg42:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 548 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.31:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 559 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.20:pg42:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 559 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.31(c):' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 560 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.20:pg42:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 560 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.31(c):' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 561 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.20:pg42:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 561 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.31.e:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 563 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.20:pg42:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 563 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.31(f) & (g):' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 573 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.20:pg42:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 573 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.31.e:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 584 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III:pg46:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 584 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.7:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 585 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.D:pg51:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 585 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.6.e:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 586 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.D:pg52:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 586 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.6.c:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 588 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.21:pg43:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 588 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.34:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 603 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.21:pg43:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 623 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.15(a):pg32:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 623 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.C.15(b):pg33:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 623 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.6.22.f:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 624 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.II.D:pg45:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 624 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.7.1:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 625 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.D:pg50:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 625 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.6.a:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 635 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.D:pg52:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 635 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.6.b:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 653 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.C:pg50:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 653 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.5.h:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 654 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.III.D:pg51:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 654 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.8.6.f:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 655 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.I.B:pg4:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 655 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'IS.WP.2.4.e:' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1291 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1292 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1292 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1293 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1293 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1293 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1293 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1293 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1293 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1293 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1294 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1294 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1294 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1294 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1294 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1294 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1295 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1295 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1295 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1296 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1296 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1296 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1297 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1297 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1299 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1300 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1301 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1302 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1302 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1303 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1303 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1304 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.EA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1305 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1306 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1306 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1307 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1307 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1307 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1307 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1308 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1309 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1310 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1311 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1311 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1312 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1312 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1313 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1313 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1314 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1315 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1315 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1316 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1317 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1317 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1318 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1318 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1319 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1319 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1320 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1320 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1320 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1321 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1321 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1321 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1322 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1322 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1323 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1323 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1324 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1324 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1325 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1325 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID-GV.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1325 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1326 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1328 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1328 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1328 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1328 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1328 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1328 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1328 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1329 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1329 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1329 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1329 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1329 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1329 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1329 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1332 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1332 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1333 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1333 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1334 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1334 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1335 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1335 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1336 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1336 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1337 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1337 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1338 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1339 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1340 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1340 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1341 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1341 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1341 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1342 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1343 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1344 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1345 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1345 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1346 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1346 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1347 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1347 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1347 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1347 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1348 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1350 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1351 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1352 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1352 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1352 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1353 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1354 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1355 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1355 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1356 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1356 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1356 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1357 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1357 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1357 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1358 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1359 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1359 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1359 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1359 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1360 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1360 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1360 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1361 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1361 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1361 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1361 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1361 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1362 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1362 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1362 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1363 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1363 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1364 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1364 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1365 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1365 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1365 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1366 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1366 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1366 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1366 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1366 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1367 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1367 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1368 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1368 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1368 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1368 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1368 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1369 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1369 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1370 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1370 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1370 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1371 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1371 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1371 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1372 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1372 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1373 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1373 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1373 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1374 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1374 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1374 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1375 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1376 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1376 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1377 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1378 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1823 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1824 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1824 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1825 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1825 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1826 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1826 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1827 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1828 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1828 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1828 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1828 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1829 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1830 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1830 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1830 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1830 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1830 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1830 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1831 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1831 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1832 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1832 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1833 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1833 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1834 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1835 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1835 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1836 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1836 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1836 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1837 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1837 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1837 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1838 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1838 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1838 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1838 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1839 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1839 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1839 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1840 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1841 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1842 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1842 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1842 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1842 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1842 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1842 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1843 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1843 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1843 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1843 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1843 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1843 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1844 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1844 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1845 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1845 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1846 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1846 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1846 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1846 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1846 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1846 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1848 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1848 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1848 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1848 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1848 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1848 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1849 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1850 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1851 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1851 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1852 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1853 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1853 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1854 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1854 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1854 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1855 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1855 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1856 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1856 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1857 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1857 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1858 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1858 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1858 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1858 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-17' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1858 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-18' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1860 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1861 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1861 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1862 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1862 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1863 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1863 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 1863 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1864 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1865 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1865 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1866 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1866 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1866 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1867 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1868 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1868 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1869 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1869 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1869 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1870 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1871 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1872 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1873 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1874 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1874 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1875 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1876 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1877 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1881 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1882 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1883 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1884 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1885 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1886 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1886 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1887 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1888 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1889 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1890 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 1891 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3188 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3188 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3188 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3188 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3188 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3188 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3189 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3189 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3189 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3189 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3189 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3189 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3190 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3190 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3191 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3191 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3192 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3192 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-19' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-31' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3194 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3194 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU Family' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3195 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3195 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3195 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3195 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3195 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3196 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3196 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3196 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-18' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3196 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3196 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3196 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3197 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3197 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS Family' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3198 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3198 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3198 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3199 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3204 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3205 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3210 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3211 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3211 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3211 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3211 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3211 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3212 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3212 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3213 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3213 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3213 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3214 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3214 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3214 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3214 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3214 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3215 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3216 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3217 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3218 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3218 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3219 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3220 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3221 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3222 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3223 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3224 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3224 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3228 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3228 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3232 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3233 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3233 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3234 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3234 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-17' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3236 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3237 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3237 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3237 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3238 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3238 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3238 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3239 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3239 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3239 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3239 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3240 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3240 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3241 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3241 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3241 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3242 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3242 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3243 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3243 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3244 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3244 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3244 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3244 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3245 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3245 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3245 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3245 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3246 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3246 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3247 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3248 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3248 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3249 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3250 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3251 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3251 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3251 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3251 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3251 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3252 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3252 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3252 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3252 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3252 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3253 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3253 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3253 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3253 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3253 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3254 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3254 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3255 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3255 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3255 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3256 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3256 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3256 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3256 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.MA' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3256 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3257 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3258 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3259 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3260 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3260 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3261 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3262 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3263 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3264 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3265 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3266 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3271 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3276 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3276 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3277 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3277 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-18' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3277 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-20' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3278 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3279 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3283 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3283 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3283 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3287 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3287 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3287 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3291 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3295 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3299 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3299 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3303 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3304 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3304 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3304 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3305 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3306 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3306 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3307 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3308 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3308 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3309 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3309 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3309 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3310 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3311 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3312 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3313 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3314 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3314 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3315 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3316 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3317 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3318 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3319 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3320 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3320 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3320 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3321 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3321 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3321 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3321 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3322 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3322 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3323 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3323 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3324 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3324 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3324 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3324 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3324 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3325 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3326 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3327 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3328 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3329 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3330 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3331 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3332 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3332 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3333 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3334 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.AE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3335 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3335 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3336 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3337 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3337 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3338 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3338 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3338 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3339 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3339 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3340 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3340 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3340 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3341 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3341 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3341 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3342 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3342 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3342 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3342 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3343 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3344 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3344 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3345 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3345 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3345 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3346 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3347 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3348 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3349 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3350 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3350 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3351 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.DP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3351 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3352 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3353 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3354 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3355 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3356 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3356 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3361 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3362 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3362 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3362 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3363 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3363 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3363 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3364 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3365 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3365 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3366 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3367 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3367 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3368 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3368 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3369 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3369 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3370 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3370 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3371 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3371 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3371 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3371 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3372 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3372 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3372 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3373 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3373 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3374 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3374 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3375 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3375 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3375 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3376 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3377 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3377 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3378 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3378 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3378 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3379 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3380 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3381 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3382 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3383 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3383 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3384 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3385 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3386 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3387 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3388 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3389 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3389 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3390 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3390 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3391 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3391 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3391 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3392 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3392 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3393 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3393 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3394 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3394 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3395 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3395 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3396 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3396 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3396 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3397 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3398 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3399 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3400 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3400 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3401 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3401 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3402 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3403 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3403 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3404 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3404 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3404 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3405 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3406 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3407 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3408 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3409 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3409 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3410 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3411 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3412 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3413 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3414 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3415 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3415 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3416 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3416 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3417 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3417 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3418 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3418 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3418 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3419 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3419 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3419 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3420 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3420 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3420 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3421 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3421 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3421 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3422 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3422 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3422 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3423 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3423 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3424 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3425 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3426 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3427 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3428 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.BE-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3428 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3429 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3430 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3430 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3431 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3431 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3431 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3432 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3433 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3434 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3435 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3436 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3436 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3437 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3438 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3439 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3440 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3441 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3442 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3443 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3444 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3445 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3446 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3447 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3448 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3448 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3449 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3449 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3450 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3450 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3450 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3451 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3451 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3451 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3452 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3452 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3452 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3453 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3454 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3454 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3455 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3455 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3455 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3456 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3457 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3458 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3459 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3460 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3460 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3461 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3462 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3463 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3464 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3465 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-19' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-24' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 3469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4785 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4786 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.11.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4788 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4790 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.9.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4791 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.9.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4792 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4793 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4794 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4795 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4796 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4797 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4798 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4799 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.11.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4800 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4801 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4802 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4803 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4804 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4805 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4806 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4807 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4808 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4809 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4810 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4811 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4812 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.6.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4813 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.6.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4814 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4815 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.11.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4819 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4820 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4821 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4822 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4823 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4824 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4825 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4828 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4829 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.15' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4830 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4831 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4832 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4833 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4834 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4835 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4836 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4837 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4838 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4839 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4840 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4842 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4843 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4844 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4852 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4853 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4854 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4855 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.2.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4856 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.2.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4857 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.2.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4859 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.19' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4860 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.15' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4861 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.18' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4862 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4863 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4864 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4865 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4866 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.17' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4867 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4868 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4869 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4870 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4871 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4872 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.8 ' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4873 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4874 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4875 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.21' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4876 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4877 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.22' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4878 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.20' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4879 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4880 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4882 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4883 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4884 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.6.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4885 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4886 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4887 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4888 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4889 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4890 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4891 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4892 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4893 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4894 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4895 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4896 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4897 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4898 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4899 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4900 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4901 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4902 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4903 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4904 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4906 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.12.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4907 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.12.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4908 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.12.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4909 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.12.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4910 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4911 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 4912 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5049 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5050 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-20' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5051 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-20' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5052 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-19(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5053 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-19' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5054 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5054 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5055 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5056 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5057 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2 (6) ' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5058 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5059 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5059 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-9(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5060 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5061 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5062 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5063 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5064 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5065 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5066 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-18' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5067 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5068 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5069 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5070 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5071 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5072 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5073 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5073 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5074 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5074 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5075 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5075 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(20)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5076 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5077 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5078 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5078 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5079 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5079 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5080 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5080 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5081 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5081 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5082 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5083 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5084 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5085 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5086 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5087 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5088 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5089 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5090 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5090 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5091 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5092 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5093 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5094 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5094 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5095 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5096 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5096 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5097 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5098 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5099 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5100 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5101 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4 ' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5102 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5103 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5103 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5104 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5104 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5105 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5105 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5106 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5106 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5107 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5109 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5110 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5111 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5111 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5112 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5112 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5113 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5113 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5114 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5114 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5115 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5116 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5117 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5118 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5119 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5120 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5121 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5122 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5123 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5124 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5126 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5127 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5128 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5129 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5130 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5131 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5132 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5133 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5134 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5135 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5136 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5137 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5138 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5138 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5139 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5140 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5140 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5141 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5142 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5143 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5144 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5145 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5146 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5147 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5148 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5149 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5150 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5150 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5150 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5150 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5151 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5152 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5153 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5154 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5155 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5156 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5157 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5158 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5159 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5160 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5161 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5162 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5163 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-18(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5164 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5165 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5166 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5167 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5168 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5169 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5170 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5171 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5172 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5172 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5173 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5174 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5175 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5176 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5177 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5178 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5179 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5180 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5181 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5182 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5182 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5183 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5184 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5185 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5186 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-20' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5187 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-19 (5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5187 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5188 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-19' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5189 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5190 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5191 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5192 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5193 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-9(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5194 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5195 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 5196 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5196 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5197 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5198 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5199 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5200 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5201 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5202 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5203 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5204 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5204 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5205 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5205 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5206 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5207 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5207 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5208 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5208 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5209 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5210 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5211 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5212 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5213 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5214 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5215 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5216 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5217 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5218 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5218 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5219 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5220 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5221 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5222 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5223 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5223 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5224 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5225 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5226 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5227 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5228 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5229 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5229 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5230 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5230 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5231 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5232 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5233 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5234 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5236 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5237 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5238 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5239 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5240 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5241 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5242 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5243 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5244 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5245 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5246 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5247 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5251 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5252 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5253 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5254 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5255 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5256 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5257 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5258 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5259 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5260 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5261 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5262 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5263 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5264 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5265 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5266 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5267 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5268 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 5269 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5270 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5271 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5272 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.20' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5273 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.22' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5274 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5275 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5276 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5277 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5278 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5278 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5278 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5279 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5280 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5281 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5282 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5283 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5284 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5285 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5286 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5287 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5288 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5289 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5290 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5291 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5292 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5293 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5294 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5295 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5296 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5297 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5298 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5299 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.15' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5300 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5301 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.17' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5302 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.18' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5303 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.19' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5304 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.20' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5305 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.21' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5306 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.22' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5307 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.2.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5308 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.2.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5309 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.2.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5310 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5311 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5312 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5313 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5314 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5315 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5316 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5317 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5318 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5319 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5320 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5321 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5322 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5323 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5324 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5325 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5326 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5327 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.4.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5328 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5329 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5330 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5331 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5332 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5333 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5334 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5335 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5336 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5337 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5338 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5339 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.6.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5340 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.6.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5341 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.6.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5342 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5343 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5344 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5345 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5346 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5347 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.7.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5348 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5349 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5350 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5351 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5352 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5353 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5354 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5355 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5356 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.8.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5357 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.9.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5358 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.9.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5359 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5360 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5361 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5362 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5363 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5364 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5365 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.11.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5366 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.11.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5367 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.11.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5368 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.12.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5369 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.12.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5370 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.12.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5371 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.12.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5372 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5373 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5374 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5375 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5376 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5377 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5378 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5379 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5380 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5381 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5382 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5383 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5384 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5385 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5386 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.15' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5387 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5388 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5389 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5390 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5391 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5392 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5393 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 5394 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.14.7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6200 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6200 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6201 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6202 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6202 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6203 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6203 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6204 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6204 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6205 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(15)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6206 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(15)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6207 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6207 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6208 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6208 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6209 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6209 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6210 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6210 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6211 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6211 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6212 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(11)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6213 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-8(9)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6214 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-32' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6215 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6216 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6217 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6218 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6219 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-22' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6219 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-3(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6219 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-13(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6220 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6221 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6221 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6224 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6225 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6226 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6226 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6227 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6227 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6228 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6228 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(20)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6228 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6229 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6229 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(20)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6229 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6230 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6231 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6232 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6233 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6233 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6233 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6234 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6235 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6236 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6237 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6238 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6238 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(10)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6238 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6239 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6240 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6241 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6242 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6242 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6243 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6243 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6244 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6245 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6246 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6246 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6246 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6247 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6247 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6247 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6247 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6247 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-8(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-18' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6248 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-23' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6249 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-8(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6250 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6251 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6251 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6252 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-6(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6253 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6253 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6253 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6254 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6254 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6254 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6254 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6254 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6255 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6256 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6257 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6258 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6259 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(14)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6260 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6261 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(12)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6261 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6262 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6263 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6264 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6266 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6266 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6266 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6267 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6268 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6269 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6270 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6271 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6272 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6273 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(10)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6274 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(11)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6275 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6276 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-17(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6277 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-3(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6279 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6280 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6281 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-8(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6282 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-8(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6283 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-8(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6284 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6285 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6286 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6287 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(10)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6288 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-8(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6289 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6290 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-17(9)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6292 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-22' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6293 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-7(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6294 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6295 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6296 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-37' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6297 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-47' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6298 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6299 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6300 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6301 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-5(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6302 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6303 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-48' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6303 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-48(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6307 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-8(17)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6308 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-36' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6309 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6310 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6310 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6310 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6311 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6312 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6312 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6313 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6314 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6314 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6315 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6315 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6316 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6316 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6317 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6317 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6318 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6318 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6319 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6319 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6319 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6320 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6321 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6321 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6322 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6323 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6323 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(15)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6324 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6325 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6326 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6327 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6327 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6327 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6328 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6329 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6329 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6329 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6330 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6330 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6330 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6331 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6331 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6331 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6332 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6332 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6332 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6333 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6333 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6333 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6334 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6334 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6334 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6335 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6335 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6335 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6336 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6336 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6336 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6337 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6337 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6337 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6338 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6338 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6338 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6339 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6339 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6339 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6340 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6340 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6340 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6341 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6341 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6341 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6342 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6343 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6343 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6344 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6344 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6344 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6345 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6345 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6345 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6346 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6346 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6346 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6346 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6346 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6346 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6347 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6347 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6347 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6347 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6347 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6347 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6348 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6348 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6348 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6348 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6348 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6348 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6349 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6349 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6349 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6349 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6349 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6349 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6350 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6350 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6350 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6350 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6350 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6350 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6351 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6351 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6351 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6351 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6351 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6351 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6352 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6352 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6352 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6352 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6352 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6352 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6353 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6353 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6353 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6353 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6353 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6353 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6354 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6354 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6354 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6354 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6354 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6354 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6355 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6355 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6355 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6355 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6355 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6355 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6356 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6356 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6356 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6357 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6357 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6357 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6358 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6358 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6358 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6358 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6359 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6359 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6359 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6359 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6360 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6360 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6360 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6360 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6361 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6361 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6361 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6361 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6362 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6362 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6362 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6362 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6363 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6363 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6363 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6363 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6364 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6364 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6364 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6364 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6365 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6365 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6365 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6365 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6366 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6367 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6367 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6367 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6367 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6368 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6368 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6368 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6368 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6369 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6369 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6369 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6369 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6370 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6370 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6370 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6370 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6371 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6371 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6371 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6371 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6372 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6372 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6372 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6372 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6373 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6373 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6373 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6373 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6373 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6374 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6374 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6374 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6374 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6374 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6375 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6375 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6375 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6375 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6375 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6376 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6376 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6376 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6376 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6376 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6377 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6377 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6377 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6378 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6378 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6378 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6379 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6379 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6379 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6381 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6381 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6382 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-28' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6382 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6382 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6383 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6383 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6383 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6384 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6384 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6385 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6385 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6386 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6386 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6387 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6387 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6388 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6388 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6389 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6389 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6390 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6390 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6391 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6391 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6392 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6393 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6394 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6394 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6395 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6396 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6397 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6397 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6397 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6397 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6397 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6397 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6398 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-28' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6398 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6399 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-28' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6399 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6399 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6400 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6400 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6400 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6400 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6401 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-29' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6401 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6402 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6403 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6403 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6404 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6405 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6405 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6406 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6406 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6407 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6408 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6409 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6410 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6411 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-30' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6411 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6411 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6412 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6412 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6413 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6413 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6414 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6414 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6414 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6414 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6415 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6415 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6415 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6415 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6416 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6416 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6416 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6416 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6416 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6416 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(17)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6416 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6416 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-6(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6417 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-5(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6418 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6418 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6418 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6418 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6418 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6418 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(17)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6418 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6418 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-6(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6419 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6419 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6420 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-30' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6420 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6420 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6421 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6421 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6422 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6423 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6423 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6423 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6423 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6423 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6423 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6423 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6423 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6424 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6425 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6426 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6427 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6427 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6427 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6427 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6427 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6427 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6427 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6428 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6428 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6428 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6428 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6428 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6428 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6428 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6429 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6429 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6429 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6429 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6429 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6429 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6429 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6430 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6430 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6430 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6431 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6432 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6432 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6432 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6432 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6440 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6440 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6440 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6441 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6441 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6442 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6442 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6443 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6443 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6443 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6443 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6443 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6443 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6444 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6444 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6444 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6444 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6444 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6444 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6445 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6445 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6446 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6446 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6446 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6447 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6447 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6447 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6448 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6448 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6448 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6449 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6449 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6449 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6450 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6450 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6450 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6451 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6451 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6451 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6452 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6452 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6452 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6452 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6453 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6453 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6453 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6453 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6454 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6454 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6454 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6454 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6455 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-20' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6455 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6456 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-20' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6456 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6457 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6457 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6457 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6457 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6458 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6458 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6458 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6458 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6459 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6459 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6459 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6459 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6460 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6460 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6460 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6460 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-4(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6461 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6461 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6462 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6462 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6463 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6463 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6464 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6464 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6465 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6465 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6466 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6466 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6466 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6467 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6467 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6467 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6468 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6468 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6468 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6469 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6470 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6470 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6470 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6471 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6471 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6471 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6472 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6472 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6472 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6473 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6473 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6473 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6474 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6474 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6474 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-19' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-31' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6475 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6476 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6476 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6477 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6477 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6477 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-3(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6478 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6478 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6478 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6479 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6480 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6481 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(16)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6482 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(16)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6483 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-26' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6484 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-44' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6485 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-44' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6486 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6486 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6487 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6487 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-31' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6488 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6488 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6489 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-25' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6489 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6489 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6489 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6489 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-18' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6489 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6490 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6490 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6490 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6490 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(12)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6490 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6490 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6491 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6491 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6491 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6491 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6491 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6491 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6492 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6492 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6492 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6492 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6492 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6492 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6493 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6493 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6493 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6493 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6493 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6493 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6494 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6494 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6494 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6494 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6494 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6494 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6494 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6494 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6495 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6495 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6495 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6496 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6496 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6496 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6496 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6496 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6496 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6497 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6498 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6499 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6500 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6500 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6500 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6501 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6501 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6501 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6501 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6501 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-24' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6501 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6501 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6501 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6502 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6502 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6502 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6502 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6502 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-24' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6502 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6502 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6502 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6503 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6503 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6503 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6503 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6503 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-24' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6503 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6503 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6503 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6504 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6504 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6505 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6505 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6506 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6506 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6507 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6507 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6507 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6508 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6509 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6510 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6511 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(12)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6511 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6511 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6512 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6512 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6513 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(12)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6513 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6513 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-2(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6513 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6514 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6514 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6514 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6514 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6514 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6514 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6514 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6514 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6515 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6515 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6515 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6515 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6515 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6515 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6515 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6515 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6516 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6516 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6516 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6516 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6516 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6516 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6516 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6516 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6517 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6517 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6517 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6517 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6517 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6517 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6517 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6517 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6518 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6518 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6518 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6518 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6518 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6518 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6518 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6518 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6519 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6519 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6519 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6519 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6519 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6519 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6519 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6519 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'L-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6520 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'L-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6521 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'L-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6522 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6523 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6523 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6523 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6524 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6524 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6524 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6525 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6525 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6525 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6526 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6526 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6526 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6527 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6527 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6527 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6528 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6528 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6528 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6529 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6529 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6529 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6530 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6530 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6530 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6531 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6531 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-6(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6531 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6532 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6532 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-6(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6532 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6533 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6533 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-6(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6533 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6534 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6534 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-6(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6534 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6535 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6535 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6535 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6536 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6536 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-6(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6536 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6537 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6537 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6537 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6538 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6538 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6538 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6538 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6538 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6538 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-18' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6539 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6540 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6544 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6544 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6544 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6544 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6544 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6544 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6548 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6548 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6548 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6557 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6557 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6557 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6564 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6564 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6564 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6564 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6564 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6569 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-4(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-9(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-9(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6571 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6572 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-23(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6573 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-25' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6575 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-14(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6576 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6577 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-29(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6578 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6579 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-15(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6580 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-14(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6581 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6582 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6583 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6584 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-23' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6585 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-9(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6586 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-9(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6587 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6588 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6589 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-5(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6590 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6591 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3(11)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6592 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6592 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6592 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6593 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-19(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6595 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-5(10)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6596 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-4(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6597 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2(6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6597 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6598 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-6(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6599 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6600 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6601 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6602 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6603 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6604 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6605 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6605 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6605 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6605 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6605 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6605 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6606 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6606 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6607 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-2(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6607 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6608 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(22)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6608 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(29)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6609 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6610 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6610 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6610 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6610 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6611 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6611 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-26' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6611 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(14)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6611 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(22)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6612 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6612 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6612 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6612 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6612 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6612 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6612 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6612 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6613 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6613 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6614 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6614 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6614 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6615 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6615 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6615 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6616 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6616 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6617 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6617 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6617 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6617 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6618 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6619 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6619 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-20' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6619 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6619 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6620 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6620 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-20' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6620 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6620 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6621 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6621 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6621 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6622 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6622 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6622 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6622 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6622 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6622 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6622 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6623 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6623 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6623 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6623 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6623 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6623 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6623 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6624 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6625 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6626 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6627 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6627 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(23)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6628 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6628 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6629 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6629 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6630 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-18' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6630 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-18(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6630 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-44' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6630 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6631 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6631 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6631 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6631 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6631 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6632 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6632 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6632 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6632 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6632 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6633 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6633 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6634 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6635 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7(9)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6635 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6635 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6636 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7(9)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6636 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6637 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7(9)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6637 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-8(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6638 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6638 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6639 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6640 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6641 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6642 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6643 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6643 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6644 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5(11)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6644 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6645 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-3(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6646 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-46' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6646 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-49' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6646 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-50' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6647 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-7 (6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6647 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-3(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6647 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-44' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6647 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(29)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6648 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6648 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6649 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-8(9)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6649 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(20)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6649 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(21)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-11(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-4(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6650 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-9(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6651 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6651 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6651 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6651 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6651 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6651 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6651 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6651 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-18(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6652 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6653 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4(12)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6654 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-9(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6655 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-7(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6656 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-7(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6657 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-4(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6657 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-4(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6658 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6659 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-14' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6660 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(4)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6661 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6662 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6662 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-30(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6663 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-30(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6664 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-30(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6666 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6666 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6666 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6667 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6667 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6668 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6668 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6669 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6669 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6670 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6670 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6671 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6671 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6672 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6672 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6672 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6673 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6673 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6673 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6674 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6674 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6674 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6675 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6675 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6676 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6676 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6677 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6677 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6677 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6677 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6678 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6678 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6678 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6679 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6680 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6681 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6682 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-31' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6683 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(24)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6684 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(13)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6685 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6686 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6686 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6687 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6688 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6689 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6690 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6690 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6691 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-3(10)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6692 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(12)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6693 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6693 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6693 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6693 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6694 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6694 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6694 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6694 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6695 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6695 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6695 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6695 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6696 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6696 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6696 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6696 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6697 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6697 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6697 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6697 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6698 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6698 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6698 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6699 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6699 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6699 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6700 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6700 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6700 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6701 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6701 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6701 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6702 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6702 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6702 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6703 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6703 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6703 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6704 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6704 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6704 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6705 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6705 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6705 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6706 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6706 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6706 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6706 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6706 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6706 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6706 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6706 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6707 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6707 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6707 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6707 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6707 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6707 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6707 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6707 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6708 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6708 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6708 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6708 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6708 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6708 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6708 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6708 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6710 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6710 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6710 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6711 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6711 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6711 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6712 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6712 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6712 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6713 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6713 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6713 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6714 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6714 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6715 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6715 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6716 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6716 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6717 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-21' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6717 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6717 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(10)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6717 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4(8)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6717 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6718 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6718 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6718 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6719 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6719 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6719 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6719 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6720 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6720 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6720 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6721 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6721 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6721 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6722 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6722 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6722 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6723 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6723 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6723 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6724 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6725 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6725 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6725 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6726 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6726 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6726 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6727 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6727 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6727 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6728 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6728 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6728 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6729 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6729 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6729 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6730 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6731 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-5(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6732 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6733 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6733 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6734 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6734 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6735 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-9(6)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6736 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-4(27)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 6737 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-5(5)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7568 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7568 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7569 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7569 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, A, 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7569 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, A, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7570 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7570 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7570 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 223' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7571 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7571 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7571 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, b' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7571 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 228' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7572 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.10, 3.11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7572 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7572 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, c' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7572 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 230' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7573 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7573 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 93' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7574 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7574 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7574 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III,C,1,e' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7574 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 219' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7575 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7576 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7576 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7576 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7578 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7578 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7578 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7579 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7579 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7579 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 388, 389' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7579 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7580 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7580 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7580 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, F' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7580 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 90' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7580 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7581 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7581 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, F' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7581 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 412' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7581 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7582 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7582 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7582 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7582 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.A' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7583 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, B, 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7583 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 79' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7584 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7584 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 90' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7585 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7585 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 79' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7586 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, B, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7586 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 79' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7587 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, B, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7587 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 79' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7588 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7588 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.7(e)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7588 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7588 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7588 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7588 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7589 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7589 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, E' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7590 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7590 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7590 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 118' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7590 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7591 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7591 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 119' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7591 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7592 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7592 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 119' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7592 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7593 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7594 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7594 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7594 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7594 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7594 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7595 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7595 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7596 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7596 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, d' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7596 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 464' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7596 AND [Gen_File_Id] = 7073 AND [Section_Ref] = N'Update Response Plan' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7597 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7597 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7598 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7598 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, c' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7599 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7599 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, b' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7599 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 483' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7600 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7600 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'I, B, 2, c' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7600 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 483' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7601 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7601 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, e' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7601 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 483' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7602 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7602 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7602 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7602 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7603 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7603 AND [Gen_File_Id] = 6118 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7603 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, D' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7603 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 380' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7604 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7604 AND [Gen_File_Id] = 6118 AND [Section_Ref] = N'Controls' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7604 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, D, 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7604 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 377' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7604 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7605 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7605 AND [Gen_File_Id] = 6118 AND [Section_Ref] = N'Staff Oversight' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7605 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, D, 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7605 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 378' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7606 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7606 AND [Gen_File_Id] = 6118 AND [Section_Ref] = N'Legal Review' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7606 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, D, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7606 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 388' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7606 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7607 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7607 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7607 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'11.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7608 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7608 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 416' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7608 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7608 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7609 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7609 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 421' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7609 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7609 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7610 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7610 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 417' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7610 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'3, vii' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7610 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7611 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7611 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7611 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7613 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7613 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 190' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7614 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7614 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 230' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7615 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7615 AND [Gen_File_Id] = 6099 AND [Section_Ref] = N'Page 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7615 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7616 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7616 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7616 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 223, 226' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7617 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7617 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, f' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7617 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 187' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7618 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7618 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, f' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7618 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 187, 188, 198' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7619 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7619 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7620 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7620 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, A, 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7620 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, A, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7620 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7620 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7621 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7621 AND [Gen_File_Id] = 6099 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7621 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7621 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 223' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7622 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7622 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.10.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7622 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7622 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, b' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7622 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 228' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7623 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7623 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7623 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, c' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7623 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 230' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7624 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7624 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 93' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7625 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7625 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7625 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7625 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, e' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7625 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 219' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7626 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7626 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7626 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 393' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7627 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7627 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7627 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, A, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7627 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7627 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7629 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7629 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7629 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7630 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7630 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7630 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7630 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 388, 389' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7630 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7631 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7631 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, F' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7631 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'90' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7631 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7632 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7632 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, F' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7632 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'412' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7632 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7633 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7633 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7633 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'1.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7634 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7634 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 47' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7635 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7635 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 47' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7636 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7636 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 47' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7637 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7637 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 412' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7638 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7638 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 47' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7639 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7639 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7639 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7639 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.A' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7640 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7640 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7640 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, B, 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7640 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 79' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7641 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7641 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7641 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 90' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7642 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7642 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7642 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 79' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7643 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7643 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7643 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, B, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7643 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 79' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7644 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7644 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, B, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7644 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 79' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7645 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7645 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'18.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7645 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'18.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7646 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7646 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 65, 90, 96' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7647 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7647 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7647 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 283' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7648 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7648 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 283' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7649 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7649 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 283' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7650 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7650 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 283' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7651 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7651 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 283' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7652 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7652 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'page 4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7653 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 93' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7654 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 93' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7655 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7655 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.7(e)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7655 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7655 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7655 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7655 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7655 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7656 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7656 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, E' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7657 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7657 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7657 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7657 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 118' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7657 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7658 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7658 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 119' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7658 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7659 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7659 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 119' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7659 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7660 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7661 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7661 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7661 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7661 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7661 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7661 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7661 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'Page 9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7662 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7662 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7662 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7663 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.RP-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7663 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7663 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, d' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7663 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 464' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7664 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7664 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7665 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7665 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, c' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7666 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7666 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7666 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, b' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7666 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 483' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7667 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7667 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'I, B, 2, c' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7667 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 483' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7668 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7668 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'II, A, 1, e' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7668 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 483' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7669 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7669 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7669 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7669 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7669 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7670 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7670 AND [Gen_File_Id] = 6118 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7670 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, D' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7670 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 380' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7671 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7671 AND [Gen_File_Id] = 6118 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7671 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, D, 1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7671 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 377' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7671 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7672 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7672 AND [Gen_File_Id] = 6118 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7672 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, D, 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7672 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 378' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7673 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7673 AND [Gen_File_Id] = 6118 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7673 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, D, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7673 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 388' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7673 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7674 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7674 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7674 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'11.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7674 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7675 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7675 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7675 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 416' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7675 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7675 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7676 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7676 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 421' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7676 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7676 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7677 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7677 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 417' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7677 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'3, vii' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7677 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7678 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7678 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7678 AND [Gen_File_Id] = 7083 AND [Section_Ref] = N'4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7679 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7679 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'7.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7679 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'7.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7679 AND [Gen_File_Id] = 6099 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7680 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7680 AND [Gen_File_Id] = 6099 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7680 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 337' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7681 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7681 AND [Gen_File_Id] = 6099 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7681 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 337' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7681 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7682 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7682 AND [Gen_File_Id] = 6099 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7682 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 339' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7682 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7683 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7683 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7683 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7683 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7683 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7684 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7684 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 190, 284, 289' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7685 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7685 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 323' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7686 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7686 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 325' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7687 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7687 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7687 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'5.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7687 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'5.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7688 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7688 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7688 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7688 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 190' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7689 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7689 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7689 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7689 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 230, 231' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7690 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7690 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7690 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, a' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7691 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7691 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7691 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'12.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7691 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7692 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7692 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7692 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, f' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7692 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 190' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7693 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7693 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, f' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7693 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 230, 231' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7694 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7694 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'9.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7694 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'9.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7694 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'9.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7694 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'9.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7699 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7699 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7699 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7699 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7700 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7700 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 190' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7701 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7701 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 230, 231' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7702 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'I, Governance' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7702 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'I.B, Responsibility and Accountability' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7703 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'Training, II.C.7 (e)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7703 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7703 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7704 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7704 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 1, f' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7705 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7705 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7709 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'D.RM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7709 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.A.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7710 AND [Gen_File_Id] = 3944 AND [Section_Ref] = N'I.A.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7710 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7712 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'GV.SC-10: Ex2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7712 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7712 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PS-02: Ex2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7712 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7712 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.5, Inventory of Classification of Assets' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7712 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM 8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7712 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'2.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7713 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7713 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'2.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7714 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7714 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'2.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7717 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7717 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'1.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7717 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'1.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7718 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'2.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7720 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'GV.RM-02' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7720 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.B' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7721 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7721 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7721 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 81' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7722 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7723 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7731 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'18.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7732 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7732 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'20.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7733 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7734 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'18.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7735 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'16.13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7738 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'18.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7739 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'I.B' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7739 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.A.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7740 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.2.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7740 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7741 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7741 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.16(a)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7741 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7742 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7742 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.7(e)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7742 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-02' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7742 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Advanced 131' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7743 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.7(e)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7743 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7743 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7743 AND [Gen_File_Id] = 7070 AND [Section_Ref] = N'III, C, 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7744 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.7(e)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7744 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'R-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7744 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7745 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7745 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.2.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7745 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7746 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'14.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7747 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7747 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 414' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7748 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7749 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7750 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'17.8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7756 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7757 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7759 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7760 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'15.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7772 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7773 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7773 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7774 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.IM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7774 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7775 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7775 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'R-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7775 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7776 AND [Gen_File_Id] = 6095 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7776 AND [Gen_File_Id] = 7069 AND [Section_Ref] = N'III.C.1.h' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7780 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'3.14.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7781 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'7.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7782 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'7.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7783 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-2: c' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7784 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7784 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'7.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7785 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'7.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7786 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'7.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7791 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7792 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7793 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7793 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-44' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7793 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'9.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7794 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7794 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7795 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7803 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7803 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 246' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7804 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7805 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7806 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'5.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7808 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'5.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7809 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7810 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-3(7)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7810 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7811 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7812 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7812 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7813 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.5.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7813 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'6.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7813 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 232' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7814 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7814 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7814 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 232' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7815 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.15 (c)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7815 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7816 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.15 (c)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7816 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17:b' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7816 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7817 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.15 (c)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7818 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.15' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7822 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'12.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7823 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7823 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7823 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7823 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC4(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7823 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7824 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.13.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7824 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7824 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7824 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 211' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7825 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'13.4.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7825 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 285' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7825 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 290' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7826 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7826 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.3.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7826 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7826 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7827 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'12.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7829 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7829 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7829 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'12.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7830 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7830 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7832 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT 2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7832 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'10.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7832 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Statement 260' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7833 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7833 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.13(b)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7833 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7833 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7834 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-7(10):(a)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7834 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7835 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'9.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7836 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7837 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7838 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7839 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7839 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7840 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7840 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7840 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7841 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7842 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.10(a)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7842 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7842 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 191' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7843 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.10(a)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7843 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-2(3)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7844 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-4(2)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7852 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7852 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7853 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC 7(21)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7853 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7853 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7853 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 371, 372' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7854 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'7(21)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7854 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7854 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7854 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 371, 372' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7855 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7856 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7857 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7857 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 154, 302, 306' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7858 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7859 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7860 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7860 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=5 WHERE [Mat_Question_Id] = 7860 AND [Gen_File_Id] = 7071 AND [Section_Ref] = N'Baseline 189' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7861 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-4(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7861 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7862 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'13.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7868 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7869 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'D.AE-3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7869 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7870 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7871 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7871 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.7' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7871 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7872 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'8.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 7873 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.22' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 7874 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7874 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7875 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7876 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7877 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7878 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7879 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7880 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.6' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7881 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.10' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7881 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7882 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'4.11' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7883 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7884 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7884 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7885 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.4' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7901 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'16' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7902 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'16.1' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7903 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-5' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7904 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'16.3' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7905 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'16.9' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7906 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'16.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7907 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'16.2' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 7908 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'3.12' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 7909 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-8' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8540 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8540 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8540 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-19' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8540 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-23' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8540 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-24' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8540 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-29' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-30' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8541 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8542 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8543 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8544 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8544 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-18' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-30' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11(02)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15(07)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15(08)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8545 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11(02)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15(07)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-15(08)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8546 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-31' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PT-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8547 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8548 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8549 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8550 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8551 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-14' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8552 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8553 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8554 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-17' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-18' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-19' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-24' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8555 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8556 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8557 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8557 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-32' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-39' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-40' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-43' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8558 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-24' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-32' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-39' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-40' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-43' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8559 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-24' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-32' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-39' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-40' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-43' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8560 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-16' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8561 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-03(06)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(03)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-03(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-39(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-49' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-51' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8562 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-03(06)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(03)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-03(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-39(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-49' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-51' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8563 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8564 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8564 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8565 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-07(09)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-03(06)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-10(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-03(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-39(01)' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-49' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-51' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8566 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8567 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-13' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-28' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-32' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-39' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-43' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8568 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8569 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8569 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8569 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8569 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8569 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-09' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-34' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-35' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8570 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8571 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8571 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8572 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8572 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8572 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8572 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8572 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8573 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8573 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-06' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8573 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8573 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8573 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8573 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AT-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AU-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CM-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'CP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'IR-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'MP-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PE-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PL-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PM-31' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PS-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'PT-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-03' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'RA-07' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-08' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SA-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SC-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SI-04' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-01' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-02' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 8574 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'SR-05' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9880 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9880 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9880 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9881 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9881 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9881 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9882 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9882 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9882 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9883 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9883 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9884 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9884 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9884 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9884 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9885 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9885 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9885 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9886 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9886 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9887 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9887 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9888 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9888 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9888 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9889 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9889 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-7' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9889 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9889 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9889 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9889 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9890 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9890 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9891 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9891 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9892 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9892 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9893 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9893 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9894 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9894 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9894 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9895 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9895 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-11' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9895 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9896 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9896 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9896 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9897 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9897 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9897 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9898 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9898 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9899 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9899 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9899 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9899 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9900 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.GV-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9900 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AT-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9900 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9901 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-8' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9901 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9901 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9901 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-12' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9901 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9901 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.MI-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9901 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9902 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9902 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.CO-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9902 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9903 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9903 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9904 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9904 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9905 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9905 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.PT-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9905 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9906 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9906 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9906 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9906 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9906 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-6' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9906 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9907 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9907 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9908 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9908 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9908 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9909 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9909 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.SC-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9909 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9910 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RS.AN-5' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9910 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9911 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9911 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9911 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9912 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9912 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9913 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.AM-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9913 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9913 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9914 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.DS-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9914 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9915 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'DE.CM-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9915 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-2' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9915 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'ID.RA-3' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9915 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9916 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.AC-4' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9916 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9917 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-10' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9917 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'PR.IP-9' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9917 AND [Gen_File_Id] = 3866 AND [Section_Ref] = N'RC.RP-1' AND [Source] = 0
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9918 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 9918 AND [Gen_File_Id] = 7073 AND [Section_Ref] = N'Train Employees' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9918 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9918 AND [Gen_File_Id] = 7079 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9919 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9919 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9920 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 9920 AND [Gen_File_Id] = 7073 AND [Section_Ref] = N'Monitor and Review' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9920 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9920 AND [Gen_File_Id] = 7079 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9921 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 9921 AND [Gen_File_Id] = 7073 AND [Section_Ref] = N'Review Contracts' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9921 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=4 WHERE [Mat_Question_Id] = 9921 AND [Gen_File_Id] = 7079 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9922 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9922 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9923 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9923 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9924 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9924 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9925 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 9925 AND [Gen_File_Id] = 7078 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 10926 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'I, Governance, I.B' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 10926 AND [Gen_File_Id] = 6092 AND [Section_Ref] = N'' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 10927 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.9(a)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=1 WHERE [Mat_Question_Id] = 10928 AND [Gen_File_Id] = 3943 AND [Section_Ref] = N'II.C.9(a)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=2 WHERE [Mat_Question_Id] = 10929 AND [Gen_File_Id] = 3968 AND [Section_Ref] = N'AC-18(1)' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 10929 AND [Gen_File_Id] = 3970 AND [Section_Ref] = N'3.1.17' AND [Source] = 1
+UPDATE [dbo].[MATURITY_REFERENCES] SET [Sequence]=3 WHERE [Mat_Question_Id] = 10930 AND [Gen_File_Id] = 6087 AND [Section_Ref] = N'9.5' AND [Source] = 1
+PRINT(N'Operation applied to 4390 rows out of 4390')
+
+PRINT(N'Update rows in [dbo].[ISE_ACTIONS]')
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 37 AND [Mat_Question_Id] = 7740
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 38 AND [Mat_Question_Id] = 7741
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 39 AND [Mat_Question_Id] = 7742
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 40 AND [Mat_Question_Id] = 7743
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 41 AND [Mat_Question_Id] = 7744
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 42 AND [Mat_Question_Id] = 7745
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 43 AND [Mat_Question_Id] = 7746
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 44 AND [Mat_Question_Id] = 7747
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 45 AND [Mat_Question_Id] = 7748
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 46 AND [Mat_Question_Id] = 7749
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 47 AND [Mat_Question_Id] = 7750
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 51 AND [Mat_Question_Id] = 7759
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 52 AND [Mat_Question_Id] = 7760
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 53 AND [Mat_Question_Id] = 7761
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 266 AND [Mat_Question_Id] = 7756
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 267 AND [Mat_Question_Id] = 7757
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 268 AND [Mat_Question_Id] = 7758
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.1 (c)(1)' WHERE [Action_Item_Id] = 302 AND [Mat_Question_Id] = 7589
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.1 (c)(1)' WHERE [Action_Item_Id] = 303 AND [Mat_Question_Id] = 7590
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.1 (c)(1)' WHERE [Action_Item_Id] = 304 AND [Mat_Question_Id] = 7591
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.1 (c)(1)' WHERE [Action_Item_Id] = 305 AND [Mat_Question_Id] = 7592
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.1 (c)(1)' WHERE [Action_Item_Id] = 306 AND [Mat_Question_Id] = 7593
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 314 AND [Mat_Question_Id] = 7603
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 315 AND [Mat_Question_Id] = 7604
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 316 AND [Mat_Question_Id] = 7605
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 317 AND [Mat_Question_Id] = 7606
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 358 AND [Mat_Question_Id] = 7656
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 359 AND [Mat_Question_Id] = 7657
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 360 AND [Mat_Question_Id] = 7658
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 361 AND [Mat_Question_Id] = 7659
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 362 AND [Mat_Question_Id] = 7660
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 363 AND [Mat_Question_Id] = 7662
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 364 AND [Mat_Question_Id] = 7663
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 365 AND [Mat_Question_Id] = 7664
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 366 AND [Mat_Question_Id] = 7665
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 367 AND [Mat_Question_Id] = 7666
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 368 AND [Mat_Question_Id] = 7667
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 369 AND [Mat_Question_Id] = 7668
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 370 AND [Mat_Question_Id] = 7670
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 371 AND [Mat_Question_Id] = 7671
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 372 AND [Mat_Question_Id] = 7672
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 373 AND [Mat_Question_Id] = 7673
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.1 (c)(1)' WHERE [Action_Item_Id] = 529 AND [Mat_Question_Id] = 9918
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 532 AND [Mat_Question_Id] = 9921
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (c)(1)' WHERE [Action_Item_Id] = 533 AND [Mat_Question_Id] = 9922
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 535 AND [Mat_Question_Id] = 9923
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.1 (c)' WHERE [Action_Item_Id] = 536 AND [Mat_Question_Id] = 9924
+UPDATE [dbo].[ISE_ACTIONS] SET [Regulatory_Citation]=N'12 C.F.R. § 704.16, 12 C.F.R. § 748.0 (b)(2), 12 C.F.R. § 748.0 (b)(3), 12 C.F.R. § 748.0 (b)(5)' WHERE [Action_Item_Id] = 537 AND [Mat_Question_Id] = 9925
+PRINT(N'Operation applied to 48 rows out of 48')
+
+PRINT(N'Update rows in [dbo].[GALLERY_GROUP_DETAILS]')
+UPDATE [dbo].[GALLERY_GROUP_DETAILS] SET [Column_Index]=6 WHERE [Group_Detail_Id] = 51
+UPDATE [dbo].[GALLERY_GROUP_DETAILS] SET [Group_Id]=2, [Column_Index]=7 WHERE [Group_Detail_Id] = 1122
+PRINT(N'Operation applied to 2 rows out of 2')
+
+PRINT(N'Update rows in [dbo].[PARAMETERS]')
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[Implementation Statement]' WHERE [Parameter_ID] = 5250
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[OT Systems Only: Implementation Statement]' WHERE [Parameter_ID] = 5251
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[NIST 800-82 Rev 3: Implementation Statement]' WHERE [Parameter_ID] = 5252
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a: Implementation Statement]' WHERE [Parameter_ID] = 5253
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b: Implementation Statement]' WHERE [Parameter_ID] = 5254
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c: Implementation Statement]' WHERE [Parameter_ID] = 5255
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.i: Implementation Statement]' WHERE [Parameter_ID] = 5256
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.ii: Implementation Statement]' WHERE [Parameter_ID] = 5257
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i: Implementation Statement]' WHERE [Parameter_ID] = 5258
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.ii: Implementation Statement]' WHERE [Parameter_ID] = 5259
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.iii: Implementation Statement]' WHERE [Parameter_ID] = 5260
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.iv: Implementation Statement]' WHERE [Parameter_ID] = 5261
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i.1: Implementation Statement]' WHERE [Parameter_ID] = 5262
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i.2: Implementation Statement]' WHERE [Parameter_ID] = 5263
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i.3: Implementation Statement]' WHERE [Parameter_ID] = 5264
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i.4: Implementation Statement]' WHERE [Parameter_ID] = 5265
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[1: Implementation Statement]' WHERE [Parameter_ID] = 5266
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[2: Implementation Statement]' WHERE [Parameter_ID] = 5267
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[NIST 800-82 Rev 3_OT Discussion: Implementation Statement]' WHERE [Parameter_ID] = 5268
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[NIST 800-82 Rev 3_Rationale: Implementation Statement]' WHERE [Parameter_ID] = 5269
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.i: Implementation Statement]' WHERE [Parameter_ID] = 5270
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.ii: Implementation Statement]' WHERE [Parameter_ID] = 5271
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.iii: Implementation Statement]' WHERE [Parameter_ID] = 5272
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.iv: Implementation Statement]' WHERE [Parameter_ID] = 5273
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.v: Implementation Statement]' WHERE [Parameter_ID] = 5274
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[d: Implementation Statement]' WHERE [Parameter_ID] = 5275
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e: Implementation Statement]' WHERE [Parameter_ID] = 5276
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[f: Implementation Statement]' WHERE [Parameter_ID] = 5277
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[f.i: Implementation Statement]' WHERE [Parameter_ID] = 5278
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[f.ii: Implementation Statement]' WHERE [Parameter_ID] = 5279
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[f.iii: Implementation Statement]' WHERE [Parameter_ID] = 5280
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[f.iv: Implementation Statement]' WHERE [Parameter_ID] = 5281
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[f.v: Implementation Statement]' WHERE [Parameter_ID] = 5282
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[g: Implementation Statement]' WHERE [Parameter_ID] = 5283
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.iii: Implementation Statement]' WHERE [Parameter_ID] = 5284
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[1.a: Implementation Statement]' WHERE [Parameter_ID] = 5285
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[1.b: Implementation Statement]' WHERE [Parameter_ID] = 5286
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[1.c: Implementation Statement]' WHERE [Parameter_ID] = 5287
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[d.i: Implementation Statement]' WHERE [Parameter_ID] = 5288
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[d.ii: Implementation Statement]' WHERE [Parameter_ID] = 5289
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[d.iii: Implementation Statement]' WHERE [Parameter_ID] = 5290
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h: Implementation Statement]' WHERE [Parameter_ID] = 5291
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h.i: Implementation Statement]' WHERE [Parameter_ID] = 5292
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h.ii: Implementation Statement]' WHERE [Parameter_ID] = 5293
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h.iii: Implementation Statement]' WHERE [Parameter_ID] = 5294
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[i: Implementation Statement]' WHERE [Parameter_ID] = 5295
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[i.i: Implementation Statement]' WHERE [Parameter_ID] = 5296
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[i.ii: Implementation Statement]' WHERE [Parameter_ID] = 5297
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[i.iii: Implementation Statement]' WHERE [Parameter_ID] = 5298
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[j: Implementation Statement]' WHERE [Parameter_ID] = 5299
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[j.i: Implementation Statement]' WHERE [Parameter_ID] = 5300
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[ j.ii: Implementation Statement]' WHERE [Parameter_ID] = 5301
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[k: Implementation Statement]' WHERE [Parameter_ID] = 5302
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[l: Implementation Statement]' WHERE [Parameter_ID] = 5303
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[OT Systems Only 1: Implementation Statement]' WHERE [Parameter_ID] = 5304
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[OT Systems Only 2: Implementation Statement]' WHERE [Parameter_ID] = 5305
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[m: Implementation Statement]' WHERE [Parameter_ID] = 5306
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[3: Implementation Statement]' WHERE [Parameter_ID] = 5307
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[4: Implementation Statement]' WHERE [Parameter_ID] = 5308
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[2.a: Implementation Statement]' WHERE [Parameter_ID] = 5309
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[2.b: Implementation Statement]' WHERE [Parameter_ID] = 5310
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[2.c: Implementation Statement]' WHERE [Parameter_ID] = 5311
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[3.a: Implementation Statement]' WHERE [Parameter_ID] = 5312
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[3.b: Implementation Statement]' WHERE [Parameter_ID] = 5313
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[NIST 800-82 Rev 3_Access to OT: Implementation Statement]' WHERE [Parameter_ID] = 5314
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.iv: Implementation Statement]' WHERE [Parameter_ID] = 5315
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.v: Implementation Statement]' WHERE [Parameter_ID] = 5316
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.v: Implementation Statement]' WHERE [Parameter_ID] = 5317
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.vi: Implementation Statement]' WHERE [Parameter_ID] = 5318
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.vii: Implementation Statement]' WHERE [Parameter_ID] = 5319
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.viii: Implementation Statement]' WHERE [Parameter_ID] = 5320
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.ix: Implementation Statement]' WHERE [Parameter_ID] = 5321
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.x: Implementation Statement]' WHERE [Parameter_ID] = 5322
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xi: Implementation Statement]' WHERE [Parameter_ID] = 5323
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xi.1: Implementation Statement]' WHERE [Parameter_ID] = 5324
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xi.2: Implementation Statement]' WHERE [Parameter_ID] = 5325
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xi.3: Implementation Statement]' WHERE [Parameter_ID] = 5326
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xi.4: Implementation Statement]' WHERE [Parameter_ID] = 5327
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xii: Implementation Statement]' WHERE [Parameter_ID] = 5328
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xiii: Implementation Statement]' WHERE [Parameter_ID] = 5329
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xiv: Implementation Statement]' WHERE [Parameter_ID] = 5330
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xv: Implementation Statement]' WHERE [Parameter_ID] = 5331
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.xvi: Implementation Statement]' WHERE [Parameter_ID] = 5332
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[d:Implementation Statement]' WHERE [Parameter_ID] = 5333
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.1: Implementation Statement]' WHERE [Parameter_ID] = 5334
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.2: Implementation Statement]' WHERE [Parameter_ID] = 5335
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i.2.i: Implementation Statement]' WHERE [Parameter_ID] = 5336
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i.2.ii: Implementation Statement]' WHERE [Parameter_ID] = 5337
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i.2.ii.1: Implementation Statement]' WHERE [Parameter_ID] = 5338
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.i.2.ii.2: Implementation Statement]' WHERE [Parameter_ID] = 5339
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[5: Implementation Statement]' WHERE [Parameter_ID] = 5340
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[6: Implementation Statement]' WHERE [Parameter_ID] = 5341
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[7: Implementation Statement]' WHERE [Parameter_ID] = 5342
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[8: Implementation Statement]' WHERE [Parameter_ID] = 5343
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9: Implementation Statement]' WHERE [Parameter_ID] = 5344
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.i.1: Implementation Statement]' WHERE [Parameter_ID] = 5345
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.i.2: Implementation Statement]' WHERE [Parameter_ID] = 5346
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.i.3: Implementation Statement]' WHERE [Parameter_ID] = 5347
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.i.4: Implementation Statement]' WHERE [Parameter_ID] = 5348
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.i.5: Implementation Statement]' WHERE [Parameter_ID] = 5349
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.i.6: Implementation Statement]' WHERE [Parameter_ID] = 5350
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.ii.1: Implementation Statement]' WHERE [Parameter_ID] = 5351
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.ii.2: Implementation Statement]' WHERE [Parameter_ID] = 5352
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.ii.3: Implementation Statement]' WHERE [Parameter_ID] = 5353
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.ii.4: Implementation Statement]' WHERE [Parameter_ID] = 5354
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.iii.1: Implementation Statement]' WHERE [Parameter_ID] = 5355
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.iii.2: Implementation Statement]' WHERE [Parameter_ID] = 5356
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.iii.3: Implementation Statement]' WHERE [Parameter_ID] = 5357
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.iii.4: Implementation Statement]' WHERE [Parameter_ID] = 5358
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.iii.5: Implementation Statement]' WHERE [Parameter_ID] = 5359
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[Note: Implementation Statement]' WHERE [Parameter_ID] = 5360
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.v.1: Implementation Statement]' WHERE [Parameter_ID] = 5361
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.v.1.a: Implementation Statement]' WHERE [Parameter_ID] = 5362
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.v.1.b: Implementation Statement]' WHERE [Parameter_ID] = 5363
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.v.1.c: Implementation Statement]' WHERE [Parameter_ID] = 5364
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h.i.1: Implementation Statement]' WHERE [Parameter_ID] = 5366
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h.i.2: Implementation Statement]' WHERE [Parameter_ID] = 5367
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h.i.3: Implementation Statement]' WHERE [Parameter_ID] = 5368
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h.ii.1: Implementation Statement]' WHERE [Parameter_ID] = 5369
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[h.ii.2: Implementation Statement]' WHERE [Parameter_ID] = 5370
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[n: Implementation Statement]' WHERE [Parameter_ID] = 5371
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[o: Implementation Statement]' WHERE [Parameter_ID] = 5372
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[p: Implementation Statement]' WHERE [Parameter_ID] = 5373
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[7.a: Implementation Statement]' WHERE [Parameter_ID] = 5374
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[7.b: Implementation Statement]' WHERE [Parameter_ID] = 5375
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[7.c: Implementation Statement]' WHERE [Parameter_ID] = 5376
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[7.d: Implementation Statement]' WHERE [Parameter_ID] = 5377
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.a: Implementation Statement]' WHERE [Parameter_ID] = 5378
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.b: Implementation Statement]' WHERE [Parameter_ID] = 5379
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.c: Implementation Statement]' WHERE [Parameter_ID] = 5380
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.c.i: Implementation Statement]' WHERE [Parameter_ID] = 5381
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.c.ii: Implementation Statement]' WHERE [Parameter_ID] = 5382
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.c.iii: Implementation Statement]' WHERE [Parameter_ID] = 5383
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.c.iv: Implementation Statement]' WHERE [Parameter_ID] = 5384
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.d: Implementation Statement]' WHERE [Parameter_ID] = 5385
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.e: Implementation Statement]' WHERE [Parameter_ID] = 5386
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.f: Implementation Statement]' WHERE [Parameter_ID] = 5387
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[9.g: Implementation Statement]' WHERE [Parameter_ID] = 5388
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[g.i: Implementation Statement]' WHERE [Parameter_ID] = 5389
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[g.ii: Implementation Statement]' WHERE [Parameter_ID] = 5390
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[g.iii: Implementation Statement]' WHERE [Parameter_ID] = 5391
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[1.b.i: Implementation Statement]' WHERE [Parameter_ID] = 5392
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[1.b.ii: Implementation Statement]' WHERE [Parameter_ID] = 5393
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.1: Implementation Statement]' WHERE [Parameter_ID] = 5397
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.2: Implementation Statement]' WHERE [Parameter_ID] = 5398
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.3: Implementation Statement]' WHERE [Parameter_ID] = 5399
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.4: Implementation Statement]' WHERE [Parameter_ID] = 5400
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.5: Implementation Statement]' WHERE [Parameter_ID] = 5401
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.6: Implementation Statement]' WHERE [Parameter_ID] = 5402
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.7: Implementation Statement]' WHERE [Parameter_ID] = 5403
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.8: Implementation Statement]' WHERE [Parameter_ID] = 5404
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[a.9: Implementation Statement]' WHERE [Parameter_ID] = 5405
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e.i: Implementation Statement]' WHERE [Parameter_ID] = 5406
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e.ii: Implementation Statement]' WHERE [Parameter_ID] = 5407
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e.iii: Implementation Statement]' WHERE [Parameter_ID] = 5408
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e.iv: Implementation Statement]' WHERE [Parameter_ID] = 5409
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e.v: Implementation Statement]' WHERE [Parameter_ID] = 5410
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e.vi: Implementation Statement]' WHERE [Parameter_ID] = 5411
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e.vii: Implementation Statement]' WHERE [Parameter_ID] = 5412
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[e.viii: Implementation Statement]' WHERE [Parameter_ID] = 5413
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[d.iv: Implementation Statement]' WHERE [Parameter_ID] = 5414
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[10: Implementation Statement]' WHERE [Parameter_ID] = 5416
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.vi: Implementation Statement]' WHERE [Parameter_ID] = 5417
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[c.vii: Implementation Statement]' WHERE [Parameter_ID] = 5418
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.vi: Implementation Statement]' WHERE [Parameter_ID] = 5419
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.vii: Implementation Statement]' WHERE [Parameter_ID] = 5420
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.viii: Implementation Statement]' WHERE [Parameter_ID] = 5421
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[b.ix: Implementation Statement]' WHERE [Parameter_ID] = 5422
+UPDATE [dbo].[PARAMETERS] SET [Parameter_Name]=N'[3.c: Implementation Statement]' WHERE [Parameter_ID] = 5423
+PRINT(N'Operation applied to 169 rows out of 169')
+
+PRINT(N'Update rows in [dbo].[MATURITY_QUESTIONS]')
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 2:
Most recent annual or comprehensive report to the board or board committee on
the overall status of the information security program.
To comply with
GLBA guidelines, management should report at least annually to the board or
responsible committee of the board on the status and effectiveness of the
information security program. This report should:
·
Describe the overall status of the information
security program
·
Address the credit union''s compliance with
established guidelines
·
Discuss material matters related to its program,
addressing security concerns that include:
o
risk assessment—the results of the
completed information security risk assessment should be reported to the board.
o
risk management and control decisions—any
changes to the credit union’s security controls, posture, or risk tolerance,
and any acceptance of risk.
o
service provider arrangements—information
on the vendor management program, such as the breakdown of vendors by
criticality, status of due diligence, any vendor concerns, or new vendors
hired.
o
results of testing—any issues identified
in the external audits and assessments, including the status of remediation.
o
security breaches—any breaches or
violations and management’s responses to these incidents should be covered in
the reported period; and
o
recommendations—for changes to the
information security program.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7628
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 3: IT
asset inventories, to include a hardware inventory report showing each server
and workstation and its operating system, and a software inventory report
showing the number of installed instances of each software program.
An asset inventory process includes a comprehensive report
or listing of a credit union’s hardware (for example, physical, and virtual
servers, operating systems, and business applications), portable and mobile
devices, and other network equipment. Reporting should also include the credit
union’s software assets, identifying the device type and software version to
help the credit union manage software updates and patches. Management should
keep this inventory current and accurate and have an independent source
periodically validate its accuracy.
Institutions cannot protect and monitor assets that they
don’t know they have. Unmanaged or unauthorized devices can become targets for
attack against the institution. Accurate inventories assist management with
cyber risk and recovering from and responding to incidents. Maintaining an
asset inventory is an ongoing process. Smaller or less complex entities may use
informal methods (for example, spreadsheets) to track IT assets. Larger or more
complex entities may use automated tools to assist with IT asset management.
Automated tools serve a variety of functions, such as logging and vital asset
statistics. Some automated tools alert management when a new or unapproved
device is connected to the credit union’s network.
Management should keep the inventory list updated and remove
unauthorized assets. Anything connected to the network with an IP address
should be included in the inventory, including virtual hardware.
At a minimum, the Hardware asset inventory should include
the following data:
·
Network (IP) Address
·
Machine Name
·
Vendor and model
·
Operating System
Additional information in this area is provided in the FFIEC
IT Booklet “Architecture, Infrastructure, and Operations.”
The Software Inventory typically includes:
·
Application/software name
·
Version
·
Manufacturer
·
Number of installations
·
Software Type
Without a complete and accurate software inventory,
institutions cannot identify any vulnerable software, or software that may
create a potential security risk. Additionally, management should establish an
approved or authorized software list. Unauthorized software programs can be
limited to specific versions or from a specific source. Unauthorized software
should be investigated and removed.
Management should establish clear accountability for the
oversight of the asset inventory. Best practice CIS Safeguard 2.1
recommends reviewing and updating the software inventory bi-annually, or more
frequently. For any unsupported software, management should document approved
exceptions. Documentation should include any mitigating controls and the risk
acceptance process.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7633
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 4:
Information security risk assessment, and any supplemental supporting
documentation. Also provide
cybersecurity, access controls and authentication, and e-banking risk
assessments and self-assessments, if separate.
Risk is a function of threats, vulnerabilities, the
likelihood of an event, and the potential impact such an event would have to
the business. By understanding the risks, a credit union can know where to
focus their efforts. A credit union can never eliminate risk. The goal of the information security program
should be to provide reasonable assurance that you have made informed decisions
related to the security of your information.
Risk is
determined through an analysis of the Threats, Vulnerabilities, Likelihood, and
Impact.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7639
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 5:
Reports for internal and external IT audits and controls testing (e.g., IT
general controls reviews, penetration tests, vulnerability assessments, social
engineering tests) conducted since the prior examination.
A well-planned, properly
structured audit program is essential to evaluate risk management practices,
internal control systems, and compliance with corporate policies concerning
IT-related risks at institutions of every size and complexity. Effective audit
programs are risk-focused and promote sound IT controls across the credit
union. To determine what risks exist, management should prepare an independent
assessment of the credit union''s risk exposure and the quality of the internal
controls associated with the development, acquisition, implementation, and use
of information technology (i.e., new products, services, and delivery
channels).
An effective audit program
evaluates risk management practices, internal control systems, and compliance
with corporate policies concerning IT-related risks. Cybersecurity controls are
an integral part of the credit union''s information security control environment
and like all control systems, independent audit is responsible for validating
that they are effective and commensurate with the credit union''s risk profile.
Institutions should have an audit
schedule that includes frequency of an independent, periodic (typically an
annual) IT General Controls audit, internal and external vulnerability scanning,
internal and external penetration testing, and social engineering testing based
on risk.
IT Audit: The majority of
institutions outsource IT audits to third parties. A general IT controls audit
typically covers IT governance, policies and procedures, vendor management,
access controls, change management, BCP, and other areas depending on the scope
of the audit.
Vulnerability Scans: All
institutions should have periodic independent external and internal
vulnerability scans/assessments. Scans discover vulnerabilities on the internal
network and externally facing assets. Organizations employ network scanning
tools to identify and prevent the use of prohibited functions, protocols,
ports, and services. If not remediated, weaknesses on the network can be exploited
by a bad actor to compromise computer systems.. The scanning can be done with
an appliance placed on the network that automatically scans assets at
predetermined intervals or can be completely outsourced to third parties. If
the scanning is done internally by IT staff not independent of the process,
then management should engage an independent third party to validate and
confirm internal results at least annually.
Penetration Testing: A
penetration test attempts to exploit discovered vulnerabilities by using
various custom tools or scripts and includes more analysis. Penetration testing
is performed by a qualified independent third party. Best practice CIS
Safeguards 18.5 recommends at least an annual testing.
Social Engineering Testing:
This includes phishing testing, vishing calls or text, or physical social
engineering. Phishing testing is often done internally using a vendor platform
and validated periodically by an independent third party. Vishing and physical
social engineering tests are typically done every other year or more frequently
based on risk.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7645
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 6:
Reporting and tracking documentation on the corrective action on, and status
of, weaknesses cited in IT examinations, audits, tests, service provider/vendor
reviews, and internal reviews.
Proper remediation of material
weaknesses is a basic and essential component of effective audit oversight.
Credit union management should establish a formal tracking process to monitor
remediation progress and a reporting process that documents responsibility. The
results of the reporting process should be shared with management frequently.
Typically, a tracking report
includes the following:
·
Issue or finding,
·
Date Discovered,
·
Target Resolution Date,
·
Party Responsible,
·
Periodic Status updates, and
·
Date Resolved.
Internal Audit or the Supervisory
Committee should:
·
Identify weaknesses,
·
Review management''s plans for addressing those
weaknesses,
·
Monitor resolution, and
·
Report to the board as necessary on material
weaknesses.
The board, supervisory committee,
and/or audit committee meeting minutes should reflect monitoring and status
updates for all audit findings. The timing of the resolution should be
commensurate with the criticality of the finding.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7652
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 7: Documentation for information security training provided to staff, management, and officials since the prior examination, including tracking reports. Also provide support for any member education or guidance.
A credit union should establish
an organization-wide information security awareness training program to address
threats and inform employees about information security controls and the
employees’ information security responsibilities. The training program should
consider evolving and persistent cyber-threats, including:
·
phishing,
·
social engineering,
·
DDoS,
·
account takeover,
·
ransomware, and
·
any emerging issues.
Training should include annual
certification that personnel understand their responsibilities. In addition,
new employees should receive training shortly after they are onboarded.
The information security
awareness training program should support policy awareness and compliance and
be updated frequently to address the various types of cyber-threats by
describing the threats, attack vectors, and potential impact on the credit
union''s systems and members.
Best practices CIS Safeguards
14.6 instructs institutions to also train employees in recognizing and
reporting a potential incident.
A credit union should validate the
effectiveness of their security awareness training program by employing
techniques such as faux phishing campaigns or social engineering exercises. The
results of these exercises can help a credit union identify areas of focus to
provide additional training. Frequent testing of employees on various types of
social engineering tactics helps to keep them prepared and vigilant for such
attacks.
The key objective for any
security awareness training program should be shaping employee behavior to
reduce the likelihood and impacts of security incidents. Outcome-driven metrics
ties training back to measurable protection benefits. Management should
track and evaluate the results from the security awareness training program and
maintain records of completed training for all employees.
Members also benefit from information security
awareness. For example, credit unions can use their website to educate customers
about current cyber threats and methods used to illegally access accounts and
account information, such as phishing, social engineering, mobile-based
trojans, and business email compromise.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7655
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 8: Written incident response program for unauthorized access to member information
and support for any material security incidents occurring since the prior
examination, including associated notifications.
IT CORE 9: Results of any testing of the incident response plan(s).
Per Interagency Guidance on
Response Programs for Unauthorized Access to Customer Information and Customer
Notice, each institution should have a risk-based response program to address
unauthorized access to customer information. The incident response program
should be appropriate to the size and complexity of the credit union and its
information security risks.
At a minimum, a credit union''s response program should outline procedures to:
·
Assess the nature and scope of an incident and
identifying what member information systems and types of member information
have been accessed or misused.
·
Contain and control incidents to prevent further
unauthorized access to or use of member information. These should list which
personnel is responsible for taking these steps.
·
Prepare, detect, contain, eradicate, remediate,
and follow-up on incidents. Each phase of the incident handling should list
steps or procedures to follow.
·
Notify law
enforcement, insurers, regulators, other incident response vendors, and members.
These procedures should include applicable regulatory timeframes, as well as
who to notify (for example which law enforcement agencies), and when to file a
Suspicious Activity Report (SAR).
·
Address a third-party service provider incident,
including defining the related notification responsibilities. The response
program should designate an incident response team and include roles and
responsibilities for team members. The program should include standards for
timely notification to members and outline components of the member notice.
Member notice components should be
provided in plain language and include:
·
Incident description
·
Type of member information compromised
·
How the credit union will prevent further
unauthorized access
·
Informational phone number
·
Reminder to members to remain vigilant over next
12-24 months
·
Request to report ID theft to CU promptly
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7661
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 10:
List of all third-party service providers with risk ratings and support for the
latest due diligence or monitoring of the core data processor, e-banking
provider, and any newly contracted IT vendors.
IT CORE 11: Documentation demonstrating contracts with critical service providers address the timely notification of cyber incidents.
Credit unions have increasingly developed third party
relationships to meet strategic objectives and enhance member services.
Properly managed and controlled third party relationships provide a wide range
of potential benefits to credit unions and their members. Many credit unions
have utilized third party arrangements to gain expertise, realize economies of
scale, or even reach new members. Leveraging the talents and experience of
third parties can assist credit unions in meeting their members’ needs while
accomplishing their strategic goals. In some cases, third party relationships
are critical to the on-going success of a credit union.
By taking the time to properly evaluate and cultivate third
party arrangements, credit unions can experience a high degree of success.
Prudent credit unions will conduct thorough due diligence and evaluate any
third-party contracts carefully.
Credit unions use due diligence to determine whether the
risks undertaken in a third-party relationship are acceptable in relation to
their risk profile and safety and soundness requirements. Less complex risk
profiles and third-party arrangements typically require less analysis and
documentation. Management may rely on third parties to provide critical
services but remains responsible for ensuring the confidentiality, integrity
and availability of the credit union’s systems and information. Through
oversight, a credit union monitors the effectiveness of the services provided
by third parties.
Credit unions should only enter into service provider
contracts that have appropriate information security measures. The contract
should be clear about information security roles and responsibilities and
outline the appropriate actions to address incidents of unauthorized access to
or use of the credit union''s member information. The contract should clearly
require timely notification to the credit union of any incidents.
When evaluating third party arrangements, examiners verify
the credit union has addressed the following concepts appropriately for its
size, complexity, and risk profile:
- Risk Assessment and Planning.
- Due Diligence; and
- Risk Measurement, Monitoring and Control.
Vendor List
Management should maintain a current listing of all
third-party service providers by risk rating/criticality (high, medium, low
risk OR critical, non-critical, etc.) with a description of the services
provided. The risk rating dictates the
frequency (and the corresponding level of detail) of ongoing due diligence
reviews by management. In rating risk, management should consider sensitivity
of data accessed or controlled by the service provider. If a vendor has access
to any sensitive information (member, employee, or credit union), stronger
oversight is appropriate. Management should verify that third-party service
providers implement and maintain sufficient controls to mitigate risks.
Although some credit unions outsource third party due
diligence and monitoring, compliance with the credit union’s vendor management
program remains the responsibility of
credit union management.
Contracts
Contracts are the means for credit union management to
require its service providers to implement appropriate measures designed to
meet the objectives of regulatory guidelines for safeguarding member
information (GLBA guidelines).
Contract considerations:
•
Timeframe
•
Details of the service or product to be provided
•
Adequate and measurable service level agreements
(SLAs)
•
Compliance with all applicable laws,
regulations, and regulatory guidance
•
Third party insurance coverage
•
Subcontractor clauses (permissibility,
impermissibility)
•
Right to audit
•
Independent validation of security controls
•
Confidentiality and security of information,
including provision for prompt return or destruction of the credit union''s data
•
Notification of any information security or
business continuity incident in a timely manner.
' WHERE [Mat_Question_Id] = 7669
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 12:
Business continuity plan (BCP), disaster recovery plan (DRP), business impact
analysis, and BCP/DRP testing results since the prior examination.
Disruptions resulting from cyber events,
natural disasters, or man-made events can interrupt a credit union’s
operations and can have a broad impact on the financial sector. Business
continuity management (BCM) is the process of planning for continuity of
operations in the case of disaster. BCM addresses resilience, continuity, and
a credit union’s response capability to safeguard employees, customers,
and products and services.
A credit union’s BCM program should align with its strategic
goals and objectives. A BCM program has multiple components, including:
·
Business Impact Analysis (BIA)
·
Business Continuity Plan (BCP)
·
Backup and Recovery Plan
·
Testing
Business Impact Analysis (BIA):
Management
should develop a BIA that identifies all business functions and
prioritizes them in order of criticality, analyzes
related interdependencies among business processes and systems, and
assesses a disruption’s impact through established metrics. The BIA should
estimate a recovery time objective (RTO) and recovery point objective and
define recovery priorities and resource dependencies for critical business
processes. Ideally, RTOs are derived from a business impact analysis or similar
effort to estimate the cost of downtime over various timeframes (short, medium,
and longer term). If critical activities cannot be recovered within the defined
RTO, the credit union should establish alternative processes to resume critical activities.
Business Continuity Plan
(BCP):
The
credit union should have a board-approved business continuity, disaster
recovery, and data backup program to recover operations following an incident.
The BCP should address:
·
BIA and risk assessment.
·
Alternate processing for critical business
functions while systems/applications and facilities are unavailable.
·
Recovery strategies and procedures for critical
systems/applications.
·
Roles and responsibilities; and
·
BCP and disaster recovery testing.
A backup and recovery plan describes how critical
systems are backed up and restored. Critical systems'' data is typically backed
up at least daily, and recovery from backups should be tested periodically to
verify the backup process is functioning properly.
The BCP focuses on critical business functions and varies
according to the credit union’s size and complexity. The BCP includes specific
elements, such as incident response, disaster recovery, and crisis management.
Smaller credit unions may have a single BCP that includes these elements. Large,
complex credit unions may have multiple plans specific to business functions,
locations, or departments.
A comprehensive plan based on FFIEC’s BCP booklet would
include:
- Roles,
responsibilities, and required skills for credit union personnel and third-party service providers
- Solutions to various types of foreseeable disruptions (for example, fires, floods,
etc.) including disruptions caused by cyber threat actors
- Escalation
thresholds
- Immediate
steps to protect personnel and customers and minimize damage
- Prioritization
and procedures to recover functions, services, and processes
- Critical
information protection (for example, physical, electronic, hybrid, and use
of off-site storage)
- Alternate
site plans including logistical arrangements (for example, housing,
transportation, or food) for personnel at the recovery locations
- Network
equipment, connectivity, and communication needs, including credit
union-owned and personal mobile devices
- Personnel
at alternate sites, including arrangements for those permanently located
at the alternate facility
- Scope
and frequency of testing
- Pandemic
plans
- Resumption
of a normalized state for business processes
The BCP should be a living document, regularly updated so
that it remains current with system enhancements and organizational changes.
Testing:
The BCP plan should require testing at a set frequency to
validate the effectiveness of the credit union’s BCP and identify deficiencies.
Exercises and tests help validate a credit union’s ability to restore
critical business functions quickly. They also confirm that critical business
functions are resilient and can maintain continuity. There are many types of
exercises, depending on the intended goals and objectives. Exercises may
include scenario-driven simulations of BCP elements. For example,
exercises may include performing duties in a simulated environment (in other
words, functional testing) or be discussion based (in other words, tabletop
exercises). Testing should encompass internal and external dependencies, including
activities outsourced to third-party service providers. A credit union does not
need to test all systems simultaneously but should follow a comprehensive
rotation of testing to cover all essential systems.
Third-party service providers deliver critical services to
many credit unions and should be included in the enterprise-wide exercise and
testing program. A third party’s inclusion in the credit union’s BCP should be
commensurate with the criticality of the third-party service provider and its
involvement in the business function.
Resilience includes proactive measures to mitigate disruptive events and
evaluate a credit union’s recovery capabilities.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7674
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 13:
Patch management procedures and the three most recent patch management reports
for operating systems and software applications.
Patch Management is an easy concept to understand, but a
challenge to execute. Patch management is the process of identifying,
acquiring, installing, and verifying patches for products and systems. Patches
correct security and functionality problems in software and firmware. Patch
management is required by various security compliance frameworks, mandates, and
other policies. For example, NIST Special Publication (SP) 800-532 establishes
the SI-2, Flaw Remediation security control, which includes:
·
Installing security-relevant software and
firmware patches,
·
Testing patches before installing them, and
·
Incorporating patches into the organization’s
configuration management processes.
Another example is the Payment Card Industry Data Security
Standard, which requires installing the latest patches and sets a maximum
timeframe for installing the most critical patches.
Vendors routinely issue patches or security updates to
address vulnerabilities found on institutions systems. Best Practice CIS
Safeguard 7.4 recommends monthly updates at a minimum. The latest patches
should be deployed to critical systems as soon as possible. If critical patches
are not applied promptly, a hacker could exploit these vulnerabilities to
access sensitive data. An effective patch management plan will include:
·
A patching schedule,
·
Expected timeframes for applying patches based
on
o
criticality
o
risk
o
testing environment
·
A reporting function that covers which patches
have and have not been applied.
By testing software and firmware updates, a credit union can
identify compatibility and instability issues that could cause serious
operational disruptions.
Keeping up with patches is challenging to manage even for
less complex credit unions. Management should implement automated patch
management systems and software to protect all network components, including
servers, VMs, routers, switches, mobile devices, and firewalls, with
appropriate updates. Some systems may be manually patched.
Patch management solutions can produce a variety of reports,
including patch compliance, exceptions, and days outstanding. Missing critical
patches to servers, desktops, laptops, and other devices should be remediated
as soon as possible unless there is an approved exception. If patch management
is outsourced to a vendor, then the vendor should provide patch status reports
to the credit union’s management.
Vulnerability scans help detect vulnerabilities for which
there are patches available that may not have been installed.
Credit unions should develop a plan to continuously assess
and track vulnerabilities on all enterprise assets within the enterprise’s
infrastructure, to remediate and minimize a window of opportunity for
attackers. Hackers will attempt to exploit these vulnerabilities to get access
to the institution’s data. Management should monitor public and private
industry sources for new threat and vulnerability information.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7679
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 14:
Documentation to support antivirus/malware protection is running on endpoints
and servers, to include periodic signature updates, an alert function, and
management status reports.
Antivirus/anti-malware protection is preventative software
that detects, neutralizes, and removes malware. Using a regularly updated
database of malware and viruses, it scans a device, comparing its files to the
files in its database. The software also scans the device for any suspicious
behaviors that could indicate malware, which allows the software to detect
malware even if it’s not already in the database.
Credit union management should require the IT function to:
·
Install anti-virus/anti-malware on all desktops,
laptops, and servers.
·
Deploy signature updates automatically.
·
Send notification when a virus is detected; and
·
Make reports or dashboards available for review.
Any devices excluded from
malware protection should be documented and approved by management. All
end-point devices should be protected. The reports can be compared to asset
inventory reports to ensure all devices are included. An antivirus scan report
provides details on the antivirus (AV) scans run on selected endpoints or
endpoints in a selected group within the specified report. The details include
the type of scan, scan duration, malware that are detected and action taken on
each identified threat. The latest tools provide behavior-based anti-malware as
compared to signature-based. New forms of malware can only be detected by
behavior-based detection mechanisms.
Antivirus and anti-malware
tools help protect data and systems by detecting malicious code or malware to
include viruses, Trojans, rootkits, and destructive malware. Having antivirus
and malware protection on systems, desktops, laptops, and other devices is
critical given today''s threats. IT staff should provide status reports to the
IT committee or management confirming that devices are up to date.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7683
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 15:
Procedures and forms for granting or adjusting employee access to systems and
applications. Also provide support for user access reviews, including
monitoring on inactive accounts, conducted since the prior examination.
Credit unions should
establish and follow a formal process for granting access to enterprise assets
when hiring a new employee, or when an employee changes roles. Credit unions
should also establish and follow a formal process for revoking access to
enterprise assets, including disabling accounts immediately upon termination.
Disabling accounts instead of deleting them may be necessary to preserve audit
trails. Formalized processes include supporting policies or procedures and
tracking of user access change requests via IT ticketing systems and/or change
request forms.
Best practices
CIS Safeguards 5.2 Use
Unique Passwords:
Implementation includes, at a
minimum, an 8-character password for accounts using MFA and a 14-character
password for accounts not using MFA. Delete or disable any inactive accounts
after a period of 45 days of inactivity, where supported.
NIST
7621, Small Business Information Security, The Fundamentals:
Good
passwords consist of a random sequence of letters (upper case and lower case),
numbers, and special characters, and are at least 12 characters long. For
systems or applications that have important information, use multiple forms of
identification (called MFA or “dual factor” authentication). For example, when
a user logs in with a password, they may be sent a text message with a code
they have to enter as well. Biometrics, such as fingerprint readers, and other
identification devices may be used but can be expensive and difficult to
install or maintain.
Microsoft Best practices for
Windows 10 includes a minimum 14-character password as noted here.
NIST Digital Identity Guidelines 800-63-3 defines MFA:
An authentication system that
requires more than one distinct authentication factor for successful
authentication. Multi-factor authentication (MFA) can be performed using a
multi-factor authenticator or by a combination of authenticators that provide
different factors.
The three type of factors are:
·
Something you know—a password or personal
identification number
·
Something you have—an ID badge, token, or a
cryptographic key
·
Something you are—a fingerprint or other
biometric data
Additional resources in this area
include FFIEC Guidance “Authentication and Access to Financial Institution
Services and Systems”.
CIS Safeguards 6.4 and 6.5 also establishes MFA for remote access and all
privileged or administrator accounts.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7687
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 16:
Documentation of network defense and perimeter controls to include a network
diagram, firewalls, and intrusion detection/prevention systems.
A credit union''s network perimeter enables or
restricts connection to, and communication with, the internet. To control
network traffic, the credit union should use devices such firewalls to restrict
and filter traffic. A firewall is a network device or application that prevents
unauthorized access either to or from trusted and untrusted networks. A credit
union or its service provider should establish specific firewall rules that
either allow or deny inbound and outbound traffic and access to the network.
Intrusion detection systems (IDS)
or intrusion prevention systems (IPS) help identify unusual activity by
analyzing network traffic and sending alerts, and in the case of IPS, blocking
traffic from entering the network. While both IDS and ISP can typically alert
personnel to potential attacks, IPS can be configured to block activity
or take other action predefined by management. Next Generation Firewalls
include advanced threat detection with IPS, if correctly configured by staff.
The tools alone cannot be effective if they are not continually monitored for
anomalous activity. Institutions may have firewall management outsourced to a
third party or monitored internally. Third party service providers should
provide regular reports on the firewall and IDS/IPS monitoring. Additionally, a
credit union should review its firewall rules periodically.
The network topology diagram(s)
can be used to determine firewall, IDS, and IPS placement on the network.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7691
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 17:
Support for e-mail and web filtering and data loss prevention controls,
including reports or screen shots for the associated settings and rules.
Email and web vectors open opportunities for attackers to
manipulate human behavior through direct engagement. Third parties periodically
release security updates for browsers. The upgrades typically address
vulnerabilities that an attacker could exploit to take control of an affected
system. Browsers should be updated to the most current version as soon as
possible and only supported browsers should be used.
Additional controls include:
·
Enforcing and updating network-based URL filters
to limit a credit union computer from connecting to potentially malicious or
unapproved websites,
·
Deploying anti-malware protection solutions to
protect the email system, and
·
Blocking unnecessary file types with extensions
with .ade, .adp, .app, exe, .jsp, .iso, .jar, and many more.
URL filtering may include category-based filtering,
for example: entertainment, social media, adult material, and others. It can
also include reputation-based filtering, for example: IP blocking by
geographic region, or by using a block list. Credit unions typically have multiple
filtering policies applied based on either departments or specific employee
groups. These web-filtering policies or rules should be reviewed periodically
to ensure they are relevant and necessary based on business needs.
Using a spam-filtering tool and malware scanning at the
email gateway reduces the number of malicious emails and attachments. Cyber
threat actors use phishing and business email compromise (as noted in the CIS
Safeguards and NCUA Risk Alert 19-RISK-01) to exploit employee access to protected
systems. Credit unions should implement recommended controls for email service,
such as anti-phishing, anti-spam and anti-malware.
Unnecessary file types increase the risk of a malware
compromise. One recent study found that 95%
of ransomware samples were Windows-based executable files. Malware often relies on insecure end-user
behavior, such as opening attachments.
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7694
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Supplemental_Info]=N'Item(s) for Review:
IT CORE 18:
Documentation supporting the change management process to include changes to
hardware, software, applications, system configurations, and change request and
approval processes.
Change management is a process designed to
understand and minimize risks while making IT changes. The objective of change
management is to support IT service management as it implements rapid change
while minimizing the possibility of disruption to services. Changes can
potentially have significant impact on the security of the systems, therefore
written standards and procedures should guide the process of introducing
changes and defining requirements.
Credit unions should have a documented process to procure
and implement applications and system changes to hardware, software, operating
systems and other areas. Changes can be complex (core conversion, moving to
cloud), or routine (deploying a patch), but all changes should follow a formal
change management process.
The written policy and procedures should address:
·
Types of changes,
·
Risk and impact,
·
Testing,
·
Authorization and approval,
·
Timing of implementation,
·
Post installation validation,
·
Back-out or recovery,
·
Notification, and
·
Oversight.
The FFIEC IT Handbook “Architecture,
Infrastructure, and Operations” provides more details on this process:
Change Request: A documented request should outline
the reasons for the change and include the details described in the list below.
·
Authorization and approval: Approval may be
granted by IT management, a formal change committee, the IT steering committee,
or other designated personnel. Approval decisions should be based on the
overall risk of the change to IT environment.
·
Test and Implementation: Management should
document that the change performs as intended, identify any flaws (e.g.,
integrity issues), and verify that the change integrates with other systems. Management
should also follow a formal process to deploy the change during off peak hours
or planned system outages
·
Post installation validation: After
deploying change, management should validate that the change was implemented successfully
and close the change.
It’s important to include all steps in the change process.
If changes are not properly approved and tested before implementation, the
system may crash or experience glitches that may affect users of the system.
Some of the changes performed frequently or routinely may be pre-approved, such
as patch installation. When there is an ongoing cyber event or critical risk,
other changes like emergency patches or updates may be reviewed and approved
after the fact. Policy and procedures should also address emergency change
process.
A typical change management request for user access should
include:
·
The request
·
The business purpose or need
·
The person who reviewed it
·
The person who authorized/denied it
·
How long the access is needed
Additionally, user transitions should trigger a change
request to review or remove permissions and access to information as staff
leave or transition within the credit union.
A change request form should include:
·
Change type
·
Implementation timeframe
·
Risk assessment
·
Impact assessment
·
Security considerations
·
Business continuity considerations and impacts
·
Dependencies
·
Testing procedures and results
·
Back-out procedures
· Approvals
', [Scope]=N'', [Recommend_Action]=N'', [Risk_Addressed]=N'', [Services]=N'' WHERE [Mat_Question_Id] = 7699
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=6 WHERE [Mat_Question_Id] = 7709
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=7 WHERE [Mat_Question_Id] = 7710
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=7 WHERE [Mat_Question_Id] = 7712
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=8 WHERE [Mat_Question_Id] = 7713
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=9 WHERE [Mat_Question_Id] = 7714
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=10 WHERE [Mat_Question_Id] = 7716
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=11 WHERE [Mat_Question_Id] = 7717
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=12 WHERE [Mat_Question_Id] = 7718
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=7 WHERE [Mat_Question_Id] = 7720
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=8 WHERE [Mat_Question_Id] = 7721
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=9 WHERE [Mat_Question_Id] = 7722
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=10 WHERE [Mat_Question_Id] = 7723
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Question_Text]=N'Contracts address insurance coverage to be maintained by the third party' WHERE [Mat_Question_Id] = 7758
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=9 WHERE [Mat_Question_Id] = 7808
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=10 WHERE [Mat_Question_Id] = 7809
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=11 WHERE [Mat_Question_Id] = 7810
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=12 WHERE [Mat_Question_Id] = 7811
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=13 WHERE [Mat_Question_Id] = 7812
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=14 WHERE [Mat_Question_Id] = 7813
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=15 WHERE [Mat_Question_Id] = 7814
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=16 WHERE [Mat_Question_Id] = 7815
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=17 WHERE [Mat_Question_Id] = 7816
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=18 WHERE [Mat_Question_Id] = 7817
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=19 WHERE [Mat_Question_Id] = 7818
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=6 WHERE [Mat_Question_Id] = 7832
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=7 WHERE [Mat_Question_Id] = 7833
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=8 WHERE [Mat_Question_Id] = 7834
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=9 WHERE [Mat_Question_Id] = 7835
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=10 WHERE [Mat_Question_Id] = 7836
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=11 WHERE [Mat_Question_Id] = 7837
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=12 WHERE [Mat_Question_Id] = 7838
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=8 WHERE [Mat_Question_Id] = 10926
+UPDATE [dbo].[MATURITY_QUESTIONS] SET [Sequence]=13 WHERE [Mat_Question_Id] = 10930
+PRINT(N'Operation applied to 48 rows out of 48')
+
+PRINT(N'Update rows in [dbo].[GEN_FILE]')
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'LTCU 06-CU-07: IT Security Compliance Guide for Credit Unions' WHERE [Gen_File_Id] = 6092
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'LTCU SL No. 07-01' WHERE [Gen_File_Id] = 6094
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'LTCU 01-CU-21: Disaster Recovery and Business Resumption' WHERE [Gen_File_Id] = 6095
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'LTCU 01-CU-20: Due Diligence Over Third Parties' WHERE [Gen_File_Id] = 6118
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'12 CFR Part 748 Appendix B' WHERE [Gen_File_Id] = 7069
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'12 CFR Part 748 Appendix A' WHERE [Gen_File_Id] = 7070
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'LTCU 23-CU-07: Cyber Incident Notification Requirements' WHERE [Gen_File_Id] = 7073
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'LTCU 24-CU-02: Board of Director Engagement in Cybersecurity Oversight', [Name]=N'LTCU 24-CU-02: Board of Director Engagement in Cybersecurity Oversight', [Short_Name]=N'LTCU 24-CU-02: Director Engagement in Cybersecurity' WHERE [Gen_File_Id] = 7078
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'LTCU 25-CU-02: Cyber Incident Notification Requirements Update', [Name]=N'LTCU 25-CU-02: Cyber Incident Notification Requirements Update', [Short_Name]=N'LTCU 25-CU-02: Cyber Incident Requirements Update' WHERE [Gen_File_Id] = 7079
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'12 CFR 748.1', [Name]=N'12 CFR 748.1' WHERE [Gen_File_Id] = 7082
+UPDATE [dbo].[GEN_FILE] SET [Title]=N'12 CFR Part 749 Appendix B' WHERE [Gen_File_Id] = 7083
+PRINT(N'Operation applied to 11 rows out of 11')
+
+PRINT(N'Update rows in [dbo].[GALLERY_ITEM]')
+UPDATE [dbo].[GALLERY_ITEM] SET [Icon_File_Name_Small]=N'cmmc.jpeg', [Icon_File_Name_Large]=N'cmmc.jpeg', [Is_Visible]=1 WHERE [Gallery_Item_Guid] = 'c1a1a2f2-4e5d-4c9b-8d9f-1a2b3c4d5e6f'
+UPDATE [dbo].[GALLERY_ITEM] SET [Is_Visible]=0 WHERE [Gallery_Item_Guid] = '6a463c71-fe29-4189-bd7d-a0b1712b582c'
+PRINT(N'Operation applied to 2 rows out of 2')
+
+PRINT(N'Delete and re-insert rows in [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] due to identity row modification')
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1000'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10011'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10015'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10023'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10047'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10065'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10083'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10099'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10100'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10141'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1015'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10158'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10164'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10170'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10174'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10177'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10180'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10181'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10184'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1021'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1022'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10220'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10221'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10223'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10225'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10241'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10243'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10253'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10257'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10262'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10264'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10269'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10274'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10283'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10301'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10308'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10319'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10324'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10335'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1034'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10351'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10353'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10362'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10375'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10381'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10393'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10395'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10399'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1040'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10424'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10433'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10442'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10461'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10465'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10481'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1049'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10502'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10515'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10551'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10572'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10577'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10580'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10585'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1059'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10600'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10614'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10623'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10636'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10640'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10666'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10671'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10676'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1068'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10684'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10687'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10690'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10695'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10696'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10699'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'107'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10704'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10706'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10709'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10720'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10728'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10729'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10739'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1074'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10746'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10754'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10756'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10763'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1077'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10772'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10773'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10778'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10794'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10799'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'108'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1080'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10800'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10803'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10832'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10857'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10859'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1086'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10865'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10866'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10880'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10882'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10898'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10904'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10913'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10920'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10933'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10938'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10939'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10954'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10958'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10973'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'10994'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'110'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11011'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11014'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11030'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11032'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11045'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11056'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11057'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11065'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1108'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11099'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1111'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11111'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11123'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1113'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11144'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1115'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11152'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11154'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11157'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11162'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11164'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11168'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1117'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11170'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11172'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11242'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1125'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11253'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11254'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1127'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11273'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11285'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1129'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11293'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11299'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1130'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11300'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11304'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11307'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1131'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11316'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1133'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11331'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1134'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11340'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11347'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11353'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11364'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11374'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11377'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11380'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11391'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11400'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11402'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11409'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11440'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11445'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11452'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11459'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11470'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1148'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11524'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11526'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11533'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11548'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11550'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11554'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11567'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1157'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11576'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11604'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11640'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11643'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11652'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1166'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11663'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1167'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11670'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11671'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11674'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11678'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11680'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11685'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11689'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11718'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1172'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11721'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11744'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11746'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11761'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11779'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11780'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11782'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11783'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11786'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11824'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11836'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11867'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11870'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11872'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11891'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'119'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11900'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11902'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11905'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11913'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11927'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11942'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11944'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11949'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11950'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11962'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11972'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11975'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11979'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11986'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1199'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11992'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11995'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'11996'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'120'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12000'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12004'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12012'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12028'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12029'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12033'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1204'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12068'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1207'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12082'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12084'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12143'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12152'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12153'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12164'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12170'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12175'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12181'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12185'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12199'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12219'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12225'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12227'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12259'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12266'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12271'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12274'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12289'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12290'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12291'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12292'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12305'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12310'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12319'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12330'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12333'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12334'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12351'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12356'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1236'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12361'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12365'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12375'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1239'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12425'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12438'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12440'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12443'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1245'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12470'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12472'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12473'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12478'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1248'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12505'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12508'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1251'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12543'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12546'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1257'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12570'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12601'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12604'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12608'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1261'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12619'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12624'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1263'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12643'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12654'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12666'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12671'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12673'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12679'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12686'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12697'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12729'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1273'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12735'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12745'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12748'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12752'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12765'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12771'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12794'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12805'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12808'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12813'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12814'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1282'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12826'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12837'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12847'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12852'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12858'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12859'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12873'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12877'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12890'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12892'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12898'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12900'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12906'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12912'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12922'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12935'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12938'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12944'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12956'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12957'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12963'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12977'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'12980'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13028'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13035'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13044'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1309'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13102'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13103'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13115'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13121'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13131'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13132'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13161'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13167'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13180'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13186'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13190'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'132'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13224'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13233'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13242'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13248'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13254'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13261'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13265'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13271'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13274'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13279'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13290'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13300'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13305'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13321'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13329'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13334'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13345'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13355'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13367'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1339'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13391'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13392'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13402'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13416'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13426'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1343'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13432'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13439'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1344'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13456'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13469'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13472'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13476'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13481'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13492'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13495'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'135'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13503'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1351'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13516'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13519'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1352'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13526'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13533'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13534'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13544'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13559'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13583'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13591'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13599'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13601'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13602'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13605'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13634'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1364'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13649'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13654'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13655'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13659'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1367'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13672'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13682'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13687'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13690'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13704'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13729'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13737'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13760'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13762'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13763'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13766'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13777'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13790'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13791'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13794'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'138'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13800'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13821'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13823'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13828'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13833'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13842'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13852'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13857'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13873'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13885'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13898'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13902'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13919'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13926'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13933'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13938'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13939'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13940'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13941'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13944'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13965'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13966'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1397'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'13974'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1399'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14003'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1401'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14011'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14015'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14016'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14018'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14026'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14030'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1404'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14040'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14052'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14058'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14066'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1407'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14074'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1409'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14091'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14098'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1410'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14120'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14135'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14163'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14166'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14170'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14172'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14176'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14180'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14185'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14186'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14191'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14226'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14247'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14257'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14260'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1427'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14303'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14329'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14333'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14346'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14347'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14369'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14375'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14376'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1438'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14384'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14388'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14391'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14402'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14408'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14409'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14415'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14425'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14436'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14449'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14462'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14469'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14499'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14505'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14512'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14522'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14537'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1454'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14542'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14545'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14562'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14565'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14568'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1457'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14571'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14584'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'146'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1461'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14610'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14611'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14617'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14623'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1463'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14634'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14650'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14651'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14656'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14657'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14668'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14670'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14676'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14677'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14692'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'147'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14712'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1472'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14725'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14734'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14750'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14754'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14758'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1476'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14762'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14775'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14786'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14805'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14815'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14824'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14829'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14830'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14832'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14845'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14850'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14865'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14874'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14879'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14884'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14898'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14917'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1493'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14934'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14965'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'14972'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1499'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'150'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15000'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15001'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15007'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15009'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15015'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15016'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15021'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15049'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15051'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15072'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15073'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15080'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15089'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1509'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15095'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'151'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15108'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15143'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15146'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15159'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15174'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15175'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15185'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15209'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15211'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15222'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15230'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15234'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15248'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15265'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15296'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15297'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'153'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15304'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15307'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15317'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15324'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15328'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15358'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15370'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15375'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15377'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15386'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15393'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15394'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1542'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15426'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15433'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15438'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15451'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15454'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15459'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1546'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15467'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15483'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15513'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15516'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15522'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15523'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15536'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15539'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15563'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15565'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1558'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15588'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15589'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15591'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15602'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15618'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15619'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15650'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15652'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15659'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15669'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15672'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15673'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15732'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15752'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15757'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15766'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15784'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15788'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15790'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15797'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15815'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15817'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1584'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15847'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15848'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15874'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15882'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'159'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15928'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15935'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'15938'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1599'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16009'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1601'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16011'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16014'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16016'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16030'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16042'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16061'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16065'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1607'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16085'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16096'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16113'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16126'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16168'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16174'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16176'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16178'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16190'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'162'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16207'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1621'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16213'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16218'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16236'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16248'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16256'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16264'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16268'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16271'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16278'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16351'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16360'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16364'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16367'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16373'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16400'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16401'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16402'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16408'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16410'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16411'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16416'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16429'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16435'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16437'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16444'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16449'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1646'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16476'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16479'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16500'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16525'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16547'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16556'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16570'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16571'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16574'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16577'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16584'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1660'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16605'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16614'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16619'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16626'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16636'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16655'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16657'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16672'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16682'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1669'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16699'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'167'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16702'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16706'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16728'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16732'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16746'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16754'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16756'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16769'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16770'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16773'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16785'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16790'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'168'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16813'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1682'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16893'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'169'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16933'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16946'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16947'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16951'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16954'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16979'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16989'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'16993'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17012'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17014'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17017'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17023'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17040'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17057'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17100'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17105'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17107'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17112'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17117'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17126'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17127'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17136'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17154'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1717'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1718'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1719'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17218'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17224'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17232'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17243'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1725'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17250'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17253'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17254'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1726'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17269'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1729'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17311'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17331'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17335'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17339'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17361'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17362'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17371'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17372'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17389'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1739'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17395'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17396'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17398'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17411'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17429'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17436'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17437'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17449'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17454'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17464'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1750'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17550'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17555'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17569'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17587'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17588'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1759'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'176'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17623'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17630'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17636'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17642'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17675'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17679'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17681'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17687'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17691'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17752'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17831'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1784'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17841'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17847'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17849'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1785'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17861'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17865'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17878'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1788'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17885'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17914'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1792'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17953'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17955'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17969'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17990'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'17999'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18013'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18022'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18068'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18090'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1810'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18142'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18144'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1815'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18150'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1817'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18172'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18175'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18181'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18192'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18195'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18204'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1821'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18218'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18234'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18238'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18242'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18254'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1827'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18271'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18273'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1829'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18297'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1830'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18301'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18312'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18336'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18343'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18353'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1838'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18393'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18405'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18409'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18422'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18423'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18446'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1845'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18462'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18473'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18474'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1851'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18515'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18528'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18550'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18559'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18562'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18574'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18582'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18623'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18628'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18635'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18649'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18651'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1866'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1869'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'187'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1870'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18710'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18716'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18749'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18759'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18765'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18775'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1879'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1880'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18800'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18814'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18816'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1882'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18823'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18858'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18861'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18868'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1888'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18882'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18917'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18935'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18948'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18950'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18962'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18964'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'18965'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19017'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19027'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1904'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19045'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19047'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19085'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1909'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1911'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19116'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19131'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19171'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19185'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19203'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19216'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19228'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19249'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19253'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19263'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19269'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19280'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19285'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19295'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19304'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19307'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19319'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19320'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19355'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19390'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19401'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1941'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19416'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19429'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19430'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19432'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19433'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19440'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19446'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19448'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19454'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'195'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19501'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19508'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19510'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19514'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19522'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19538'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19541'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19552'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19567'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19593'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'196'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19605'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19608'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1961'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19619'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19655'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19668'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19678'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1969'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19732'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19739'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19745'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19775'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19788'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'198'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1982'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19853'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19867'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1987'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19879'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19881'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19890'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19896'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'199'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1992'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19926'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19960'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19973'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19976'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19983'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'19985'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'1999'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'200'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20002'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20004'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20007'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20013'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20015'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2003'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20041'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20042'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20053'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20060'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20061'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2008'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20114'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20147'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20186'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20194'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20204'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20207'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2021'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20222'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20228'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2024'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20258'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20267'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20279'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20290'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20292'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20302'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20303'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20324'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20336'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20341'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20354'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20382'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20392'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20394'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20410'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20417'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20419'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20438'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20448'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2046'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20463'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20469'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2049'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20496'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'205'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20509'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2051'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20513'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20516'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20529'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20543'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20547'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20550'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20558'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2056'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20570'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20581'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20585'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20591'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20595'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20600'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20610'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20622'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20623'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20629'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20641'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2065'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20656'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20661'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20662'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2068'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20684'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20691'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20720'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20727'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20749'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20773'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20805'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20823'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20824'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20839'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20842'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20857'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20861'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20874'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20885'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20890'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20891'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20921'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20951'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20957'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20974'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2098'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2099'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'20990'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21009'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21012'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21020'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21026'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21029'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21057'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21070'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21073'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21083'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21100'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21107'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21109'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21115'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2112'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21126'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21140'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2115'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21157'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21190'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21202'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21204'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21226'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21231'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21240'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21244'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21268'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2127'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21279'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21294'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21305'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2131'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21319'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21326'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21339'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21354'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21355'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21367'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21368'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21393'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2141'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21413'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21440'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21499'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21502'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21507'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21508'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21530'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2155'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21556'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2157'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21575'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2158'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21586'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21593'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'216'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21606'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21609'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21614'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21615'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21628'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21630'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21639'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21669'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2168'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21683'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21686'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21694'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21710'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21713'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21737'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21751'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21774'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21782'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21787'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21788'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21794'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21798'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2182'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21831'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21845'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21851'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21853'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2187'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21873'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21875'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21879'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21904'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2191'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21927'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21930'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21956'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21968'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'21971'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'220'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22005'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22007'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22028'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22032'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22049'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22070'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2208'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22083'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2209'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22114'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22119'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22128'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22131'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22132'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22151'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22157'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22159'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22167'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22174'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22195'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22213'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22219'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22220'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22241'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2226'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2227'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22280'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22307'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22314'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22322'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22337'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22340'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22362'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22369'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2237'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'224'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22400'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22417'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22426'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22428'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22447'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22449'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22456'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2246'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22464'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22468'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22478'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2252'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22522'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22527'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22530'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22560'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22566'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22592'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2260'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22625'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2263'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22637'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22652'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22657'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22681'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22688'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22695'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'227'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22704'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22719'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22740'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22747'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2275'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22754'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22769'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22785'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2280'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2285'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22883'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22931'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22953'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22962'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22972'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'22978'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2299'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23004'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2301'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23015'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23017'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23020'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23052'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23060'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23070'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23109'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23125'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23144'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23156'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23162'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23170'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23174'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23177'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23184'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23198'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2322'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23245'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23276'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23279'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23283'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23287'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23292'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23294'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'233'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23309'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23355'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23361'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23371'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23376'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23386'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23394'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'234'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23421'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23425'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2346'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23467'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2348'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23494'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23503'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23521'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23525'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23540'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23545'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23556'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2357'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23582'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23605'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23615'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23620'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23627'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23630'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23678'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2370'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23709'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23717'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23722'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23725'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2374'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23753'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23760'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23780'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23803'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23807'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23811'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2384'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23848'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23865'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23888'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23896'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23899'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23900'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23908'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2394'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23949'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23952'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23957'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23958'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23964'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23974'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23979'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23986'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'23990'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'240'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24003'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24026'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24029'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2403'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24030'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24034'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24036'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24039'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24043'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24047'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2405'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24073'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24077'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24078'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24090'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24108'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24110'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24123'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24131'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2414'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24140'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24150'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24165'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24167'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24171'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24181'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24187'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24189'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24192'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24197'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24199'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'242'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24200'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24202'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24204'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24212'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24219'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24220'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24221'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24223'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24224'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24226'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24232'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24234'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24235'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24236'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24238'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24239'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24246'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24250'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24254'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24257'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24262'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24266'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24270'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24274'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24279'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24281'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24284'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24286'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24290'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24292'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24299'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24304'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24312'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24313'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24324'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24326'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24358'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24362'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24373'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24381'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24382'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24384'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24385'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24387'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24390'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24396'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2440'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24402'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24404'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24405'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2441'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24410'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24414'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2442'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24421'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24422'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24423'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24428'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24429'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24430'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24431'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24432'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24433'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24434'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24435'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24437'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24438'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24439'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24443'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24445'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24451'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24454'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2446'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24463'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24464'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24465'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24470'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24472'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24481'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24482'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24483'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24484'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24486'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24490'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24491'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24492'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24495'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24501'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24506'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24508'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24511'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24516'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24523'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24524'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24526'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24530'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24534'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24535'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24536'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24539'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2454'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24540'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24542'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24543'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24545'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24546'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24547'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24549'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24552'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24553'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24557'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24560'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24563'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24564'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24566'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24567'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24575'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24578'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24579'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24583'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24589'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2460'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24603'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24605'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24606'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24612'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24614'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24615'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24623'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24626'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24627'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24629'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24630'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24631'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24632'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24637'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24640'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24642'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24649'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24657'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24661'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24668'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2467'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24670'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24673'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24674'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24676'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24679'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24682'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24683'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24688'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24690'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24692'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24693'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24694'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24695'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24698'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24703'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24704'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24705'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24709'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24710'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24711'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24712'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24713'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24718'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24720'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24724'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24725'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24726'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24730'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24731'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24742'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24743'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24746'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24748'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24751'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24753'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24759'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24763'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24767'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24769'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24770'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24771'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24773'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24774'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24776'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24780'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24781'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24783'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24784'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24796'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24797'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24801'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24802'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24804'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24807'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24808'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24810'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24811'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24812'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24813'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24814'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24816'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24818'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24819'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24823'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24824'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24826'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24829'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24831'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24839'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24841'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24843'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24845'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24847'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24848'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24849'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24850'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24851'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24853'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24854'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24855'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24857'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24858'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24859'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24860'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24861'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24862'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24863'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24866'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24867'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24868'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24871'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24872'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24873'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24874'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24875'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24876'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24877'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24878'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24880'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24881'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24883'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24885'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24887'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24888'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24889'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24892'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24893'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24894'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24895'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24896'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24899'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24901'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24902'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24903'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24904'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24905'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24906'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24908'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24909'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24910'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24911'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24914'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24916'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24917'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24918'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24919'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24920'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24921'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24923'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24924'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24925'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24927'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24928'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24929'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2493'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24930'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24931'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24934'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24935'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24936'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24937'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24940'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24941'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24942'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24944'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24945'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24946'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24947'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24948'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2495'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24950'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24951'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24952'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24953'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24954'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24955'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24956'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24957'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24958'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24959'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24960'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24961'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24962'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24963'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'24964'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2498'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2505'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2507'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2508'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2535'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2540'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2551'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2554'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'256'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2562'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2574'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2577'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'258'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2583'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2585'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'26'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2612'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2617'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'262'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2625'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2641'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2643'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2645'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2657'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'266'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2682'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2705'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2709'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2711'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2713'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2730'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'274'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2740'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2742'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2744'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2760'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2769'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'277'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2782'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2791'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2792'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2794'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2796'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'28'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2800'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2806'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2815'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2818'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2819'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2834'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2843'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2847'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'287'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2874'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2876'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'288'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2881'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2892'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2918'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2932'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2935'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'294'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2953'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'2959'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3006'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3012'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3025'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3029'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'303'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3050'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3056'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'306'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3061'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3064'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3080'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3085'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3110'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3120'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3126'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3130'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3140'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3182'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'319'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'320'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3202'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3212'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3218'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3226'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3237'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3251'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3256'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3264'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3278'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3285'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3291'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3306'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3316'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3337'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3356'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3360'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3388'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3391'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'340'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3412'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3413'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3420'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3438'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3439'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3447'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3454'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3462'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3475'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3476'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3487'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'352'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3526'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3536'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3541'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3544'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3551'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3558'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3571'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3574'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3575'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3576'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3601'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3602'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'361'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3631'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3633'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'365'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3655'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'367'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3683'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3685'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'370'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3710'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3711'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3720'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'373'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3736'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3738'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3746'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3748'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3755'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3757'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3759'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'376'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3764'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3775'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'378'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3787'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3790'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3796'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3800'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3810'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3819'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3828'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3830'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3841'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3850'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3853'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3868'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3869'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'389'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'390'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3907'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3938'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3945'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3946'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3947'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'395'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3951'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3963'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'3972'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4015'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4020'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4022'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4024'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4025'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4037'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4038'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'404'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4043'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4060'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4078'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4088'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4090'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4095'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4098'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4116'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4118'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4120'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4122'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4127'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4135'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4142'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4148'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4152'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4158'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4163'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4164'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4170'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4175'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4176'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4192'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'42'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4202'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'422'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4227'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4240'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4246'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4261'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4271'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4281'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4291'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4292'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'430'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'435'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4365'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4366'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4369'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4374'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4393'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4395'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4400'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4401'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4416'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4427'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'444'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4441'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4461'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4472'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4480'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4487'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4488'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4509'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'452'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4524'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4531'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4580'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4584'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4611'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4633'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'464'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4684'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'47'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4714'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4726'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'473'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4731'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4735'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4746'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'475'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4756'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'477'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4787'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4792'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4794'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4799'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'48'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4805'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4809'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4828'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'484'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4845'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4853'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4871'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4878'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4884'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'489'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4894'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'490'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4906'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4915'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4936'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4951'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4960'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4963'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4966'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4968'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4969'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'4982'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5028'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5029'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5045'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5086'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'51'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'511'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5116'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5123'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5127'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5134'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'514'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5144'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5163'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5168'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'517'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5170'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5227'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5234'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'524'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5241'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5252'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5256'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5257'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5272'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'528'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5286'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5291'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'53'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5318'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5321'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5325'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5337'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5345'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5359'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5366'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5370'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5373'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'538'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5380'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5387'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5419'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5422'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5431'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5439'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5465'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5484'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5487'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5495'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5500'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5510'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5524'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5530'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5531'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5536'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5539'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5546'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5547'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5549'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5554'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5561'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5569'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5571'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5579'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5582'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5588'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5589'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5602'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5604'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5612'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5621'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5636'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5641'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5652'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5655'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'566'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5660'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'567'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5684'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5686'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5713'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5718'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5721'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5736'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5748'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5754'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'577'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5773'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5780'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5781'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5785'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5797'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5811'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5816'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5822'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5839'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5845'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5851'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5852'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5856'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5866'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5867'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5885'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5892'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5913'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5922'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5924'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5928'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5930'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5935'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'594'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5960'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5970'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5974'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5982'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'5987'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60002'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60013'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60024'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60037'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60039'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60041'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60042'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60048'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60051'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60056'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60057'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60059'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60060'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60077'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60079'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6008'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60082'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60087'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60095'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60103'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60105'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6011'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60110'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60113'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6012'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60125'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60137'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60149'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60151'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60153'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60160'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60164'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60165'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60167'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60175'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60184'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60186'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60189'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60190'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60198'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60201'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60205'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60207'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60212'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60215'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60216'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60238'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60239'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60242'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60247'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60255'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60261'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60263'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60269'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60275'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60279'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60293'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60295'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60299'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60302'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60304'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60307'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6032'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60325'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60335'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60337'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60345'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60346'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60363'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60369'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60377'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60378'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60388'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60389'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6039'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60390'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60392'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60396'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60400'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60406'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60408'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60409'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60423'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60428'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60429'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60435'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60436'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60438'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60457'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60466'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60467'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60470'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60475'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6048'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60483'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60484'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60491'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60494'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60497'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60500'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60501'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60509'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60522'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6053'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60531'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60533'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60543'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60545'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60582'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60583'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'606'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60605'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60608'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60619'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60627'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60645'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60646'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60657'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60660'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60666'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60680'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60683'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60686'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60688'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60689'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60696'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6070'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60705'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60707'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60712'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60716'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60718'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60721'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60726'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60728'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60731'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60735'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60745'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60747'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60750'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60755'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60768'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60780'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60782'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60784'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60787'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6079'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60790'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60791'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60798'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60799'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60801'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60806'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60816'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60823'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60825'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6084'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60852'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60855'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60863'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60873'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6088'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60883'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'609'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60906'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60920'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60923'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60928'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60930'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60931'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60934'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60936'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60942'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60947'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6095'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60967'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60968'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60978'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60991'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'60994'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6102'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61021'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61028'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61048'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61055'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61056'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61065'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61068'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61077'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61085'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61088'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61089'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61090'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61093'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61094'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61101'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6112'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61123'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61128'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61135'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61136'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61150'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61152'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61157'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61159'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6116'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61160'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61165'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61170'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61185'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61186'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61189'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61209'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61219'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61220'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61230'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61231'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61232'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61233'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61239'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61256'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61257'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61260'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61261'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61265'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61267'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61268'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61277'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61286'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61290'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61306'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61315'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61318'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61324'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61330'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61336'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61339'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6134'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61365'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61368'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61387'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61391'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61393'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61404'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61405'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61425'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61437'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6144'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61447'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61448'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61453'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61457'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61474'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61495'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6150'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61503'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61515'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61518'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61522'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61525'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61527'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61540'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61552'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61559'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61560'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61566'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61598'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6160'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61604'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61619'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61620'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61623'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61624'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61631'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61633'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61636'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61637'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61638'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61643'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61650'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61657'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61664'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61667'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61677'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61682'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61693'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61698'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61701'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61724'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61734'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61748'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6175'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61755'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61756'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61758'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61759'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61760'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61765'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61778'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61779'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6178'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61783'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6179'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61790'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61792'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61795'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61797'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61800'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61808'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61810'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61823'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61824'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61831'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61838'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6184'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61844'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61847'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6187'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61872'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61879'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'619'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61908'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61909'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61918'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61920'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61926'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61933'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61936'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61942'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61944'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61946'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61949'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61953'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6196'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61963'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61986'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61988'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61995'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'61999'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'620'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62010'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62018'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62026'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62027'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62028'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62031'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62035'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62038'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62040'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62047'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62048'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62049'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62066'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62072'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62076'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62079'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6208'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62085'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62114'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62121'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62123'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6214'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62141'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62143'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62144'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62148'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62160'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62167'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62169'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62172'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62196'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62203'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62217'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62218'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62219'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62228'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62243'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62245'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62249'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6225'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62258'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62264'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62316'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62322'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62325'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6233'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62330'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62337'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62338'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62339'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62340'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62344'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62347'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62352'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62356'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62358'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62367'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6237'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62370'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62380'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62393'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'624'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6240'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62406'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62417'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62419'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62422'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62426'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62429'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62431'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62432'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62433'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62438'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62441'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62446'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62452'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62471'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62474'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62479'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6248'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62482'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62484'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62486'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62497'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62500'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62502'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62504'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62508'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62509'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62514'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62517'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62536'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62537'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62542'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62543'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62562'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62563'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62564'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62571'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62573'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62574'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62588'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62589'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62590'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62593'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62598'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62599'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62604'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62611'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62620'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62624'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62628'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62637'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62638'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62641'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62642'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62656'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62661'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62664'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62673'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62677'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62683'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6269'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62701'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62702'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62710'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62716'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62717'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62726'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62728'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62736'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62745'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6275'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62756'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6277'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62776'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62783'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62787'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62796'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62801'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62808'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62812'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62815'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62822'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62826'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62827'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62829'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62841'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62847'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62848'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62854'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62855'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62872'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62877'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62878'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6288'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62881'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62882'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62894'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62895'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62896'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62897'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62903'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62905'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62918'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62923'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62929'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62930'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62936'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62937'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62939'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62950'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62960'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62964'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62965'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62969'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62976'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62978'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62983'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62985'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'62998'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63004'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63008'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63020'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6304'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63042'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63055'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63057'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63058'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63069'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63090'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63098'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63100'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63103'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63109'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6311'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63116'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63122'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63124'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63125'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63133'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63137'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63142'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63143'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63157'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63159'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63169'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6317'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63177'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6318'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63183'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63189'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63194'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63196'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63199'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63201'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63211'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63213'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63217'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63218'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63249'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63258'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6326'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63262'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63268'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63272'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6328'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63286'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63299'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63300'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63306'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63315'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63319'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6332'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63342'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63368'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63373'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63374'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63375'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63377'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63378'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63386'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63388'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63389'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6339'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63398'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63405'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63420'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63425'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63440'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63442'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63445'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63446'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63447'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63459'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63468'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63476'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63507'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63519'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6353'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63541'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63545'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63566'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63589'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63595'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63597'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63598'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63602'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63606'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63614'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63627'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63630'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63639'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63676'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63679'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6368'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6369'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6370'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63704'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63716'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63757'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63783'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63789'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63791'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63802'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63805'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63828'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63829'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63830'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63832'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63834'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63837'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63844'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63851'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63859'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63868'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63891'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63896'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63899'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63903'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63923'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63932'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63940'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63958'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63965'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63971'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63977'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63988'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'63996'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'640'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64029'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64030'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64034'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64036'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64037'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64038'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64049'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64056'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64059'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64084'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64089'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64103'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64108'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64110'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64122'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64131'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64140'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64144'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64145'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64166'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64168'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64169'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64171'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6418'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64186'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64191'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64196'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64199'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64203'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64208'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64212'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64222'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64231'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64234'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6424'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64242'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64252'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64267'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64269'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64271'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64275'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64281'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64282'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64294'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64304'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64332'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6434'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64340'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64342'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64359'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64361'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64380'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64390'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64394'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64397'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64408'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64412'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64417'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64418'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64421'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64425'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6443'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64441'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64462'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64471'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64482'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64503'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64518'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64528'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64531'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64568'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64594'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64598'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64603'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64606'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64621'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6464'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64645'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64655'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6466'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64660'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64688'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64690'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64691'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64703'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64709'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64718'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6472'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64731'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64746'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64755'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64759'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64762'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64766'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64777'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64778'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64782'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64825'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64833'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64834'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64835'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64850'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64852'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64856'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64868'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64878'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64880'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64882'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64883'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64886'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64892'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64893'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64896'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'649'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64913'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64917'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64920'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64932'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64938'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64939'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64942'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64948'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64967'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64970'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6498'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64986'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64991'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'64999'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65003'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65013'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65039'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65040'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65046'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65059'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6506'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65071'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65078'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65082'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65085'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65088'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65090'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65091'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65111'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65136'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65150'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65155'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65186'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65193'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65205'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65208'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65211'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65231'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65238'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65239'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65242'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65243'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65256'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65259'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6527'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65291'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65299'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65305'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65346'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65356'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65371'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65378'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65384'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65388'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65398'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65402'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65411'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65412'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65421'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65424'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65426'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65427'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65448'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65464'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65466'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65471'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65484'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65491'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65493'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65503'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65513'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65521'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65528'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65555'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65561'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65564'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65565'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65578'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65595'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65606'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65636'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65639'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65640'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65656'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65680'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65712'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65722'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65728'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65735'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6574'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65759'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65770'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65774'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65775'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65780'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65781'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65788'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65803'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65809'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65816'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65817'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6584'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65841'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65843'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65856'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65861'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65862'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65874'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65896'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65905'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65906'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65954'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65988'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'65995'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66002'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66012'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66036'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66044'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66066'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66089'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66097'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66116'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66117'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66126'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66130'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66143'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66149'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66155'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66157'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66158'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66159'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66185'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66207'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66252'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66253'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66258'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66259'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6626'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66268'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6627'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66270'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66274'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6628'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66296'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66299'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'663'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66300'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66310'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66317'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66319'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66320'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66324'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66328'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66329'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66330'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66331'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66333'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66336'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66337'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66340'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66343'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66346'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66349'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66350'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66351'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66353'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66354'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66357'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66359'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6636'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66364'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66365'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66366'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66369'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66370'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66372'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66373'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66374'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66376'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6638'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66388'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66393'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66395'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66399'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66410'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66418'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66423'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66424'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66430'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66431'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66434'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66437'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66439'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66447'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66448'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66449'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66451'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66456'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66461'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66466'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66476'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66477'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66492'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66499'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66503'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66513'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6652'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66529'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66530'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66537'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66538'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66545'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66546'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66547'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66549'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66555'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66565'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66582'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66584'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66585'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66592'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66593'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66594'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66595'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66597'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66615'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66618'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66622'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66625'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66633'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66637'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66638'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66640'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66642'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66652'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66660'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66662'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66663'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6667'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66675'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66677'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66678'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66683'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66686'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66699'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6670'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66703'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66705'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66706'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66707'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66710'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6672'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66731'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66734'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6674'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66742'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66750'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66751'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66752'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66755'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66760'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66777'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66779'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66787'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66788'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6679'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66798'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6680'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6681'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66818'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66819'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66824'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66834'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66835'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66841'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66844'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66847'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66848'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6685'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66851'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66854'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66856'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66857'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66860'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66862'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66865'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66867'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6687'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66872'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66877'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66878'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66886'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6689'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66899'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66913'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66924'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66929'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66933'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6694'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66942'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66954'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66956'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66965'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66967'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66970'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66973'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66975'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66980'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66983'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66998'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'66999'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67000'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67003'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67005'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67009'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67012'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67017'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67021'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67022'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67024'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67056'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67066'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67076'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67078'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67079'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67096'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67108'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6711'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67110'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67127'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67129'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67130'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67132'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67140'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67146'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67147'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67149'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67153'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67156'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67160'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67163'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67173'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67176'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67178'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67181'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67183'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67184'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67185'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67187'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67190'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67195'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67196'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67197'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67200'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67201'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67208'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67214'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6722'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67222'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67226'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67237'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67238'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67240'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67243'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67248'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6725'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67251'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67252'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6726'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67262'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67263'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67264'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67269'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67270'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67278'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67290'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67297'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67309'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67316'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67318'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67319'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67323'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67329'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67330'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67332'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67334'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67336'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67337'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67338'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67340'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67341'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67342'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67344'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67347'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67348'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67349'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67352'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67354'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67364'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67367'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67371'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67382'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67388'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67389'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6739'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67390'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67395'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67403'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67407'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67408'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67414'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67416'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67417'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67425'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67427'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67428'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6743'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67431'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67432'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67434'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67436'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67439'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67440'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67441'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67444'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67446'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67452'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67456'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67465'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67468'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67469'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6747'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67470'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67473'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67474'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67475'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67477'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67480'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67481'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67483'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67485'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67486'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67489'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67493'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67494'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67499'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67505'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67507'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67508'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67510'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67511'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67512'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67516'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67517'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67519'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67521'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67531'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67534'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67535'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67537'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67538'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67541'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67542'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67544'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67545'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67547'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67549'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67550'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67554'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67558'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67563'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67564'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67573'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67574'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67576'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67578'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67579'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67581'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67587'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67592'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67599'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67602'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67604'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67605'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67608'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67609'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67611'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67612'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67615'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67619'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67621'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67622'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67624'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67625'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67627'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67630'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67634'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67638'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67639'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67641'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67642'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67645'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67648'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67649'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67651'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67660'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67661'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67664'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67666'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67668'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67669'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67681'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67682'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67683'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67687'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67688'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67691'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67695'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67701'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67703'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67709'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67710'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67713'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67716'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67717'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6772'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67720'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67725'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67730'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67738'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67739'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6774'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67747'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67748'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67749'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6775'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67750'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67757'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67761'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67762'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67767'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67770'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67776'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67778'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67779'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6778'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67783'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67785'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67789'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67797'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67799'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'678'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67800'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67801'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67804'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67812'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67829'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67831'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67835'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67836'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67837'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67841'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6785'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67855'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67856'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67864'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67865'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67869'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67872'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67874'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67875'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67882'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67890'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67891'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67892'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67894'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67902'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67911'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67915'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67921'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67922'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67924'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67927'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67928'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67933'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67936'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67937'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67938'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67946'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67951'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67955'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67959'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67963'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67965'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67970'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67971'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67972'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67974'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67976'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67979'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67982'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67993'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'67995'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68005'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68008'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68010'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68011'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68021'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68038'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68042'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68044'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68046'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68052'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68053'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68057'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68061'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68062'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68069'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68071'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68073'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68077'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68085'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68095'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68097'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68098'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68100'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68101'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68104'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68112'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68113'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68119'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68120'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68124'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68126'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68127'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68135'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68137'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68138'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68144'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68148'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68150'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68153'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68161'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68165'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68167'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68171'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68172'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68173'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68180'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68181'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68186'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68187'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68190'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68196'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68203'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68204'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68205'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68210'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68215'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68222'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68223'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68224'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68225'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68226'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68227'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68228'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68229'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68231'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68239'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68240'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68241'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68242'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68244'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68248'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68251'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68253'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68254'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68255'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68256'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68257'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68259'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68266'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68271'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68273'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68274'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68278'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68280'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68283'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68284'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68286'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68287'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68291'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68293'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68295'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68296'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68297'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68298'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68300'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68301'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68302'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68305'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68315'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68316'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68317'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6832'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68321'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68322'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68324'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68328'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68331'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68332'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68342'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68343'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68349'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68353'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68354'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68356'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68358'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68359'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68361'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68366'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68369'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68371'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68373'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68374'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68376'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68377'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68386'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68389'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68391'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68394'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68395'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68402'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68409'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68410'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68413'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68415'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68416'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68417'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68420'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68421'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68423'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68425'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68428'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68429'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68430'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68433'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68434'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68437'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68439'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6844'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68440'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68441'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68442'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68443'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68444'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68445'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68447'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68448'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68449'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68451'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68453'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68456'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68457'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68458'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68459'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68460'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68463'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68465'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68469'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68471'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68474'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68476'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68479'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68482'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68483'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68485'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68487'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68490'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68491'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68493'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68494'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68495'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68502'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68503'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68505'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68508'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68510'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68511'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68513'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68517'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68524'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68529'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6853'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68530'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68531'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68536'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68540'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68545'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68546'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68547'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68549'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68557'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68558'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68559'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68560'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68561'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68562'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68563'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68565'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68567'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68571'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68572'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68574'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68575'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68576'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68577'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68579'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68581'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68583'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68584'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68586'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68587'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68588'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68589'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6859'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68595'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68596'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68597'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68598'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68600'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68601'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68602'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68603'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68604'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68605'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68606'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68607'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68608'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68609'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68615'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68617'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68620'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68622'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68623'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68628'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68629'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68631'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68632'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68638'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68639'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68641'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68643'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68645'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68646'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68647'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68651'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68656'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68657'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68659'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68660'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68661'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68662'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68663'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68664'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68665'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68666'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68667'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68668'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68669'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68670'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68671'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68672'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68673'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68674'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68675'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68676'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68677'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68678'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68679'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68680'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68681'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68682'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68683'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68684'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68685'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68686'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68687'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68688'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68689'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68690'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68691'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68693'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68694'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68696'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68697'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68698'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'687'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6870'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68701'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68702'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68703'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68705'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68706'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68707'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68708'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68709'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6871'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68710'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68711'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68712'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68713'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68714'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68716'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68717'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68718'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68719'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68720'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68722'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68727'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68730'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68731'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68732'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68734'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68735'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68736'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68737'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68738'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68739'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68740'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'68741'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6878'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6885'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6898'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'690'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6918'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6920'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6930'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6936'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6944'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6949'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6974'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6986'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'6992'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7000'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7002'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7020'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7021'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7023'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7024'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7027'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7039'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7045'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7064'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7066'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7067'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7069'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7072'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7088'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7091'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7101'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7118'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7126'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7129'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7149'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7151'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7154'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'716'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7172'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7182'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7184'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7210'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7217'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7219'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7238'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7244'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7253'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7256'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7264'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7289'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7297'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7301'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7307'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7316'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7331'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7345'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7346'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7361'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7376'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7383'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7392'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7397'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7405'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7415'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7423'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7428'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7448'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7465'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7471'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7473'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7482'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7504'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7509'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7520'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7524'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7531'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7534'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7544'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7546'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7552'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7557'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7573'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7590'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7599'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7608'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'761'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7610'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7628'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7633'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7641'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7652'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7656'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7662'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7672'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7674'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7677'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7684'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7688'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'77'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'770'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7700'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7716'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7717'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7722'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7724'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7731'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7748'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7770'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7776'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7790'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7817'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7821'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7822'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7825'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7835'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7842'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7844'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7846'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'785'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7870'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7873'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7875'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7877'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'79'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7910'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7916'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7925'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'794'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'795'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7955'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7958'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7960'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7970'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'798'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7989'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7992'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'7999'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8000'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8001'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8006'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8037'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8039'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8052'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8059'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8069'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8074'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8077'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'808'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8080'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8097'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8100'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8110'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8111'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8113'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8116'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8118'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8119'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8129'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8132'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'81402'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8141'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'81416'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'81553'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'81688'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8169'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'817'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'818'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8187'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8212'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8216'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8218'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8229'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8230'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8237'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82504'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82527'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82547'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8255'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8261'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82762'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82769'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82770'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82772'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82789'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82791'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82793'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'82794'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8290'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8298'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8299'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8313'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8317'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'832'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8333'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8339'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8344'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8349'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8367'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'838'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'839'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'841'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8413'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8418'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8428'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8433'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8435'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8442'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8445'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'845'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8474'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8475'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8486'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'850'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'851'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8512'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8523'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8530'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'854'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8540'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8548'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8549'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8550'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8554'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'856'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'857'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'858'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8585'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8588'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8593'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'86063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8609'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8611'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8616'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8618'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8625'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8626'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8642'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8654'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'86752'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'86755'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'86756'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8687'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8693'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8694'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8701'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8709'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'871'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'872'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8725'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8733'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8749'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8752'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8774'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8791'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8797'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8801'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8812'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8822'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8825'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8828'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8831'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'884'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8840'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8854'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8858'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'887'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'888'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8881'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8885'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8890'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8903'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8905'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8913'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8915'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8920'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8921'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8922'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8925'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8936'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8940'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8944'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8962'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8967'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8975'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8987'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8988'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'8993'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'90'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'900'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9000'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9003'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9007'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9042'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9044'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9071'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9075'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9082'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9089'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'909'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9090'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9093'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9094'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9095'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9097'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9099'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9102'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9105'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9106'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9107'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9109'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'911'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9115'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9119'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9145'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9146'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9148'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'916'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9160'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9163'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9164'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9189'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9194'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9208'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9213'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9214'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9219'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9229'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9230'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9237'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9246'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9247'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9248'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'926'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9260'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9287'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9288'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9289'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9292'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9293'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9296'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'930'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9300'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9310'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'932'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9327'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9335'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9348'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9349'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9358'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9370'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9373'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9376'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9381'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9398'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9408'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9411'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9413'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9441'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9457'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'946'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9469'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9475'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9476'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9479'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'948'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9483'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9486'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9496'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9497'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9500'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95008'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9501'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95042'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95052'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95071'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95072'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95073'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'951'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95107'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9517'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9518'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9522'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9527'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9532'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9537'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9554'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9555'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9556'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9566'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95742'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95786'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95802'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9582'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95821'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'95826'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9589'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9590'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'960'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9604'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96066'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9607'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96071'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96084'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9613'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9622'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9639'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'964'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9643'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9644'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9662'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96652'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96658'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96660'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96672'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96674'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96691'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96699'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'967'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96706'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96707'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96711'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96719'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96722'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96737'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96750'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96755'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96756'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9676'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96761'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96768'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96770'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96796'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96799'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96808'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9681'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'96821'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97052'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97053'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97059'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97063'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97066'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97068'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97069'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97071'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97073'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97076'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97077'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97078'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97079'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97084'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97085'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97086'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97089'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97093'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97094'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97095'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97096'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97097'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97098'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97100'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97101'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97102'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97103'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97104'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97105'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97106'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97107'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97108'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97109'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97110'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97111'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97112'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'97113'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9715'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9723'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9759'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9776'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9777'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9778'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9788'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9799'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'98'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9805'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9810'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9812'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9822'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9823'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9843'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'986'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9871'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9873'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9877'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'988'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9880'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9888'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9893'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9897'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9907'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9915'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9919'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9923'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9924'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9931'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9943'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9952'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9971'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9974'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9976'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9986'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9988'
+DELETE FROM [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] WHERE [Charter] = N'9994'
+SET IDENTITY_INSERT [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ON
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1000',175,N'SIERRA PACIFIC',N'RENO',N'NV',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10011',1329,N'MUNICIPAL EMPLOYEES',N'BOGALUSA',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10015',1330,N'ALLENTOWN',N'ALLENTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10023',1331,N'ISLAND',N'Hauppauge',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10047',1332,N'WABELLCO',N'Washington',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10065',1333,N'MYCOM',N'Pittsfield',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10083',1335,N'LIMESTONE',N'Manistique',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10099',1336,N'TORCH LAKE',N'LAURIUM',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10100',1337,N'TRUCHOICE',N'PORTLAND',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10141',1338,N'DERTOWN SCHOOL',N'Latrobe',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1015',176,N'NORTH JERSEY',N'Totowa',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10158',1341,N'OK',N'Bartlesville',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10164',1342,N'HEART OF LOUISIANA',N'PINEVILLE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10170',1343,N'CITIZENS',N'Big Spring',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10174',1344,N'FIRSTLIGHT',N'El Paso',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10177',1345,N'TAYCO EMPLOYEES',N'South Shore',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10180',1346,N'FORT MORGAN SCHOOLS',N'Fort Morgan',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10181',1347,N'OUACHITA VALLEY',N'West Monroe',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10184',1348,N'FRIENDLY',N'Aliquippa',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1021',177,N'FIRST FINANCIAL',N'Freehold',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1022',178,N'SOUTH CAROLINA',N'NORTH CHARLESTO',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10220',1350,N'FOCUS FIRST',N'Rochester',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10221',1351,N'GREAT FALLS REGIONAL',N'Lewiston',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10223',1352,N'EVERENCE',N'Lancaster',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10225',1353,N'BECCO BUFFALO',N'TONAWANDA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10241',1354,N'MAPLE',N'Lafayette',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10243',1355,N'OAHE',N'Pierre',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10253',1357,N'AKRON',N'Akron',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10257',1358,N'SENTINEL',N'BOX ELDER',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10262',1359,N'ALTAMAHA',N'Jesup',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10264',1360,N'VALLEY WIDE OF PA',N'Tarentum',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10269',1361,N'CHEROKEE COUNTY TEACHERS',N'RUSK',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10274',1362,N'W B H EMPLOYEES',N'Paducah',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10283',1363,N'THE FOCUS',N'OKLAHOMA CITY',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10301',1364,N'ROMNEY',N'ROMNEY',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10308',1365,N'ALTON MUNICIPAL EMPLOYEES',N'ALTON',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10319',1366,N'FIRST POINT',N'HAMILTON',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10323',1367,N'I B E W 26',N'LANHAM',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10324',1368,N'JACKSON COUNTY',N'Edna',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10327',1369,N'VICTORIA TEACHERS',N'Victoria',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10335',1370,N'COCONINO',N'Flagstaff',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1034',180,N'OLIVE VIEW EMPLOYEES',N'SYLMAR',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10351',1371,N'LA LOMA',N'Loma Linda',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10353',1372,N'ACCESS OF LOUISIANA',N'Lake Charles',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10362',1373,N'NORTHERN REDWOOD',N'Arcata',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10375',1375,N'1ST LIBERTY',N'Great Falls',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10381',1377,N'FERKO MD',N'Frederick',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10393',1379,N'ELECTRICAL WORKERS LOCAL 130',N'METAIRIE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10395',1380,N'KINGS',N'Hanford',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10399',1381,N'KAHULUI',N'KAHULUI',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1040',182,N'CAPITAL EDUCATORS',N'MERIDIAN',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10424',1382,N'LAS COLINAS',N'Irving',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10433',1383,N'BOPTI',N'SAN PEDRO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10442',1384,N'UNITED TRADES',N'TUALATIN',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10461',1385,N'MCLENNAN COUNTY EMPLOYEES',N'Waco',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10465',1386,N'UNIVERSITY OF HAWAII',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10481',1387,N'MCMURREY',N'TYLER',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1049',183,N'MEMBERSFIRST CT',N'MERIDEN',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10502',1388,N'YANTIS',N'YANTIS',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10515',1389,N'NEW ORLEANS CLERK & CHECKERS',N'METAIRIE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10520',1390,N'ALDERSON FCI',N'Alderson',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10551',1393,N'SCURRY COUNTY SCHOOL',N'SNYDER',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10572',1394,N'FITZSIMONS',N'AURORA',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10577',1395,N'BIG SPRING EDUCATION EMPLOYEES',N'BIG SPRING',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10580',1397,N'U-1ST COMMUNITY',N'Carlsbad',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10585',1398,N'LINCONE',N'LINCOLN',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1059',184,N'GRAND CENTRAL TERMINAL EMPLOYEES',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10600',1399,N'AIR ACADEMY',N'Colorado Spring',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10613',1400,N'NIAGARA FALLS A F',N'Niagara Falls',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10614',1401,N'KEARNY MUNICIPAL EMPLOYEES',N'kearny',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10623',1402,N'WELLESLEY MUNICIPAL EMPLOYEES',N'wELLESLEY',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10636',1403,N'BRUNSWICK COUNTY TEACHERS',N'Lawrenceville',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10640',1404,N'CUSA',N'Covington',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10648',1406,N'MARYKNOLL OF L A',N'Los Angeles',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10666',1407,N'GRAND HERITAGE',N'LAPORTE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10671',1408,N'GREATER PITTSBURGH',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10676',1409,N'KNOX COUNTY TEACHERS',N'Knoxville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1068',185,N'COMPASS FINANCIAL',N'Hialeah',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10684',1410,N'MERIDIA COMMUNITY',N'HAMBURG',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10687',1411,N'HORIZON',N'Williamsport',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10690',1412,N'FAYETTE FEDERAL EMPLOYEES',N'UNIONTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10695',1413,N'MORGANTOWN A E S',N'Morgantown',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10696',1414,N'EDUCATIONAL SYSTEMS',N'Greenbelt',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10699',1415,N'SAN ANTONIO CITIZENS',N'SAN ANTONIO',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'107',24,N'KEMBA ROANOKE',N'SALEM',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10704',1416,N'P C',N'PORT ALLEGANY',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10706',1417,N'COMMUNITIES OF ABILENE',N'Abilene',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10709',1418,N'UTAH COMMUNITY',N'Provo',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10720',1419,N'NORTH PENN',N'COLMAR',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10728',1420,N'LEWISTON PORTER',N'YOUNGSTOWN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10729',1421,N'THE NEW HAVEN POLICE AND MUNICIPAL',N'New Haven',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10739',1423,N'ANDREWS SCHOOL',N'Andrews',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1074',186,N'FARMERS INSURANCE',N'Los Angeles',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10741',1424,N'PUBLIC SERVICE E.D. TRENTON',N'Mercerville',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10746',1425,N'UPSTATE TELCO',N'Gloversville',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10754',1426,N'TYNDALL',N'Panama City',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10756',1427,N'FIRST LINCOLN',N'Lincoln',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10763',1428,N'ELECTRICAL WORKERS NO 22',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1077',187,N'TOBACCO VALLEY TEACHERS',N'Enfield',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10772',1429,N'LAKES',N'Monticello',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10773',1430,N'STRATTON AIR NATIONAL GUARD',N'SCOTIA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10778',1431,N'H A L E',N'INDIANAPOLIS',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10794',1433,N'THE COUNTY',N'Presque Isle',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10799',1434,N'LONGSHOREMEN''S LOCAL 4',N'Vancouver',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'108',25,N'KEMBA CHARLESTON',N'Dunbar',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1080',188,N'DISTRICT #6',N'Hornell',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10800',1435,N'THE HEALTH & EDUCATION',N'Lexington',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10803',1436,N'ISRAEL MEMORIAL A M E',N'Newark',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10832',1438,N'FORT SILL',N'Lawton',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10857',1441,N'DEER LODGE COUNTY SCHOOL EMP',N'Anaconda',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10859',1442,N'W T COMMUNITY',N'Cincinnati',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1086',190,N'SUWANNEE RIVER',N'LIVE OAK',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10865',1443,N'GREATER WATERBURY HEALTHCARE',N'WATERBURY',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10866',1444,N'KINETIC',N'Columbus',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10880',1445,N'PINELLAS',N'Largo',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10882',1446,N'LOCAL UNION 1186 IBEW',N'HONOLULU',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10898',1447,N'MIDCOAST',N'Freeport',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10904',1448,N'GRANCO',N'Ephrata',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10913',1449,N'SOUTHWEST RESEARCH CENTER',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10920',1450,N'ARKANSAS',N'Little Rock',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10933',1451,N'SERVU',N'Painted Post',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10938',1452,N'HAWAII FIRST',N'Kamuela',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10939',1453,N'BANGOR',N'BANGOR',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10954',1454,N'METHUEN',N'Methuen',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10958',1455,N'FIRST EAGLE',N'Owings Mills',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10973',1456,N'UFCW COMMUNITY',N'WYOMING',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'10994',1457,N'NAFT',N'Pharr',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'110',26,N'ITALO-AMERICAN',N'Glendale',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11011',1458,N'LAREDO',N'Laredo',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11014',1459,N'EAST ORANGE FIREMENS',N'Bloomfield',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11030',1460,N'GRASSLANDS',N'CIRCLE',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11032',1461,N'HEART O'' TEXAS',N'Waco',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11045',1462,N'PBA',N'Pine Bluff',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11056',1463,N'NORTHEAST ALABAMA POSTAL',N'anniston',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11057',1464,N'FIRST FAMILY',N'Henryetta',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11065',1465,N'SECURITY SERVICE',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11067',1466,N'4U',N'Gainesville',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1108',191,N'CENTRAL JERSEY',N'WOODBRIDGE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11099',1468,N'EAST COUNTY SCHOOLS',N'EL CAJON',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1111',192,N'LOCOMOTIVE & CONTROL EMPLOYEES',N'Erie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11111',1469,N'FREEDOM FIRST',N'Roanoke',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11123',1470,N'S R I EMPLOYEES',N'Birmingham',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1113',193,N'CORRECTIONAL WORKERS',N'EL RENO',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11144',1471,N'DIRIGO',N'Lewiston',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1115',194,N'COASTLINE',N'Jacksonville',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11152',1472,N'ETMA',N'LOUISVILLE',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11154',1473,N'BLUE COAST',N'Perry',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11157',1474,N'UTICA DISTRICT TELEPHONE EMPLOYEES',N'UTICA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11162',1475,N'CANOPY',N'SPOKANE',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11164',1476,N'COASTAL BEND P O',N'Victoria',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11168',1477,N'AUDUBON',N'Owensboro',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1117',195,N'WIDGET',N'Erie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11170',1478,N'FIRST SERVICE',N'Groveport',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11172',1479,N'COMMUNITY CONNECT',N'Titusville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11242',1481,N'PINPOINT',N'MILTON',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1125',196,N'VAN CORTLANDT COOPERATIVE',N'BRONX',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11253',1482,N'NEW DIMENSIONS',N'Waterville',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11254',1483,N'CELCO COMMUNITY',N'NARROWS',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1127',197,N'SALEM VA MEDICAL CENTER',N'Salem',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11273',1485,N'STERLING UNITED',N'EVANSVILLE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11285',1486,N'CORNING GLASS WORKS HARRODSBG',N'Harrodsburg',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1129',198,N'MOPAC EMPLOYEES',N'Palestine',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11293',1487,N'VACATIONLAND',N'Sandusky',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11299',1488,N'C A S E',N'Tyler',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1130',199,N'LONGVIEW',N'White Oak',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11300',1489,N'CLEARWATER',N'Missoula',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11304',1490,N'ARC',N'Altoona',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11307',1491,N'APPLE',N'Fairfax',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1131',200,N'ESSEX COUNTY TEACHERS',N'BLOOMFIELD',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11316',1493,N'SANDIA AREA',N'Albuquerque',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11323',1494,N'PACE',N'Huntington',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1133',201,N'TRADEMARK',N'Augusta',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11331',1495,N'M D U EMPLOYEES',N'Glendive',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1134',202,N'CO-OPERATIVE',N'WOODRIDGE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11340',1496,N'ST. MICHAELS',N'CRAIG',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11347',1497,N'WILMINGTON POLICE & FIRE',N'Wilmington',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11353',1498,N'EAST RIVER',N'Madison',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11364',1499,N'THE FAMILY FIRST',N'Great Falls',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11374',1500,N'C-B-W SCHOOLS',N'SIDMAN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11377',1501,N'SWEETWATER REGIONAL',N'Sweetwater',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11380',1502,N'FIDELIS',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11391',1503,N'KINZUA',N'Warren',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11400',1505,N'GOLDMARK',N'Attleboro',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11402',1506,N'GREAT MEADOW',N'Hudson Falls',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11409',1507,N'LITHIUM',N'BESSEMER CITY',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11440',1508,N'BUTLER HERITAGE',N'Middletown',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11445',1509,N'BREWSTER',N'Brewster',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11452',1510,N'CY-FAIR',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11458',1511,N'MOORE COUNTY SCHOOLS',N'Dumas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11459',1512,N'WINSLOW SCHOOL EMPLOYEES',N'WINSLOW',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11470',1513,N'SWEET HOME',N'AMHERST',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1148',203,N'COREPLUS',N'Norwich',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11520',1517,N'ASCENT',N'OGDEN',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11524',1518,N'IRS BUFFALO',N'Buffalo',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11526',1519,N'DAKOTA PLAINS',N'Lemmon',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11533',1520,N'KNOXVILLE LAW ENFORCEMENT',N'Knoxville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11548',1521,N'COLUMBINE',N'Centennial',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11550',1522,N'MARYVALE SCHOOLS',N'CHEEKTOWAGA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11554',1523,N'FAMILY TRUST',N'Rock Hill',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11567',1524,N'BRISTOL VA SCHOOL SYSTEM',N'Bristol',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1157',204,N'BUFFALO POLICE',N'Buffalo',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11576',1526,N'TEXHILLCO SCHOOL EMPLOYEES',N'Kerrville',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11604',1528,N'EAST ORANGE VA HOSPITAL',N'East Orange',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11640',1530,N'BOULEVARD',N'Amherst',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11643',1531,N'FREEDOM 1ST',N'MCCONNELL AFB',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11652',1532,N'GOLDEN VALLEY',N'Manteca',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11658',1533,N'AVENUE BAPTIST BROTHERHOOD',N'Shreveport',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1166',205,N'1166',N'Swedesboro',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11663',1534,N'GOOD NEIGHBORS',N'Depew',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1167',206,N'FORT BILLINGS',N'PAULSBORO',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11670',1535,N'TEXOMA EDUCATORS',N'SHERMAN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11671',1536,N'T.E.S. REGIONAL HEALTHCARE',N'SHREVEPORT',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11674',1537,N'FIRELANDS',N'Bellevue',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11678',1539,N'TIMBERLINE',N'Crossett',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11680',1540,N'BANNER',N'Phoenix',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11685',1541,N'ARKANSAS SUPERIOR',N'WARREN',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11689',1542,N'WYROPE WILLIAMSPORT',N'S WILLIAMSPORT',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11718',1543,N'GRAND JUNCTION',N'Grand Junction',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1172',207,N'CORNER POST',N'Wilkes Barre',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11721',1544,N'SAN PATRICIO COUNTY TEACHERS',N'Sinton',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11723',1545,N'CORNERSTONE COMMUNITY',N'LOCKPORT',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11744',1546,N'AUGUSTA COUNTY',N'VERONA',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11746',1547,N'BROWARD HEALTHCARE',N'FORT LAUDERDALE',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11761',1548,N'PECO',N'Mineral Wells',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11779',1549,N'PUBLIC SERVICE',N'Middlesex',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11780',1550,N'SANTA ROSA COUNTY',N'MILTON',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11782',1551,N'BAYOU COMMUNITY',N'Saint Gabriel',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11783',1552,N'S I PHILADELPHIA',N'PHILADELPHIA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11786',1553,N'HURRICANE CREEK',N'BENTON',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11793',1555,N'EMBOLD',N'Oregon City',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11824',1557,N'CHURCHILL COUNTY',N'FALLON',N'NV',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11836',1558,N'BAYER HERITAGE',N'New Martinsvill',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11867',1559,N'A.C.P.E.',N'Laramie',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11870',1560,N'DOWNEY',N'DOWNEY',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11872',1561,N'SRI',N'MENLO PARK',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11891',1562,N'MERCER COUNTY COMMUNITY',N'Hermitage',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'119',27,N'TRIBORO POSTAL',N'FLUSHING',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11900',1563,N'MOJAVE PLANT EMPLOYEES',N'MOJAVE',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11902',1564,N'PATTERSON',N'ARKADELPHIA',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11905',1565,N'CASTPARTS EMPLOYEES',N'Portland',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11913',1566,N'ALCOA COMMUNITY',N'BENTON',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11927',1567,N'COASTAL COMMUNITY',N'Galveston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11942',1568,N'ST. TAMMANY',N'SLIDELL',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11943',1569,N'BEFIT FINANCIAL',N'Vacaville',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11944',1570,N'KAIPERM',N'Walnut Creek',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11949',1571,N'IBEW 76',N'TACOMA',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11950',1572,N'COVINGTON SCHOOLS',N'ANDALUSIA',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11962',1573,N'R G',N'RAYMORE',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11972',1574,N'YOUR CHOICE',N'ALTOONA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11975',1575,N'ANG',N'BIRMINGHAM',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11979',1576,N'NORTHLAND AREA',N'Alpena',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11986',1577,N'HIGH STREET BAPTIST CHURCH',N'Roanoke',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1199',209,N'BMI',N'Dublin',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11992',1578,N'ST. PASCHAL BAYLONS',N'HIGHLAND HEIGHT',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11995',1579,N'GREATER CENTRAL TEXAS',N'KILLEEN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'11996',1580,N'COLQUITT COUNTY TEACHER',N'Moultrie',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'120',28,N'COUNTY EXCELLENCE',N'Roselle Park',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12000',1581,N'MOHAVE COMMUNITY',N'KINGMAN',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12004',1582,N'NORTH CAROLINA COMMUNITY',N'GOLDSBORO',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12012',1583,N'OLD WEST',N'JOHN DAY',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12028',1584,N'DENOCOS',N'CRESCENT CITY',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12029',1585,N'UNITED CATHOLICS',N'COVINA',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12033',1586,N'PANHANDLE',N'Wellington',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1204',210,N'RANCHO',N'DOWNEY',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12067',1588,N'BAY',N'CAPITOLA',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12068',1589,N'WALKER COUNTY',N'Huntsville',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1207',211,N'LOS ANGELES',N'Glendale',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12082',1590,N'RED RIVER',N'Altus',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12084',1591,N'MID OREGON',N'BEND',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12143',1592,N'ONE COMMUNITY',N'Parkersburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12152',1593,N'CLIFTY CREEK EMPLOYEES',N'Madison',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12153',1594,N'AFENA',N'Marion',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12164',1595,N'AERO',N'Glendale',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12170',1596,N'LE ROY',N'LE ROY',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12175',1597,N'P S E',N'Somerset',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12181',1598,N'WELLSPRING',N'Bridge City',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12185',1599,N'THIOKOL ELKTON',N'Elkton',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12199',1600,N'KIRTLAND',N'ALBUQUERQUE',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12219',1601,N'USSCO JOHNSTOWN',N'JOHNSTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12225',1602,N'RAPIDES',N'ALEXANDRIA',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12227',1603,N'PASSAIC POLICE',N'PASSAIC',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12259',1604,N'SHERWIN',N'Portland',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12266',1605,N'ELLIS COUNTY TEACHERS AND EMPLOYEES',N'WAXAHACHIE',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12271',1606,N'SOUTHWEST OKLAHOMA',N'LAWTON',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12274',1607,N'PLAINS',N'Plainview',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12289',1608,N'LITTLEFIELD SCHOOL EMPLOYEES',N'Littlefield',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12290',1609,N'VALDOSTA TEACHERS',N'Valdosta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12291',1610,N'GEORGIA POWER VALDOSTA',N'Valdosta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12292',1611,N'BARTON PLANT EMPLOYEES',N'BOUTTE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12305',1612,N'FAIRFIELD',N'PINE BLUFF',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12310',1613,N'FAYETTE',N'MOUNT HOPE',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12319',1614,N'OMAHA POLICE',N'Omaha',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12330',1616,N'WYMAR',N'GEISMAR',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12333',1617,N'EARNING TREE',N'Wilkes Barre',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12334',1618,N'NESC',N'METHUEN',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12351',1619,N'PORT CONNEAUT',N'Conneaut',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12356',1620,N'IBERVILLE',N'PLAQUEMINE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1236',213,N'CAMBRIDGE FIREFIGHTERS',N'Cambridge',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12361',1621,N'CAROLINA TRUST',N'MYRTLE BEACH',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12365',1622,N'REFUGIO COUNTY',N'Refugio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12375',1623,N'NORWALK POSTAL EMPLOYEES',N'WATERBURY',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12383',1624,N'EAST ALABAMA COMMUNITY',N'OPELIKA',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1239',214,N'PITTSBURGH CITY HALL EMPLOYEES',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12425',1625,N'FOOTHILL',N'Arcadia',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12438',1627,N'ARMSTRONG ASSOCIATES',N'Ford City',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12440',1628,N'MASTERS, MATES & PILOTS (MM&P)',N'Linthicum',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12443',1629,N'DOVER',N'DOVER',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1245',215,N'COTTON BELT',N'PINE BLUFF',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12458',1630,N'VELOCITY COMMUNITY',N'PALM BEACH GARD',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12470',1631,N'MOUNTAIN HERITAGE',N'PARKERSBURG',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12472',1632,N'LAREDO FIRE DEPARTMENT',N'Laredo',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12473',1633,N'DANNEMORA',N'PLATTSBURGH',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12478',1634,N'ELECTRICAL WORKERS NO 558',N'SHEFFIELD',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1248',216,N'FORT SMITH TEACHERS',N'FORT SMITH',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12505',1635,N'FORT LIGONIER',N'JEROME',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12508',1636,N'SANTA MARIA ASSOCIATED EMPLOYEES',N'Santa Maria',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1251',217,N'NEW CENTURY',N'Joliet',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12543',1638,N'TORRANCE COMMUNITY',N'TORRANCE',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12546',1639,N'MEDICAL EMPLOYEES OF STATEN ISLAND',N'STATEN ISLAND',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1257',218,N'BATON ROUGE FIRE DEPARTMENT',N'Baton Rouge',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12570',1640,N'UNIVERSITY OF LOUISIANA',N'Lafayette',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12601',1641,N'PINE',N'PINE BLUFF',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12604',1642,N'FRANKLIN FIRST',N'Greenfield',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12608',1643,N'OLATHE',N'Olathe',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1261',219,N'LANGLEY',N'Newport News',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12613',1644,N'GLOVER',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12616',1645,N'ERIE COMMUNITY',N'Sandusky',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12619',1646,N'PUBLIC SERVICE EDWARDSPT PL E',N'Linton',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12624',1647,N'RT',N'ROME',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1263',220,N'EVANSVILLE FIREFIGHTERS',N'EVANSVILLE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12643',1648,N'CORRY',N'Corry',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12648',1649,N'BLUEGRASS COMMUNITY',N'ASHLAND',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12654',1650,N'SRU',N'Slippery Rock',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12666',1651,N'MILLS42',N'Lowell',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12671',1652,N'COOPERS CAVE',N'Glens Falls',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12673',1653,N'UNITED HOSPITAL CENTER',N'Bridgeport',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12679',1654,N'EDIFI',N'Rancocas',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12686',1655,N'PAHRANAGAT VALLEY',N'Alamo',N'NV',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12697',1656,N'COMPLEX COMMUNITY',N'ODESSA',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12729',1657,N'PENN STATE',N'BELLEFONTE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1273',222,N'STATE FARM',N'Bloomington',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12735',1658,N'W B R T',N'Port Allen',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12745',1659,N'LOCAL 697',N'MERRILLVILLE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12748',1660,N'XAVIER UNIVERSITY',N'New Orleans',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12752',1661,N'AMERICO',N'ERIE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12765',1663,N'FIRST COMMONWEALTH',N'Lehigh Valley',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12771',1664,N'PUERTO RICO EMPLOYEE GROUPS',N'SAN JUAN',N'PR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12794',1665,N'POWELL SCHOOLS',N'Powell',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12805',1666,N'MOCSE',N'Modesto',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12808',1667,N'SUCCESS',N'BLYTHEVILLE',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12813',1668,N'BAPTIST HEALTH',N'Little Rock',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12814',1669,N'SEA WEST COAST GUARD',N'OAKLAND',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1282',223,N'RICHMOND HERITAGE',N'Richmond',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12826',1670,N'BASF CHATTANOOGA',N'CHATTANOOGA',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12837',1671,N'MARVEL CITY',N'BESSEMER',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12847',1672,N'COMMUNITY HEALTHCARE',N'Everett',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12852',1673,N'GREEN RIVER AREA',N'OWENSBORO',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12858',1674,N'TEXAS TECH',N'Lubbock',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12859',1675,N'FAITH COOPERATIVE',N'Dallas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12873',1677,N'PLATTSBURGH CITY SCHOOL DISTRICT',N'Plattsburgh',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12877',1678,N'SECURED ADVANTAGE',N'Simpsonville',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12890',1679,N'RIVERWAYS',N'Rolla',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12892',1680,N'BCM',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12898',1681,N'FONTANA',N'Fontana',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12900',1682,N'KENNAFORD',N'Bedford',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12906',1683,N'BLUE WATER',N'PORT HURON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12912',1684,N'CIRCUIT',N'CHEEKTOWAGA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12922',1685,N'CHARLESTON',N'CHARLESTON',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12935',1686,N'DISCOVERY',N'WYOMISSING',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12938',1687,N'WV NATIONAL GUARD',N'CHARLESTON',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12944',1688,N'ST. BERNARD PARISH SCHOOL BOARD EMP',N'CHALMETTE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12956',1689,N'PEOPLES TRANSPORT',N'MOUNT EPHRAIM',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12957',1690,N'TCT',N'BALLSTON SPA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12963',1691,N'N.H. COMMUNITY',N'Claremont',N'NH',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12977',1692,N'MARINE',N'Jacksonville',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'12980',1693,N'AFFINITY FIRST',N'Minot',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13028',1694,N'167TH TFR',N'Martinsburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13035',1695,N'WASHINGTON AREA TEACHERS',N'Washington',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13044',1696,N'ONTARIO PUBLIC EMPLOYEES',N'ONTARIO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13062',1697,N'B. P. S.',N'Beeville',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13067',1698,N'RIVERFORK',N'GRAND FORKS',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1309',225,N'CROSSPOINT',N'Hamden',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13102',1699,N'ONEIDA COUNTY',N'UTICA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13103',1700,N'PALACE CITY',N'Mitchell',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13115',1701,N'FASSON EMPLOYEES',N'PAINESVILLE',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13121',1702,N'TIDEMARK',N'Seaford',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13131',1703,N'MISSION CITY',N'Santa Clara',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13132',1704,N'U. S. I.',N'Deer Park',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13161',1705,N'RIO BLANCO SCHOOLS',N'Rangely',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13167',1706,N'FLORENCE',N'Florence',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13180',1707,N'HEMPFIELD AREA',N'GREENSBURG',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13186',1708,N'ED-MED',N'OGDENSBURG',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13190',1709,N'LISBON COMMUNITY',N'Lisbon',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'132',29,N'MOUNT VERNON NY POSTAL EMPLOYEES',N'Mount Vernon',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13224',1710,N'NORTH SANPETE',N'Fairview',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13233',1711,N'FEDTRUST',N'MEMPHIS',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13242',1712,N'CHARTWAY',N'Virginia Beach',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13248',1713,N'S H P E',N'GREENSBURG',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13254',1714,N'CORRECTIONS',N'Soledad',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13261',1715,N'ANTIOCH COMMUNITY',N'Antioch',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13265',1716,N'MOKELUMNE',N'Lodi',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13271',1717,N'JEFFERSON PARISH EMPLOYEES',N'HARAHAN',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13274',1718,N'NORTH ADAMS M E',N'North Adams',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13279',1719,N'SOUTH BEND FIREFIGHTERS',N'SOUTH BEND',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13290',1720,N'FIRST WATCH',N'Abilene',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13300',1721,N'SCHOOL DISTRICT 3',N'Colorado Spring',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13305',1723,N'LAWRENCE MEMORIAL HOSPITAL EMPLOYEE',N'New London',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13321',1724,N'RAVENSWOOD',N'RAVENSWOOD',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13329',1725,N'BALDWIN COUNTY',N'BAY MINETTE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13334',1726,N'TRIANGLE',N'Columbus',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13345',1727,N'FIRST PEOPLES COMMUNITY',N'CUMBERLAND',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13355',1729,N'FRANKFORT COMMUNITY',N'FRANKFORT',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13367',1730,N'AKRON SCHOOL EMPLOYEES',N'Akron',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1339',228,N'BAKERSFIELD CITY EMPLOYEES',N'BAKERSFIELD',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13391',1731,N'FLAGSHIP COMMUNITY',N'PORT HURON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13392',1732,N'STANFORD',N'Palo Alto',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13402',1733,N'ESCONDIDO',N'Escondido',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13416',1735,N'SUNSET SCIENCE PARK',N'PORTLAND',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13426',1736,N'CITY OF CLARKSBURG',N'CLARKSBURG',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1343',229,N'EMPIRT 207',N'new york',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13432',1737,N'STATE HIGHWAY PATROL',N'COLUMBUS',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13439',1738,N'NOVA UA',N'CLIFTON',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1344',230,N'NORTHERN VALLEY',N'Grand Forks',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13456',1739,N'METHODIST HEALTHCARE',N'Cordova',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13458',1740,N'NE PA COMMUNITY',N'Stroudsburg',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13469',1741,N'PENNTECH EMPLOYEES',N'Johnsonburg',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13472',1742,N'BERKELEY COMMUNITY',N'Moncks Corner',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13476',1743,N'CAROLINA FOOTHILLS',N'Spartanburg',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13481',1744,N'WESTERN SPRINGS',N'WESTERN SPRINGS',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13492',1745,N'VISION FINANCIAL',N'Durham',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13495',1746,N'COUNTY SCHOOLS',N'Ventura',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'135',30,N'OMAHA',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13503',1747,N'CAL-ED',N'CALIFORNIA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1351',231,N'MERCER COUNTY NJ TEACHERS',N'HAMILTON SQUARE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13516',1748,N'LOCOGA',N'Valdosta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13519',1749,N'UNITED INVESTORS',N'Linden',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1352',232,N'CENTURY HERITAGE',N'PITTSBURGH',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13526',1750,N'EMPLOYEES CHOICE',N'El Cajon',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13533',1751,N'CTA SOUTH',N'CHICAGO',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13534',1752,N'OKALOOSA COUNTY TEACHERS',N'CRESTVIEW',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13544',1753,N'POLY SCIENTIFIC EMPLOYEES',N'BLACKSBURG',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13559',1754,N'NOTEWORTHY',N'Cleveland',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13583',1755,N'SPIRIT OF ALASKA',N'Fairbanks',N'AK',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13591',1756,N'CHEROKEE COUNTY',N'Rusk',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13599',1757,N'FLEXPAK',N'Woods Cross',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13601',1758,N'SHREWSBURY',N'SHREWSBURY',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13602',1759,N'MANCHESTER MUNICIPAL',N'MANCHESTER',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13605',1760,N'ABNB',N'Chesapeake',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13616',1761,N'INDIANA STATE UNIVERSITY',N'Terre Haute',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13634',1762,N'KELLOGG MEMPHIS EMPLOYEES',N'MEMPHIS',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1364',233,N'U S #1364',N'MERRILLVILLE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13649',1764,N'IRONWORKERS USA',N'Portland',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13654',1765,N'MT TAYLOR',N'MILAN',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13655',1766,N'ALBA-GOLDEN',N'Alba',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13659',1767,N'UNIVERSITY OF SOUTH ALABAMA',N'MOBILE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1367',234,N'UNIVERSITY',N'AUSTIN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13672',1768,N'VICTORIA CITY-COUNTY EMPLOYEES',N'Victoria',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13682',1769,N'BREWER',N'BREWER',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13687',1770,N'FELICIANA',N'ZACHARY',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13690',1771,N'FORT LIBERTY',N'Fayetteville',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13704',1772,N'FAITH CONNECTION',N'Marietta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13729',1774,N'ENERGY PEOPLE',N'MEDFORD',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13733',1775,N'GLASS CAP',N'Connellsville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13737',1776,N'ARKANSAS BEST',N'FORT SMITH',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13741',1778,N'BEEHIVE',N'Rexburg',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13760',1779,N'PENNSTAR',N'Hermitage',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13762',1780,N'DIAMOND LAKES',N'Malvern',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13763',1781,N'RIVER REGION',N'LUTCHER',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13766',1782,N'M. C. T.',N'AMSTERDAM',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13777',1784,N'LEFORS',N'lefors',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13790',1785,N'DESERTVIEW',N'HUNTINGTON',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13791',1786,N'DELAWARE STATE POLICE',N'Georgetown',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13794',1788,N'MEDINA COUNTY',N'WADSWORTH',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'138',31,N'VIGO COUNTY',N'Terre Haute',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13800',1789,N'ELKO',N'ELKO',N'NV',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13821',1790,N'B V M S N',N'Walnutport',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13823',1791,N'BRADFORD AREA',N'BRADFORD',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13828',1792,N'ALLSOUTH',N'Columbia',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13833',1793,N'C U P',N'Provo',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13842',1794,N'WESTMINSTER',N'Westminster',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13852',1795,N'THE BRIDGEWAY',N'Phenix City',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13857',1796,N'LONGSHORE',N'Hoquiam',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13873',1798,N'BROWNFIELD',N'Brownfield',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13885',1799,N'L C E',N'PAINESVILLE',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13898',1800,N'ENDURANCE',N'Duncan',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13902',1801,N'FICARE',N'Wesley Chapel',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13919',1802,N'DEL-ONE',N'Dover',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13926',1803,N'TEWKSBURY',N'Tewksbury',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13933',1804,N'SAINT VINCENT ERIE',N'Erie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13938',1805,N'CROUSE HINDS EMPLOYEES',N'SYRACUSE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13939',1806,N'PUERTO RICO',N'Caparra',N'PR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13940',1807,N'BUSINESS AND INDUSTRIAL',N'COLUMBUS',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13941',1808,N'SM',N'MISSION',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13944',1809,N'RIEGEL',N'Milford',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13965',1810,N'OREM CITY EMPLOYEES',N'OREM',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13966',1811,N'CHADRON',N'CHADRON',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1397',235,N'EDISTO',N'ORANGEBURG',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'13974',1812,N'GESB SHEET METAL WORKERS',N'PORTAGE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1399',236,N'PITNEY BOWES EMPLOYEES',N'Shelton',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14003',1813,N'TORRINGTON MUNICIPAL AND TEACHERS',N'TORRINGTON',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1401',237,N'HEREFORD TEXAS',N'Hereford',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14011',1814,N'BERRIEN TEACHERS',N'NASHVILLE',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14015',1815,N'GARDEN STATE',N'MOORESTOWN',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14016',1816,N'INLAND',N'La Mesa',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14018',1817,N'VISIONARY',N'Bridgeville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14026',1818,N'FEDMONT',N'Montgomery',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14030',1819,N'IBEW 317',N'HUNTINGTON',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1404',238,N'NASSAU FINANCIAL',N'East Meadow',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14040',1820,N'NIAGARA-WHEATFIELD',N'SANBORN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14052',1821,N'LIBERTY COUNTY TEACHERS',N'Liberty',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14058',1822,N'ST. MARTIN DE PORRES PARISH',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14066',1823,N'FIRESTONE',N'Akron',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1407',239,N'DEMOCRACY',N'Alexandria',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14074',1824,N'CITYMARK',N'Plains',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1409',240,N'RAIZ',N'EL PASO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14091',1825,N'HOUSTON',N'Sugar Land',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14098',1826,N'COMMUNITY FOCUS',N'Brownstown',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1410',241,N'MIDSOUTH COMMUNITY',N'Macon',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14120',1827,N'STARK',N'CANTON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14135',1828,N'DIAMOND VALLEY',N'Evansville',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14163',1829,N'FIRST COUNTY',N'MUNCIE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14166',1830,N'COCHRAN COUNTY SCHOOLS',N'MORTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14170',1831,N'NORTHEAST TEXAS TEACHERS',N'Paris',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14172',1832,N'METREX',N'Kenilworth',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14176',1833,N'IDB GLOBAL',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14180',1834,N'CENTRAL SUSQUEHANNA COMMUNITY',N'DANVILLE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14185',1835,N'KRAFTSMAN',N'Hopewell',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14186',1836,N'WALTON COUNTY TEACHERS',N'DEFUNIAK SPRING',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14191',1837,N'DANVERS MUNICIPAL',N'Danvers',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14226',1839,N'3RD DISTRICT HIGHWAY',N'Lafayette',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14247',1840,N'I B E W LOCAL 56',N'Erie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14257',1841,N'WEE',N'PARKERSBURG',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14260',1842,N'MINUTEMAN',N'RAPID CITY',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1427',243,N'MIDWEST AMERICA',N'Fort Wayne',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14303',1843,N'H M S A EMPLOYEES',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14329',1844,N'UNION COUNTY EMPLOYEES',N'Elizabeth',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14333',1845,N'TENNESSEE RIVER',N'COUNCE',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14346',1847,N'FIRST AREA',N'LEWISTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14347',1848,N'BEDCO HOSPITAL',N'EVERETT',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14369',1849,N'THE DISTRICT',N'Aurora',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14375',1850,N'DISTRICT 62 HIGHWAY',N'HAMMOND',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14376',1851,N'LOUISIANA MACHINERY EMPLOYEES',N'Monroe',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1438',244,N'LONG BEACH CITY EMPLOYEES',N'Signal Hill',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14384',1852,N'MISSION',N'San Diego',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14388',1853,N'HARTFORD',N'Hartford',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14391',1854,N'BAPTIST HEALTH SOUTH FLORIDA',N'Miami',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14402',1855,N'IBEW/SJ CASCADE',N'Salem',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14408',1856,N'MIDWAY',N'BERRYVILLE',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14409',1857,N'DIABLO VALLEY',N'Concord',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14415',1858,N'SONOMA',N'Santa Rosa',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14425',1859,N'INGERSOLL-RAND',N'Sayre',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14436',1860,N'OSWEGO TEACHERS EMPLOYEES',N'OSWEGO',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14449',1861,N'WAYNE COUNTY',N'Richmond',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14462',1862,N'ONTARIO SHORES',N'Newfane',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14469',1863,N'MAHONING VALLEY',N'Youngstown',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14499',1864,N'CAL STATE L.A.',N'LOS ANGELES',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14505',1865,N'GRIFFITH INSTITUTE EMPLOYEES',N'Springville',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14512',1866,N'PORT TERMINAL',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14522',1867,N'SPECIAL METALS',N'NEW HARTFORD',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14537',1868,N'JAMES WARD, JR.',N'JENNINGS',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1454',245,N'MERCK EMPLOYEES',N'RAHWAY',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14542',1869,N'VIDA',N'Ontario',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14545',1870,N'PACIFIC CASCADE',N'EUGENE',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14562',1871,N'EVANSVILLE',N'Evansville',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14565',1872,N'MAINE SAVINGS',N'Hampden',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14568',1873,N'LA CAPITOL',N'BATON ROUGE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1457',246,N'FINANS',N'HAMMOND',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14571',1874,N'LOGAN MEDICAL',N'LOGAN',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14584',1875,N'LAKEVIEW',N'Ashtabula',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'146',32,N'TEL-U-WATT',N'MINOT',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1461',247,N'LEOMINSTER EMPLOYEES',N'LEOMINSTER',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14610',1876,N'MORNING STAR',N'TULSA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14611',1877,N'WVU EMPLOYEES',N'Morgantown',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14617',1878,N'LONZA',N'Williamsport',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14623',1879,N'LYNCHBURG MUNICIPAL EMPLOYEES',N'Lynchburg',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1463',248,N'APPALACHIAN POWER EMPLOYEES',N'HUNTINGTON',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14634',1880,N'I B E W 175',N'CHATTANOOGA',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14650',1881,N'PARISHIONERS',N'Torrance',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14651',1882,N'DISTRICT 08',N'ALEXANDRIA',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14656',1883,N'LOCAL 24 EMPLOYEES',N'Pasadena',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14657',1884,N'VALLEY WIDE',N'Vernal',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14668',1885,N'HIGH PEAKS',N'Dillon',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14670',1886,N'H E A',N'WARNER ROBINS',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14676',1887,N'PEACH STATE',N'Lawrenceville',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14677',1888,N'CLEVELAND-BRADLEY CTY TEACHER',N'CLEVELAND',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14692',1889,N'ONPATH',N'Metairie',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'147',33,N'NORTHERN STS PWR COMPANY EMP',N'GRAND FORKS',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14708',1890,N'MACHINISTS - BOILERMAKERS',N'Gladstone',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14712',1891,N'IBEW 141',N'Wheeling',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1472',249,N'PALMETTO CITIZENS',N'COLUMBIA',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14723',1892,N'AEROSPACE',N'Los Angeles',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14725',1893,N'CHATTANOOGA FIRST',N'CHATTANOOGA',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14733',1894,N'SHELBY COUNTY',N'Memphis',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14734',1895,N'LA JOYA AREA',N'La Joya',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14750',1896,N'LEXINGTON MA',N'LEXINGTON',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14754',1897,N'TOPSIDE',N'DAHLGREN',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14758',1898,N'QUAY SCHOOLS',N'Tucumcari',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1476',250,N'ERIE',N'Erie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14762',1899,N'JSC',N'HOUSTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14775',1900,N'FRICK FINANCIAL',N'Uniontown',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14786',1901,N'NORTHWEST ADVENTIST',N'Portland',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14805',1902,N'MISSISSIPPI NATIONAL GUARD',N'JACKSON',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14815',1903,N'LOCAL 355 MD',N'BALTIMORE',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14824',1904,N'MEMORIAL',N'GULFPORT',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14829',1905,N'TEAM FIRST',N'LANCASTER',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14830',1906,N'EDWARDS',N'Edwards',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14832',1907,N'WATSONVILLE HOSPITAL',N'Watsonville',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14845',1908,N'RAH',N'RANDOLPH',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14850',1909,N'PLYMOUTH COUNTY TEACHERS',N'West Wareham',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14865',1910,N'BURLINGTON MUNICIPAL EMPLOYEES',N'BURLINGTON',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14874',1911,N'EXPLORERS',N'YANKTON',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14879',1912,N'A.B.',N'Duncansville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14884',1913,N'SPENCERPORT',N'Spencerport',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14898',1914,N'INLAND MOTOR EMPLOYEES',N'Radford',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14917',1915,N'GIBBONS AND REED EMPLOYEES',N'SALT LAKE CITY',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1493',252,N'F & A',N'MONTEREY PARK',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14934',1916,N'SMW 104',N'Livermore',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14965',1917,N'NORTHEAST NEBRASKA',N'Norfolk',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'14972',1918,N'NORMAL CITY EMPLOYEES',N'Normal',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1499',254,N'PUEBLO GOVERNMENT AGENCIES',N'Pueblo',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'150',34,N'FEDCHOICE',N'Lanham',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15000',1919,N'O.A.S. STAFF',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15001',1920,N'SALT EMPLOYEES',N'GRAND SALINE',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15007',1921,N'MIDWEST FAMILY',N'PORTAGE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15009',1922,N'MORGAN CITY',N'MORGAN CITY',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15015',1923,N'FOOTHILLS',N'LOUDON',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15016',1924,N'WAKEFERN',N'Elizabeth',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15021',1925,N'MORTON LANE',N'BUFFALO',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15049',1926,N'UNION FIDELITY',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15051',1927,N'COMMUNITY FIRST GUAM',N'Hagatna',N'GU',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15062',1928,N'ALDERSGATE',N'Marion',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15063',1929,N'NEW KENSINGTON MUNICIPAL',N'New Kensington',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15067',1930,N'TRANSFIGURATION PARISH',N'BROOKLYN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15072',1931,N'REGIONAL',N'Hammond',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15073',1932,N'DEDHAM TOWN EMPLOYEES',N'DEDHAM',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15080',1933,N'ROCKLAND EMPLOYEES',N'Spring Valley',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15089',1934,N'S T S P',N'Lacombe',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1509',256,N'ALCOA TENN',N'Alcoa',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15095',1935,N'PINNACLE',N'Parlin',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'151',35,N'JUSTICE',N'Chantilly',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15108',1936,N'MUNA',N'Meridian',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15143',1937,N'CHOCOLATE BAYOU COMMUNITY',N'Alvin',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15146',1938,N'DUGOOD',N'BEAUMONT',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15159',1939,N'FRANKLIN-SOMERSET',N'MADISON',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15174',1941,N'LEE',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15175',1942,N'T M H',N'TALLAHASSEE',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15185',1943,N'COMMUNITY POWERED',N'BEAR',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1520',258,N'TENNESSEE VALLEY',N'Chattanooga',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15209',1944,N'CALL',N'Richmond',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15211',1945,N'DISTRICT 58',N'CHASE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15222',1946,N'COAST360',N'Maite',N'GU',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15230',1947,N'MOFFAT COUNTY SCHOOLS',N'CRAIG',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15234',1948,N'CHESWICK ATOMIC DIVISION',N'Harwick',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15248',1949,N'LAMPCO',N'ANDERSON',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15265',1950,N'WARE COUNTY SCHOOL EMPLOYEES',N'WAYCROSS',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15296',1951,N'MANCHESTER',N'Manchester',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15297',1952,N'HALE COUNTY TEACHERS',N'Plainview',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'153',36,N'MERIDEN POSTAL EMPLOYEES',N'Meriden',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15304',1953,N'GRACO',N'Alma',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15307',1954,N'HOPEWELL',N'Heath',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15317',1955,N'SAG-AFTRA',N'Burbank',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15324',1956,N'WESTSIDE COMMUNITY',N'CHURCHVILLE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15327',1957,N'SOUTHWEST FINANCIAL',N'Farmers Branch',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15328',1958,N'K V',N'Augusta',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15358',1959,N'ACTORS',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15370',1960,N'SAKER SHOP RITE',N'HOLMDEL',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15375',1961,N'WOLF POINT',N'Wolf Point',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15377',1962,N'MERIDIAN MISSISSIPPI ANG',N'MERIDIAN',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15386',1963,N'WESTAR',N'CAMILLUS',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15393',1964,N'STONEHAM MUNICIPAL EMPLOYEES',N'STONEHAM',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15394',1965,N'BALTIMORE COUNTY EMPLOYEES',N'Towson',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1542',259,N'GNC COMMUNITY',N'New Castle',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15426',1967,N'AMERICAN SPIRIT',N'NEWARK',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15433',1968,N'MEMPHIS MUNICIPAL EMPLOYEES',N'Memphis',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15438',1969,N'TOPMARK',N'Cridersville',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15451',1970,N'SOLON/CHAGRIN FALLS',N'SOLON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15454',1971,N'SHILOH ENGLEWOOD',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15459',1973,N'PENN SOUTH COOPERATIVE',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1546',260,N'MERCER COUNTY IMPROVEMENT AUTHORITY',N'HAMILTON',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15467',1974,N'KELLY COMMUNITY',N'Tyler',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15483',1975,N'JERSEY SHORE',N'Northfield',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15513',1976,N'FORT DIX',N'Joint Base MDL',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15516',1977,N'MOUNTAIN VALLEY',N'Peru',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15522',1978,N'LOCAL 265 IBEW',N'LINCOLN',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15523',1979,N'TONGASS',N'KETCHIKAN',N'AK',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15532',1980,N'PAGODA',N'READING',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15536',1981,N'VA BEACH POSTAL',N'Virginia Beach',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15539',1983,N'TOWN OF HEMPSTEAD EMPLOYEES',N'NORTH BALDWIN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15563',1984,N'BAYCEL',N'BAY CITY',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15565',1985,N'BELTON',N'BELTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1558',261,N'KERR COUNTY',N'Kerrville',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15588',1986,N'G G W',N'New Orleans',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15589',1987,N'CADDO PARISH TEACHERS',N'SHREVEPORT',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15591',1988,N'SCRANTON DOWNTOWN',N'Scranton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15602',1989,N'CENLA',N'Alexandria',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15618',1991,N'AFGM ENTERPRISES',N'Cheektowaga',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15619',1992,N'ACADIA',N'FORT KENT',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15650',1994,N'H E B',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15652',1995,N'U F C W LOCAL 1776',N'PLYMOUTH MEETIN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15659',1996,N'MARIN COUNTY',N'SAN RAFAEL',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15669',1997,N'MOOG EMPLOYEES',N'EAST AURORA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15672',1998,N'SEA COMM',N'MASSENA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15673',1999,N'ISRAEL METHCOMM',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15732',2000,N'UNIFY FINANCIAL',N'Manhattan Beach',N'CA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15741',2001,N'TRONA VALLEY COMMUNITY',N'GREEN RIVER',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15752',2002,N'NUCOR EMPLOYEES',N'FORT PAYNE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15757',2003,N'MT ZION INDIANAPOLIS',N'INDIANAPOLIS',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15766',2004,N'MID-HUDSON VALLEY',N'Kingston',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15784',2005,N'NOVO',N'Norco',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15788',2006,N'COMMON CENTS',N'BEAUMONT',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15790',2007,N'DELAWARE ALLIANCE',N'NEW CASTLE',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15797',2008,N'IRON WORKERS',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15815',2010,N'SOUTHLAND',N'Lufkin',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15817',2011,N'PILGRIM CUCC',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1584',263,N'MEMBERS TRUST OF THE SOUTHWEST',N'HOUSTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15847',2012,N'U-HAUL',N'Phoenix',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15848',2013,N'CBI',N'PLAINFIELD',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15874',2014,N'MEMBERS TRUST',N'Mason',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15882',2015,N'DESCO',N'PORTSMOUTH',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'159',37,N'THREE RIVERS',N'FORT WAYNE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15928',2016,N'TROY',N'TROY',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15935',2017,N'CHA-TEL',N'Charleston',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'15938',2018,N'SIXTH AVENUE BAPTIST',N'BIRMINGHAM',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1599',264,N'MCDONALD COMMUNITY',N'MC DONALD',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16009',2019,N'ATLANTIC CITY',N'LANDER',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1601',265,N'U S PIPE BESSEMER EMPLOYEES',N'Bessemer',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16011',2020,N'ATTLEBORO M E',N'Attleboro',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16014',2021,N'COFFEE COUNTY TEACHERS',N'Douglas',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16016',2022,N'PAWTUCKET MUNICIPAL EMPLOYEES',N'PAWTUCKET',N'RI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16030',2023,N'CHAFFEY',N'Upland',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16042',2024,N'WESTERN NEW YORK',N'West Seneca',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16061',2025,N'CITY OF DEER PARK',N'Deer Park',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16063',2026,N'BVA',N'Belle Vernon',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16065',2027,N'HOWARD COUNTY SCHOOL EM',N'KOKOMO',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16067',2028,N'THE ANDOVERS',N'Andover',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1607',266,N'BIG ISLAND',N'HILO',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16085',2029,N'FLINT',N'Reynolds',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16096',2030,N'AFLAC',N'COLUMBUS',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16113',2031,N'HERITAGE GROVE',N'Salem',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16126',2032,N'GARY MUNICIPAL EMPLOYEES',N'GARY',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16168',2033,N'GEOVISTA',N'Hinesville',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16174',2034,N'UNIVERSITY OF TOLEDO',N'Toledo',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16176',2035,N'CANANDAIGUA',N'CANANDAIGUA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16178',2036,N'WATERFRONT',N'Seattle',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16190',2037,N'RIM COUNTRY',N'Snowflake',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'162',38,N'TREASURY DEPARTMENT',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16207',2038,N'STATE CS EMPLOYEES',N'WATERTOWN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1621',267,N'HOMETOWN',N'Peru',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16213',2039,N'FINANCIAL BUILDERS',N'KOKOMO',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16218',2040,N'XCEL',N'Bloomfield',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16236',2041,N'GATES CHILI',N'Rochester',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16248',2042,N'NORTH MEMORIAL',N'ROBBINSDALE',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16256',2043,N'WASHINGTON EDUCATIONAL ASSOC',N'FRANKLINTON',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16264',2044,N'DEVILS SLIDE',N'Morgan',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16268',2045,N'W S S C',N'Laurel',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16271',2046,N'BAKER HUGHES',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16278',2047,N'SCHENECTADY COUNTY EMPLOYEES',N'Schenectady',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16327',2049,N'MISSISSIPPI HIGHWAY SAFTY PAT',N'Jackson',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16351',2050,N'LUFKIN',N'LUFKIN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16360',2051,N'SUMA',N'Yonkers',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16364',2052,N'PROVIDENT',N'DOVER',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16367',2053,N'COMANCHE COUNTY',N'Lawton',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16373',2054,N'WINDTHORST',N'WINDTHORST',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16383',2055,N'NEW ENGLAND LEE',N'Boston',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16400',2057,N'AGRICULTURE',N'MERRIFIELD',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16401',2058,N'POLICE',N'UPPER MARLBORO',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16402',2059,N'U S POSTAL SERVICE',N'CLINTON',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16408',2060,N'NYMEO',N'FREDERICK',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16410',2061,N'DEPARTMENT OF COMMERCE',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16411',2062,N'DC',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16416',2063,N'ADVANTAGE FINANCIAL',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16429',2064,N'LOCAL 20 IBEW',N'GRAND PRAIRIE',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16435',2066,N'FIRST NESHOBA',N'Philadelphia',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16437',2067,N'JOLIET MUNICIPAL EMPLOYEES',N'joliet',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1644',268,N'CORNING',N'Corning',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16444',2068,N'RUSHMORE ELECTRIC',N'Rapid City',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16449',2069,N'NORTHEAST MISSISSIPPI',N'Amory',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1646',269,N'CLAIRTON WORKS',N'Clairton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16476',2070,N'NUVISTA',N'Montrose',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16479',2071,N'FOUR SEASONS',N'OPELIKA',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16500',2072,N'ACIPCO',N'BIRMINGHAM',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16520',2073,N'TVA MID-SOUTH',N'Memphis',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16525',2074,N'MOUNT CARMEL BAPTIST',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16547',2075,N'SAN FRANCISCO LEE',N'SAN FRANCISCO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16556',2076,N'SOLUTIONS FIRST',N'ENTERPRISE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16570',2077,N'LOS ANGELES LEE',N'Los Angeles',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16571',2078,N'L.A. HEALTHCARE',N'LOS ANGELES',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16574',2079,N'PATRIOT',N'CHAMBERSBURG',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16577',2080,N'UNITED POLES',N'PERTH AMBOY',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1658',270,N'WHEATLAND',N'LANCASTER',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16584',2081,N'FAIRLEIGH DICKINSON UNIVERSITY',N'MADISON',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1660',271,N'EATON EMPLOYEES',N'Denver',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16605',2082,N'HOPEWELL CHEMICAL',N'Hopewell',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16614',2084,N'NATCO EMPLOYEES',N'WEST WARWICK',N'RI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16619',2085,N'FINANCIAL PARTNERS',N'Woodburn',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16626',2086,N'HERITAGE',N'Newburgh',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16636',2087,N'PENN HILLS MUNICIPAL',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1665',272,N'NEW ORLEANS PUBLIC BELT RAILROAD',N'NEW ORLEANS',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16655',2088,N'S C I',N'Florence',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16657',2089,N'LANCO',N'LANCASTER',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16672',2090,N'COBBLESTONE COUNTRY',N'Albion',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16682',2091,N'S T O F F E',N'Solon',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1669',273,N'SARCO',N'BETHLEHEM',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16699',2092,N'BILOXI TEACHERS',N'Biloxi',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'167',39,N'DAKOTALAND',N'Huron',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16702',2094,N'YOUR HOMETOWN',N'Mayfield',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16706',2095,N'N A E',N'Chesapeake',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16728',2096,N'PINN MEMORIAL',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16732',2097,N'WEATHERHEAD C C',N'Columbia City',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16746',2098,N'LEHIGH COUNTY EMPLOYEES',N'Allentown',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16754',2099,N'FOUR CORNERS',N'Kirtland',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16756',2100,N'VALLEY ONE COMMUNITY',N'Steubenville',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16769',2101,N'DELAWARE RIVER & BAY AUTH EMP',N'NEW CASTLE',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16770',2102,N'MUW EMPLOYEES',N'Columbus',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16773',2103,N'COPPER BASIN',N'Copperhill',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16785',2104,N'ADVANCED FINANCIAL',N'NEW PROVIDENCE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16790',2105,N'UNION BAPTIST GREENBURGH',N'WHITE PLAINS',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'168',40,N'NORTHERN INDIANA',N'Merrillville',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16813',2106,N'CAPROCK',N'LAMESA',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1682',274,N'LIBERTY',N'Evansville',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16893',2108,N'NEWRIZONS',N'HOQUIAM',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'169',41,N'GARY FIREFIGHTERS ASSOCIATION',N'GARY',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16933',2109,N'PARKS HERITAGE',N'GLENS FALLS',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16946',2110,N'UARK',N'Fayetteville',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16947',2111,N'K I T',N'Louisville',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16951',2112,N'CONSUMERS',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16954',2113,N'FOX',N'LOS ANGELES',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16979',2114,N'LOCAL 606 ELECTRICAL WORKERS',N'ORLANDO',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16989',2115,N'SOUTH CHARLESTON EMPLOYEES',N'South Charlesto',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'16993',2116,N'PEOPLES',N'Nitro',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17012',2117,N'PROFED',N'Fort Wayne',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17014',2118,N'PENN-TRAFFORD SCHOOL EMP.',N'Trafford',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17017',2119,N'COCA-COLA',N'ATLANTA',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17023',2120,N'DISTRICT 123',N'Oak Lawn',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17040',2121,N'BAR-CONS',N'COLUMBUS',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17057',2122,N'WEST VIRGINIA',N'South Charlesto',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17067',2123,N'OUR MOTHER OF MERCY PARISH HOUSTON',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17100',2124,N'ALLIED',N'ARLINGTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17105',2125,N'PEAR ORCHARD',N'BEAUMONT',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17107',2126,N'UKRAINIAN NATIONAL',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17112',2127,N'NORWOOD TOWN EMPLOYEES',N'NORWOOD',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17117',2128,N'R.I.A.',N'Rock Island',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17126',2129,N'EAGLE CAN EMPLOYEES',N'Wellsburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17127',2130,N'TRUGROCER',N'BOISE',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17136',2131,N'MT PLEASANT AREA SCHOOL EMP',N'MOUNT PLEASANT',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17154',2132,N'SEMINOLE PUBLIC SCHOOLS',N'Seminole',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1717',275,N'HAWAIIAN FINANCIAL',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1718',276,N'HAWAII STATE',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1719',277,N'HAWAII COMMUNITY',N'Kailua Kona',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17218',2133,N'INTEGRIS',N'OKLAHOMA CITY',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17224',2134,N'ASPEN',N'Rapid City',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17232',2135,N'LASSEN COUNTY',N'Susanville',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17243',2136,N'ASSUMPTION BEAUMONT',N'Beaumont',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1725',278,N'MONROE TELCO',N'Monroe',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17250',2137,N'CO-NE',N'JULESBURG',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17253',2138,N'ILA 1351',N'La Porte',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17254',2139,N'FANNIN',N'BONHAM',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1726',279,N'BATON ROUGE TELCO',N'Baton Rouge',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17269',2140,N'HOLY TRINITY BAPTIST',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1729',280,N'ENFIELD COMMUNITY',N'ENFIELD',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17311',2141,N'DEMOPOLIS',N'DEMOPOLIS',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17323',2142,N'LUZERNE COUNTY',N'Wilkes Barre',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17327',2143,N'LAN-FAIR',N'LANCASTER',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1733',281,N'HICKAM',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17331',2144,N'S AND J SCHOOL EMPLOYEES',N'Wintersville',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17335',2145,N'ILLINOIS STATE POLICE',N'Springfield',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17339',2146,N'A H E PLANT 3',N'WINCHESTER',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17361',2147,N'MUSICIANS',N'ARLINGTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17362',2148,N'LINCOLN MAINE',N'LINCOLN',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17371',2149,N'SMMH',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17372',2150,N'LOCKPORT SCHOOLS & COMMUNITY',N'LOCKPORT',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17389',2151,N'ALLEGIUS',N'Burns Harbor',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1739',282,N'MILE HIGH',N'BUTTE',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17395',2152,N'IRCO COMMUNITY',N'Phillipsburg',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17396',2153,N'CONCORDIA PARISH SCHOOL EMP',N'FERRIDAY',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17398',2154,N'MAINE HIGHLANDS',N'Dexter',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17411',2155,N'DIVERSIFIED GENERAL',N'LOGANSPORT',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17429',2156,N'VISIONS',N'ENDICOTT',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17436',2157,N'MAINE SOLUTIONS',N'SOUTH PORTLAND',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17437',2158,N'STOUGHTON TOWN EMPLOYEES',N'Stoughton',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17449',2159,N'WAYNE COUNTY COMMUNITY',N'Smithville',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17454',2160,N'RICHMOND LIGHT EMPLOYEES',N'Richmond',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17464',2161,N'PEOPLES ADVANTAGE',N'Petersburg',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1750',284,N'COSDEN',N'BIG SPRING',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17550',2163,N'YTR COMMUNITY',N'Tiltonsville',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17555',2164,N'STEEL VALLEY',N'CLEVELAND',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17569',2165,N'H. E. TELEPHONE',N'Rochelle Park',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17587',2166,N'USALLIANCE',N'RYE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17588',2167,N'BATTERY EMPLOYEES',N'Attica',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1759',285,N'INSPIRE',N'Newtown',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'176',43,N'EDUCATIONAL',N'MIAMI',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17623',2168,N'HONDA',N'Torrance',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17630',2169,N'VANTAGE POINT',N'HOPEWELL',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17636',2170,N'SOUTH CAROLINA NATIONAL GUARD',N'Columbia',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17642',2171,N'ALL IN',N'DALEVILLE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17665',2172,N'COMPASS',N'Oswego',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17675',2173,N'G E A EMPLOYEES',N'Pearisburg',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17679',2174,N'HEALTH ALLIANCE',N'SOMERVILLE',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17681',2175,N'TOMBIGBEE',N'AMORY',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17687',2176,N'NEW CASTLE COUNTY DELAWARE EM',N'NEW CASTLE',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17691',2177,N'PMI EMPLOYEES',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17715',2178,N'CITIZENS CHOICE',N'Natchez',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17733',2179,N'SYLVANIA AREA',N'SYLVANIA',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17752',2180,N'NORTHWEST MUNICIPAL',N'Des Plaines',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17793',2181,N'N G M EMPLOYEES',N'KEENE',N'NH',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17831',2182,N'SELF MEMORIAL HOSPITAL',N'GREENWOOD',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1784',286,N'HAWAII COUNTY EMPLOYEES',N'Hilo',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17841',2183,N'VALLEY AGRICULTURAL',N'SANTA PAULA',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17847',2184,N'COMMON TRUST',N'Woburn',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17849',2185,N'ARKANSAS KRAFT EMPLOYEES',N'Morrilton',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1785',287,N'HAWAII SCHOOLS',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17861',2186,N'BEAUREGARD SCHOOL EMPLOYEES',N'DERIDDER',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17865',2187,N'M & C MENLO PARK',N'Iselin',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17878',2188,N'LAKE SHORE',N'ANGOLA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1788',288,N'NORDSTROM',N'Everett',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17885',2189,N'TRANSIT WORKERS',N'PHILADELPHIA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17914',2190,N'SUFFOLK',N'Medford',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1792',289,N'EVOLVE',N'EL PASO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17953',2191,N'TEXSTAR',N'Kenedy',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17955',2192,N'AUSTIN',N'AUSTIN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17969',2193,N'TERMINALS',N'CARTERET',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17990',2194,N'WAUNA',N'Clatskanie',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'17999',2195,N'TRIUS',N'Kearney',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18013',2196,N'PLUMBERS 55',N'BROOKLYN HEIGHT',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18022',2197,N'FINGER LAKES',N'GENEVA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18067',2198,N'MANISTIQUE',N'MANISTIQUE',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18068',2199,N'MT. RAINIER',N'Puyallup',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18090',2200,N'ST. PIUS X CHURCH',N'ROCHESTER',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1810',290,N'ROME',N'Rome',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18142',2201,N'CITY OF FAIRMONT',N'Fairmont',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18144',2202,N'MONTOURSVILLE AREA',N'MONTOURSVILLE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1815',291,N'HAWAIIUSA',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18150',2203,N'CAMP SHELBY',N'Hattiesburg',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1817',292,N'MAUI TEACHERS',N'Wailuku',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18172',2204,N'CHEMCO',N'LOUISVILLE',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18175',2205,N'HENRICO',N'Henrico',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18181',2206,N'UMASSFIVE COLLEGE',N'Hadley',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18192',2207,N'MEAD COATED BOARD',N'Eufaula',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18195',2208,N'UNITED TELETECH FINANCIAL',N'TINTON FALLS',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18204',2209,N'NORTHERN SKIES',N'ANCHORAGE',N'AK',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1821',293,N'DISTRICT OF COLUMBIA TEACHERS',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18218',2210,N'TEXAS LEE',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18234',2211,N'STEAMFITTERS PHILA',N'WEST CHESTER',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18238',2212,N'NYM',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18242',2213,N'SUSQUEHANNA VALLEY',N'CAMP HILL',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18254',2214,N'HARRISON COUNTY',N'Nutter Fort',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1827',294,N'MINT VALLEY',N'LONGVIEW',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18271',2215,N'PRINCE GEORGE''S COMMUNITY',N'Bowie',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18273',2216,N'AMERICAN BROADCAST EMPLOYEES',N'Rockville Centr',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1829',295,N'HFS',N'HILO',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18297',2218,N'COASTAL',N'Raleigh',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1830',296,N'HONOLULU',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18301',2219,N'VASCO',N'Latrobe',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18312',2221,N'GIBBS ALUMINUM',N'Henderson',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18336',2222,N'COMMUNITYWIDE',N'South Bend',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18343',2223,N'USEM MENA',N'MENA',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18353',2224,N'PRIORITY',N'RUSSELLVILLE',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1838',297,N'FORT BAYARD',N'SANTA CLARA',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18393',2226,N'POLICEMEN''S',N'SOUTH BEND',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18405',2227,N'CHULA VISTA CITY EMPLOYEES',N'Chula Vista',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18409',2228,N'ALLIANCE NIAGARA',N'SANBORN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18422',2229,N'LATVIAN',N'MELVILLE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18423',2230,N'S. C. H. D. DIST #7',N'Orangeburg',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18446',2231,N'ASBESTOS WORKERS LOCAL 14',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1845',298,N'ALOHA PACIFIC',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18462',2232,N'T E A',N'Houma',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18473',2233,N'NORTH SHORE',N'Silver Bay',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18474',2234,N'COMBINED',N'HOT SPRINGS',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1851',299,N'UTILITY EMPLOYEES',N'ABERDEEN',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18515',2236,N'FERGUSON',N'Monticello',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18528',2237,N'SAINT JOHN A M E',N'NIAGARA FALLS',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18550',2238,N'R T P',N'RTP',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18559',2239,N'STARR COUNTY TEACHERS',N'Rio Grande City',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18562',2240,N'MT ZION WOODLAWN',N'CINCINNATI',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18574',2241,N'AURORA',N'Aurora',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18582',2242,N'FRANKLIN REGIONAL SCHOOLS',N'Jeannette',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18616',2243,N'DUKE UNIVERSITY',N'Durham',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18623',2244,N'CALCOM',N'LONG BEACH',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18628',2245,N'MIDDLESEX COUNTY N J EMP',N'New Brunswick',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18635',2246,N'PORT WASHINGTON',N'port washington',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18649',2247,N'EVER $ GREEN',N'ROCHESTER',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18651',2248,N'ST. JOSEPH MEDICAL CENTER MD',N'Towson',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1866',300,N'MAUI COUNTY',N'Wailuku',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1869',301,N'HAWAIIAN ELECTRIC EMPLOYEES',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'187',45,N'FLORIDA A & M UNIVERSITY',N'Tallahassee',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1870',302,N'HAWAII LAW ENFORCEMENT',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18708',2251,N'PARTNERS',N'Burbank',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18710',2252,N'GARDEN SAVINGS',N'PARSIPPANY',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18716',2253,N'MID-ATLANTIC',N'Germantown',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18749',2254,N'705',N'Lafayette',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18759',2255,N'OCEAN COUNTY EMPLOYEES',N'TOMS RIVER',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18765',2256,N'LOUVIERS',N'Newark',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18775',2257,N'GREATER LATROBE SCHOOLS',N'Greensburg',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1879',303,N'TEXAS COMMUNITY',N'KINGSVILLE',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1880',304,N'HONOLULU FIRE DEPARTMENT',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18800',2258,N'GREATER WOODLAWN',N'BLASDELL',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18814',2259,N'GARLAND COUNTY EDUCATORS',N'HOT SPRINGS',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18816',2260,N'S.T.E.C.',N'NURSERY',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1882',305,N'TITAN',N'PLEASANT GAP',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18823',2261,N'STS PETER & PAUL',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18858',2262,N'SPC BROOKLYN',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18861',2263,N'SYMPHONY',N'BOSTON',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18868',2264,N'BULL DOG',N'HAGERSTOWN',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1888',307,N'ASPIRE COMMUNITY',N'MINOT',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18882',2265,N'C T A F C',N'CHICAGO',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18917',2266,N'SKYPOINT',N'GERMANTOWN',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18935',2267,N'CAL-COM',N'Port Lavaca',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18948',2269,N'MNCPPC',N'College Park',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18950',2270,N'MCDOWELL COUNTY',N'Welch',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18962',2271,N'CALCASIEU PARISH EMPLOYEES',N'Lake Charles',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18964',2272,N'BITTERROOT COMMUNITY',N'DARBY',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'18965',2273,N'OKUNITY',N'Stillwater',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19017',2274,N'ST. PATS EMPLOYEES',N'Missoula',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19027',2275,N'CATTARAUGUS COUNTY EMPLOYEES',N'Little Valley',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1904',308,N'UNIVERSITY',N'Grand Forks',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19045',2276,N'NEWELL',N'Newell',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19047',2277,N'EMERALD CREDIT ASSOCIATION',N'Greenwood',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19085',2279,N'PITTSFORD',N'PITTSFORD',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1909',309,N'SANTA BARBARA TEACHERS',N'Santa Barbara',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1911',310,N'MON VALLEY COMMUNITY',N'ALLENPORT',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19116',2280,N'GREENVILLE',N'Greenville',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19131',2281,N'A L E C',N'Baton Rouge',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19171',2282,N'NORTHEAST PANHANDLE TEACHERS',N'Perryton',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19185',2283,N'SEAPORT',N'ELIZABETH',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19203',2284,N'GREENWICH MUNICIPAL EMPLOYEES',N'Greenwich',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19216',2285,N'N Y TEAM',N'Ronkonkoma',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19228',2286,N'CROSS VALLEY',N'Wilkes Barre',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19249',2287,N'ACADIANA MEDICAL',N'Lafayette',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19253',2288,N'ISSAQUENA COUNTY',N'MAYERSVILLE',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19263',2289,N'EASTRISE',N'Williston',N'VT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19269',2290,N'OCEAN FINANCIAL',N'Oceanside',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19280',2291,N'EASTERN KENTUCKY',N'Prestonsburg',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19285',2292,N'NORTHERN MONTANA HOSPITAL',N'Havre',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19295',2293,N'LIVINGSTON PARISH',N'DENHAM SPRINGS',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19304',2294,N'FAMILY FIRST OF NY',N'ROCHESTER',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19307',2295,N'PURDUE',N'WEST LAFAYETTE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19319',2296,N'JEFFERSON COMMUNITY',N'Madison',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19320',2297,N'GP LOUISIANA',N'ZACHARY',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19355',2298,N'DFCU TULSA',N'TULSA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19390',2299,N'DEL MET',N'MUNCIE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19401',2300,N'TEG',N'POUGHKEEPSIE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1941',311,N'SHELL',N'Deer Park',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19416',2301,N'GLAMORGAN EMPLOYEES',N'Lynchburg',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19429',2302,N'YORK EDUCATIONAL',N'York',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19430',2303,N'TEAMSTERS LOCAL 92',N'CANTON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19432',2304,N'FO ME BO CO',N'WABASH',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19433',2305,N'SOFTITE COMMUNITY',N'Martins Ferry',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19440',2306,N'MINNESOTA VALLEY',N'Mankato',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19446',2307,N'MIDDLESEX-ESSEX POSTAL EMPLOYEES',N'NORTH READING',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19448',2308,N'U. T.',N'Knoxville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19454',2309,N'NJ GATEWAY',N'Dayton',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'195',47,N'NORTHWEST ARKANSAS',N'FAYETTEVILLE',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19501',2310,N'PACE RESOURCES',N'YORK',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19508',2311,N'QUEST',N'Kenton',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19510',2312,N'LEBANON',N'LEBANON',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19514',2313,N'HEMA',N'SILVER SPRING',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19522',2314,N'PROVIDENCE',N'MILWAUKIE',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19538',2316,N'AMPOT',N'HAMILTON',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19541',2317,N'PARK VIEW',N'Harrisonburg',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19552',2318,N'LANIER',N'Oakwood',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19567',2320,N'THE FLORIST',N'ROSWELL',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19593',2321,N'SAINT FRANCIS EMPLOYEES',N'Tulsa',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'196',48,N'GTE',N'TAMPA',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19605',2322,N'FINANCIAL EDUCATORS',N'Daytona Beach',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19608',2323,N'TRI-CITIES COMMUNITY',N'Kennewick',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1961',313,N'PEARL HAWAII',N'WAIPAHU',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19619',2324,N'TRINITY BAPTIST CHURCH',N'Florence',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19655',2325,N'PRIORITY FIRST',N'DU BOIS',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19665',2327,N'CURTIS',N'Sandy Hook',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19668',2328,N'FIVE STAR OF MARYLAND',N'BALTIMORE',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19678',2329,N'MIAMI UNIVERSITY COMMUNITY',N'Oxford',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1969',314,N'EDUCATION PERSONNEL',N'Danville',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19700',2330,N'MIDDLE TENNESSEE',N'COOKEVILLE',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19708',2331,N'NORTHERN ILLINOIS',N'DEKALB',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19723',2332,N'LOCAL 50 PLUMBERS & STEAMFTRS',N'Northwood',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19732',2333,N'RAVALLI COUNTY',N'Hamilton',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19739',2334,N'POLAM',N'LOS ANGELES',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19741',2335,N'FANNIN COUNTY TEACHERS',N'BONHAM',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19745',2336,N'ARMSTRONG CO. FEDERAL EMP.',N'KITTANNING',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19775',2337,N'GREATER CENTENNIAL',N'Mount Vernon',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19788',2338,N'CAROLINA',N'CHERRYVILLE',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'198',49,N'WHITING REFINERY',N'Whiting',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1982',316,N'CENTRIC',N'West Monroe',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19853',2339,N'ADVANZ',N'Louisville',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19867',2340,N'URW COMMUNITY',N'DANVILLE',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1987',317,N'EWA',N'Ewa Beach',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19879',2341,N'COVE',N'Edgewood',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19881',2342,N'OHIO COUNTY PUBLIC SCHOOLS',N'WHEELING',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19890',2343,N'EASTERN PANHANDLE',N'Martinsburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19896',2344,N'BUTTE COMMUNITY',N'Butte',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'199',50,N'MEMBERS CHOICE OF CENTRAL TEXAS',N'WACO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1992',318,N'MCKEESPORT CONGREGATIONAL',N'McKeesport',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19926',2345,N'ROCKDALE',N'Rockdale',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19960',2346,N'PROCTOR',N'proctor',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19973',2347,N'SUMMIT HAMPTON ROADS',N'Norfolk',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19976',2348,N'FIRST TECHNOLOGY',N'SAN JOSE',N'CA',N'ISE',8,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19983',2349,N'ILA 28',N'Pasadena',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'19985',2350,N'ARABI SUGAR WORKERS',N'New Orleans',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'1999',319,N'LOGIX',N'Valencia',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'200',51,N'A T & T EMPLOYEES PITTSBURGH',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20002',2351,N'LA TERRE',N'HOUMA',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20004',2352,N'IBEW LOCAL UNION 80',N'Norfolk',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20007',2353,N'HEALTH ADVANTAGE',N'SAGINAW',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20013',2354,N'BROCKPORT',N'Brockport',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20015',2355,N'ENCENTUS',N'Tulsa',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2003',320,N'MCKEESPORT AREA PUBLIC SCHOOL EMP',N'MCKEESPORT',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20041',2356,N'AMERICHOICE',N'MECHANICSBURG',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20042',2357,N'FRANKLIN MINT',N'CHADDS FORD',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20053',2358,N'MOUNTAIN LAUREL',N'SAINT MARYS',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20060',2359,N'URBAN EMPOWERMENT',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20061',2360,N'SIGNATURE',N'ALEXANDRIA',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20063',2361,N'MATERION',N'ELMORE',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2008',321,N'REMINGTON',N'Ilion',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20114',2362,N'TWO RIVERS',N'Arkadelphia',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20147',2363,N'TEAM FINANCIAL',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20186',2364,N'CHILDREN''S MEDICAL CENTER',N'Cincinnati',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20194',2365,N'MID MINNESOTA',N'Baxter',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20204',2366,N'KRATON BELPRE',N'Belpre',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20207',2367,N'PENN',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2021',322,N'TEANECK',N'TEANECK',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20222',2368,N'EIGHT',N'Rossford',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20228',2369,N'MONTELL',N'Sulphur',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2024',323,N'LA FINANCIAL',N'Pasadena',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20258',2371,N'RELIANT COMMUNITY',N'Sodus',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20267',2372,N'FRIO COUNTY',N'Pearsall',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20279',2373,N'SISTER''S HOSPITAL EMPLOYEES',N'BUFFALO',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20290',2374,N'TWIN RIVERS',N'Massena',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20292',2375,N'SLOAN PUBLIC SCHOOLS',N'Cheektowaga',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20302',2376,N'HARVEST',N'Heath',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20303',2377,N'FARMERS BRANCH CITY EMPLOYEES',N'FARMERS BRANCH',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20324',2378,N'ALLOY',N'Alloy',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20336',2379,N'DIVISION 726',N'STATEN ISLAND',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20341',2380,N'LUFTHANSA EMP.',N'WESTBURY',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20354',2381,N'HILL DISTRICT',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20382',2382,N'GREATER METRO',N'LONG ISLAND CIT',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20392',2383,N'BROWNSVILLE CITY EMPLOYEES',N'BROWNSVILLE',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20394',2384,N'BEACH MUNICIPAL',N'Virginia Beach',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20410',2385,N'NORTHSIDE',N'ATLANTA',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20417',2386,N'FIRST STREET',N'DERIDDER',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20419',2387,N'BYKOTA',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20438',2388,N'ARH',N'MIDDLESBORO',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20448',2389,N'PROPONENT',N'Nutley',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2046',324,N'PAMPA TEACHERS',N'Pampa',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20463',2390,N'N. J. LATVIAN',N'Freehold',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20469',2392,N'I.B.E.W. LU 66',N'PASADENA',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2049',325,N'WAIALUA',N'Waialua',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20496',2393,N'SECNY',N'SYRACUSE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'205',52,N'ALLEGENT COMMUNITY',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20509',2394,N'COWETA CITIES & COUNTY EMPLOYEES',N'NEWNAN',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2051',326,N'LA PORTE COMMUNITY',N'LA PORTE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20513',2395,N'ALCOA MUNICIPAL EMPLOYEES',N'ALCOA',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20516',2396,N'KAIPERM NORTHWEST',N'Portland',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20529',2397,N'G. C. A.',N'LAKE CHARLES',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20543',2398,N'CAPITAL AREA REALTORS',N'Rockville',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20547',2399,N'UPSTATE MILK EMPLOYEES',N'Lancaster',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20550',2400,N'TEAMSTERS LOCAL UNION #270',N'NEW ORLEANS',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20558',2401,N'CHROME',N'Canonsburg',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2056',327,N'SEWERAGE & WATER BOARD EMPLOYEES',N'New Orleans',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20570',2402,N'CHAMPION',N'Cambridge',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20581',2403,N'J.C.T.',N'EDNA',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20585',2404,N'B.S. AND C.P. HOSPITALS EMPLOYEES',N'Bronx',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20591',2405,N'CENTERVILLE CLINICS EMPLOYEES',N'Scenery Hill',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20595',2406,N'MSD',N'LOUISVILLE',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20600',2407,N'LUSO',N'Ludlow',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20610',2409,N'WALKER COUNTY EDUCATORS',N'Chickamauga',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20613',2410,N'UFIRST',N'Plattsburgh',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20622',2411,N'MINERVA AREA',N'Minerva',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20623',2412,N'JOHNS HOPKINS',N'Baltimore',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20629',2413,N'ST. VINCENT''S MEDICAL CENTER',N'BRIDGEPORT',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20641',2414,N'LAKE CHEM COMMUNITY',N'Benton',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2065',328,N'LOWELL MUNICIPAL EMPLOYEES',N'Lowell',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20656',2415,N'CHOPTANK ELECTRIC COOP EMPLOY',N'Denton',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20661',2416,N'DOY',N'Youngstown',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20662',2417,N'ENLIGHTEN',N'JACKSON',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2068',329,N'SOUTHERN TEACHERS & PARENTS',N'BATON ROUGE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20684',2418,N'DAVIESS COUNTY TEACHERS',N'Owensboro',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20691',2419,N'HIGHWAY',N'Hughestown',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20720',2420,N'L. A. MISSION',N'San Fernando',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20727',2421,N'CAMPCO',N'GILLETTE',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20749',2422,N'WESLA',N'Shreveport',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20773',2423,N'LOCAL 1233',N'Newark',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20793',2424,N'FINANCIAL HEALTH',N'Indianapolis',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20805',2425,N'DUBOIS-PIKE',N'JASPER',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20823',2426,N'MOHAWK VALLEY',N'MARCY',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20824',2427,N'HOPESOUTH',N'Abbeville',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20839',2428,N'MORNING STAR BAPTIST',N'Clairton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20842',2429,N'UNO',N'NEW ORLEANS',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20857',2430,N'METRO REALTORS',N'West Babylon',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20861',2431,N'P & G MEHOOPANY EMPLOYEES',N'Tunkhannock',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20874',2432,N'BULAB EMPLOYEES',N'MEMPHIS',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20885',2433,N'MEDISYS EMPLOYEES',N'JAMAICA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20890',2434,N'STEPHENS COUNTY COMMUNITY',N'TOCCOA',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20891',2435,N'KRAFTCOR',N'Hawesville',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20921',2436,N'MERHO',N'JOHNSTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20943',2437,N'JOURNEY',N'SAINT JOHNS',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20951',2438,N'OPC',N'Durkee',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20957',2439,N'TEAMSTERS LOCAL 697',N'Wheeling',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20974',2441,N'B.O.N.D. COMMUNITY',N'Atlanta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2098',330,N'ALIQUIPPA TEACHERS',N'Beaver',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2099',331,N'CITADEL',N'EXTON',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'20990',2442,N'ALCON EMPLOYEES',N'Fort Worth',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21009',2443,N'PRINCETON',N'PRINCETON',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21012',2444,N'FIRST CHOICE FINANCIAL',N'Gloversville',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21020',2445,N'ROCK COMMUNITY',N'Rock',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21026',2446,N'TRUNORTHERN',N'Malone',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21029',2447,N'PORT OF HOUSTON WAREHOUSE',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21057',2448,N'C C M H',N'Parkersburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21070',2449,N'DOWAGIAC AREA',N'DOWAGIAC',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21073',2450,N'1ST MISSISSIPPI',N'Meridian',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21083',2451,N'HIGH POINT',N'Olean',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21100',2452,N'UNION TRADES',N'Parkersburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21107',2453,N'PUTNAM SCHOOL EMPLOYEES',N'ELEANOR',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21109',2454,N'L''OREAL USA',N'Mountainside',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21115',2455,N'HANCOCK SCHOOL EMP.',N'Weirton',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2112',332,N'WICHITA FALLS TEACHERS',N'Wichita Falls',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21126',2456,N'REGIONAL MEDICAL CTR HOPKINS CO EMP',N'MADISONVILLE',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21140',2457,N'WESTERN PA',N'New Kensington',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2115',333,N'ONE SOURCE',N'EL PASO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21157',2459,N'CINCINNATI HEALTHCARE ASSOCIATES',N'Cincinnati',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21190',2460,N'ASA',N'BLOOMFIELD',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21202',2461,N'SOUTH ATLANTIC',N'Boca Raton',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21204',2462,N'LEGACY FINANCIAL',N'TIOGA',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21226',2463,N'PROMEDICA',N'Toledo',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21231',2464,N'SCF WESTCHESTER N. Y. EMPLOYEES',N'WHITE PLAINS',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21240',2465,N'POCONO MEDICAL CENTER',N'East Stroudsbur',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21244',2466,N'UNION BUILDING TRADES',N'Parsippany',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21268',2467,N'DILLARD''S',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2127',334,N'WEST HUDSON TEACHERS',N'North Arlington',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21279',2468,N'LIVING IN FULFILLMENT EVERYDAY',N'Cross Roads',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21294',2469,N'FINGER LAKES HEALTH CARE',N'ELMIRA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21305',2470,N'THE UNITED',N'Morgantown',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2131',335,N'PRIMEWAY',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21319',2471,N'STRATEGIC',N'Sterling',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21326',2472,N'METRO',N'Arlington Heigh',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21339',2474,N'NORTHERN KENTUCKY',N'Highland Height',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21354',2475,N'VERITAS',N'Smyrna',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21355',2476,N'ST. JOHN UNITED',N'Buffalo',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21367',2477,N'PLANTERS',N'Suffolk',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21368',2478,N'VIDOR TEACHERS',N'Vidor',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21383',2479,N'DOMINO',N'Texarkana',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21393',2481,N'DELANCEY STREET',N'SAN FRANCISCO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2141',336,N'CAMPBELL',N'Maple Shade',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21413',2482,N'TIMBERLAND',N'DUBOIS',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21440',2483,N'MESSIAH BAPTIST CHURCH',N'East Orange',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21458',2484,N'BACK MOUNTAIN',N'SHAVERTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21499',2486,N'BERKELEY COUNTY PUBLIC SCHOOLS',N'Martinsburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21502',2487,N'POLAM',N'Redwood City',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21507',2488,N'NEW ENGLAND TEAMSTERS',N'Charlestown',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21508',2489,N'ANMED',N'Anderson',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21530',2490,N'UKRAINIAN SELFRELIANCE OF WEST. PA.',N'Carnegie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21532',2491,N'U.P.S. EMPLOYEES',N'ONTARIO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2155',337,N'HOBOKEN SCHOOL EMPLOYEES',N'HOBOKEN',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21556',2492,N'PENNSYLVANIA-AMERICAN WATER',N'Bethel Park',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2157',338,N'TUCSON',N'TUCSON',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21575',2493,N'BEKA',N'Lindale',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2158',339,N'NATURAL RESOURCES CONSERVATION SERV',N'Fort Worth',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21586',2495,N'U. H. S. EMPLOYEES',N'Johnson City',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21593',2496,N'FIRE POLICE CITY COUNTY',N'FORT WAYNE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'216',53,N'FEDFINANCIAL',N'Silver Spring',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21606',2497,N'MORROW COUNTY',N'Mount Gilead',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21609',2498,N'NORTHWESTERN ENERGY EMPLOYEES',N'BUTTE',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21614',2499,N'FIRST BAPTIST CHURCH (STRATFORD)',N'Stratford',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21615',2500,N'SABINE SCHOOL EMPLOYEES',N'MANY',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21628',2501,N'GREENWOOD MUNICIPAL',N'Greenwood',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21630',2502,N'NORTHEASTERN OPERATING ENGINEERS',N'WHITESTONE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21639',2503,N'TEAM AND WHEEL',N'Winston Salem',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21644',2504,N'TORO EMPLOYEES',N'Bloomington',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21658',2505,N'GENESEE VALLEY',N'GENESEO',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21669',2507,N'HOME TOWN',N'Owatonna',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2168',340,N'MANVILLE AREA',N'MANVILLE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21683',2508,N'WEST SIDE BAPTIST CHURCH',N'Saint Louis',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21686',2509,N'PARDA',N'Rochester',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21694',2510,N'ULSTER',N'Kingston',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21710',2511,N'GOODYEAR SAN ANGELO',N'SAN ANGELO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21713',2512,N'MARSHALL COUNTY',N'Moundsville',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21737',2513,N'ATLANTIC HEALTH EMPLOYEES',N'Summit',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21751',2514,N'FEDEX EMPLOYEES CREDIT ASSOCIATION',N'Memphis',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21774',2515,N'GHA',N'Greenwich',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21782',2516,N'I.B.E.W. - LOCAL NO. 5',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21787',2517,N'M G EMPLOYEES',N'Marysville',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21788',2518,N'VALWOOD PARK',N'Carrollton',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21794',2519,N'THE INFIRMARY',N'Mobile',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21798',2520,N'CONSTRUCTION',N'BINGHAM FARMS',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2182',342,N'GREATER ALLIANCE',N'Paramus',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21831',2521,N'TRANSIT',N'VALLEY STREAM',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21845',2522,N'BLACKHAWK',N'Beaver Falls',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21851',2523,N'SUNY FREDONIA',N'FREDONIA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21853',2524,N'LABOR MANAGEMENT',N'LEWISPORT',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2187',343,N'DEXSTA',N'Wilmington',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21873',2525,N'COMMODORE PERRY',N'OAK HARBOR',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21875',2526,N'TRI-COUNTY',N'Delevan',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21879',2527,N'P.H.I.',N'Lafayette',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21904',2528,N'EMPLOYEES UNITED',N'Paris',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2191',344,N'FIBRE',N'LONGVIEW',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21927',2529,N'OSWEGO COUNTY',N'OSWEGO',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21930',2530,N'CINFED',N'Cincinnati',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21956',2531,N'U.F.C.W. LOCAL 23',N'Canonsburg',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21968',2532,N'LOUISIANA BAPTIST',N'alexandria',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'21971',2533,N'CPM',N'NORTH CHARLESTO',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'220',54,N'HOPE',N'Bridgeport',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22005',2534,N'ENGAGE',N'NATCHITOCHES',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22007',2535,N'WAYLAND TEMPLE BAPTIST',N'PHILADELPHIA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22028',2536,N'VAH LYONS EMPLOYEES',N'Lyons',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22032',2537,N'ENTERTAINMENT INDUSTRIES',N'ELIZABETH',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22049',2538,N'PORT OF HAMPTON ROADS ILA',N'NORFOLK',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22070',2539,N'NORTH ALABAMA PAPERMAKERS',N'Stevenson',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2208',345,N'UTICA POLICE DEPARTMENT',N'UTICA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22083',2540,N'E L C O',N'Elberton',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2209',346,N'BUFFALO METROPOLITAN',N'BUFFALO',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22114',2541,N'CIRCLE',N'Niles',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22119',2542,N'AMERICAN PARTNERS',N'Reidsville',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22128',2543,N'SERVICE 1ST',N'Danville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22131',2545,N'FEDERATION OF GREENE COUNTY EMPL.',N'Eutaw',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22132',2546,N'FARM CREDIT EMPLOYEES',N'Saint Paul',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22151',2547,N'CLEVELAND CHURCH OF CHRIST',N'CLEVELAND',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22157',2548,N'SOUTHWEST AIRLINES',N'Dallas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22159',2549,N'CORAL COMMUNITY',N'Ft Lauderdale',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22167',2550,N'TONAWANDA VALLEY',N'Batavia',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22174',2552,N'CMC-FCPI EMPLOYEES',N'Scranton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22195',2553,N'CVPH EMPLOYEES',N'PLATTSBURGH',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22213',2554,N'HEALTH CARE PROFESSIONALS',N'Richmond',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22219',2555,N'U B C SOUTHERN COUNCIL INDUSTRIA WO',N'MINDEN',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22220',2556,N'KALEIDA HEALTH',N'BUFFALO',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22241',2557,N'LONG REACH',N'Middlebourne',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2226',347,N'SUNWEST',N'Glendale',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2227',348,N'EMPORIA STATE',N'EMPORIA',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22280',2559,N'POLISH-AMERICAN',N'Troy',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22307',2561,N'CENTRAL VIRGINIA',N'LYNCHBURG',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22314',2562,N'CHOCTAW',N'CHOCTAW',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22322',2563,N'FIRST CARE',N'Roanoke',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22323',2564,N'JOHN WESLEY AME ZION CHURCH',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22337',2565,N'MARTINSBURG V.A. CENTER',N'KEARNEYSVILLE',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22340',2566,N'SUNCOMP EMPLOYEES',N'BRISTOL',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22362',2567,N'MERCY',N'Savannah',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22369',2568,N'TOTAL CHOICE',N'Hahnville',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2237',350,N'CALCOE',N'YAKIMA',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'224',55,N'MAGNOLIA',N'Jackson',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22400',2569,N'BROSNAN YARD',N'MACON',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22417',2570,N'ST. MARY PARISH SCHOOL EMP.',N'Franklin',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22426',2571,N'SOUTHCOAST',N'New Bedford',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22428',2572,N'MARION COUNTY SCHOOL EMPLOYEES',N'Fairmont',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22447',2573,N'LOCAL 41 I.B.E.W.',N'ORCHARD PARK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22449',2574,N'NESTLE (FREEHOLD) EMPLOYEES',N'Jackson',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22456',2575,N'THE HEART CENTER',N'ROSLYN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22458',2576,N'SHARONVIEW',N'Fort Mill',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2246',351,N'PARLIN DUPONT EMPLOYEES',N'Sayreville',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22464',2577,N'TONAWANDA COMMUNITY',N'Buffalo',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22468',2578,N'ELEMENTS FINANCIAL',N'INDIANAPOLIS',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22478',2579,N'KUE',N'Lexington',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2252',353,N'UTICA GAS & ELECTRIC EMP',N'NEW HARTFORD',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22520',2580,N'MTC',N'Greenville',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22522',2581,N'S. T. P. EMPLOYEES',N'Duncansville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22527',2582,N'WEST MONROE',N'West Monroe',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22530',2584,N'PEE DEE',N'FLORENCE',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22560',2585,N'STAR CITY',N'Roanoke',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22566',2586,N'MONEY',N'Syracuse',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22592',2587,N'POLISH & SLAVIC',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2260',354,N'UNION PACIFIC STREAMLINER',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22625',2588,N'LEATHERSTOCKING REGION',N'COOPERSTOWN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2263',355,N'FIRST NRV',N'Radford',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22637',2589,N'ARDENT',N'Phila',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22652',2590,N'CAPITAL AREA TAIWANESE',N'Germantown',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22657',2591,N'CAMC',N'Charleston',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22681',2592,N'TWIN OAKS',N'Apple Grove',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22688',2593,N'OHIO VALLEY',N'Batavia',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22695',2594,N'GREAT HORIZONS',N'Munster',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'227',56,N'PENTAGON',N'MCLEAN',N'VA',N'ISE',8,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22700',2595,N'KOREAN CATHOLIC',N'Olney',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22704',2596,N'INDIANA LAKES',N'WARSAW',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22719',2597,N'CONSUMER''S',N'Gregory',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22723',2598,N'PAR-DEL EMP.',N'WYOMING',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22740',2599,N'HSM',N'HICKORY',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22747',2600,N'THE LOCAL',N'Dallas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2275',356,N'KAHUKU',N'Kahuku',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22754',2601,N'C C S E',N'SALAMANCA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22769',2602,N'QUORUM',N'Purchase',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22785',2603,N'RICHLAND PARISH SCHOOLS',N'Rayville',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2280',357,N'HAMAKUA',N'Pepeekeo',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2285',358,N'ADVANCIAL',N'Dallas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22883',2604,N'ALLEGANY FIRST',N'Fillmore',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22931',2607,N'G.P.O.',N'NEW HARTFORD',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22953',2608,N'AVH',N'natrona heights',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22962',2609,N'TOMPKINS EMPLOYEES',N'Ithaca',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22972',2610,N'CROUSE',N'SYRACUSE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'22978',2611,N'MAIN IMPACT',N'Murray',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2299',359,N'GSA',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23004',2613,N'POPA',N'Cerritos',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2301',360,N'WINTHROP AREA',N'WINTHROP',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23015',2614,N'PRESTON',N'KINGWOOD',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23017',2615,N'XPLORE',N'Metairie',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23020',2616,N'PUBLIX EMPLOYEES',N'LAKELAND',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23052',2618,N'HMC (NJ)',N'Flemington',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23060',2619,N'SEVIER COUNTY SCHOOLS',N'SEVIERVILLE',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23070',2620,N'MOREHEAD COMMUNITY',N'Morehead',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23109',2622,N'MOLEX EMPLOYEES',N'LISLE',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23125',2624,N'PENINSULA GEN HOSP&MED CENTR EMPLS',N'SALISBURY',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23144',2625,N'LOCAL 804',N'Port Washington',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23156',2626,N'GENERATIONS',N'LA PORTE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23162',2627,N'ELEMENT',N'Charleston',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23170',2628,N'ARKANSAS EDUCATION ASSOCIATION',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23174',2629,N'U.A.L.U. 354',N'YOUNGWOOD',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23177',2630,N'SOUTHERN BAPTIST CHURCH OF NEW YORK',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23184',2631,N'TEXAS ASSOCIATIONS OF PROFESSIONALS',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23198',2632,N'TRI-LAKES',N'SARANAC LAKE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2322',361,N'TEXASGULF',N'Wharton',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23245',2633,N'TRINITY U.C.C.',N'CHICAGO',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23276',2634,N'MARBLEHEAD MUNICIPAL',N'Marblehead',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23279',2636,N'MICHIGAN STATE UNIVERSITY',N'East Lansing',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23283',2637,N'ALTERNATIVES',N'Ithaca',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23287',2638,N'VULCRAFT EMPLOYEES',N'ST JOE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23292',2639,N'GALLUP',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23294',2640,N'VITELCO EMPLOYEES',N'Charlotte Amali',N'VI',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'233',57,N'INFIRST',N'Alexandria',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23309',2641,N'SISSETON-WAHPETON',N'Agency Village',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23327',2642,N'SOUTHERN GAS',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23355',2643,N'SHELTER INSURANCE',N'Columbia',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23361',2644,N'ELECTRIC COOPERATIVES',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23371',2645,N'HEALTHCARE PLUS',N'Aberdeen',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23376',2646,N'DOE RUN',N'BRANDENBURG',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23386',2647,N'ACCLAIM',N'GREENSBORO',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23394',2648,N'GUTHRIE COMMUNITY',N'SAYRE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'234',58,N'PITTSBURGH FIREFIGHTER''S',N'PITTSBURGH',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23421',2649,N'LOYOLA UNIVERSITY EMPLOYEES',N'Maywood',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23425',2650,N'ACADEMIC',N'BRIARCLIFF MANO',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2346',364,N'EDUCATIONAL AND GOVERNMENTAL',N'Hartsdale',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23467',2651,N'VALLEY PRIDE',N'Kingston',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2348',365,N'GAF LINDEN EMPLOYEES',N'Parsippany',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23494',2652,N'CAROLINAS TELCO',N'Charlotte',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23503',2653,N'KOREAN AMERICAN CATHOLICS',N'FLUSHING',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23521',2654,N'DIGITAL',N'Marlborough',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23525',2655,N'ST. LUKE''S COMMUNITY',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23540',2656,N'TULANE/LOYOLA',N'New Orleans ',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23545',2658,N'CHHE',N'Huntington',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23556',2660,N'PAPER CONVERTERS LOCAL 286/1034',N'PHILADELPHIA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2357',366,N'HOUSTON POLICE',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23582',2661,N'BAYOU CITY',N'HOUSTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23605',2662,N'SYNERGY',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23615',2663,N'HEARD A.M.E.',N'ROSELLE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23620',2664,N'GEISMAR COMPLEX',N'Geismar',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23627',2665,N'M.O.S.E.S.',N'Boston',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23630',2666,N'B. M. H.',N'CLEVELAND',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23658',2667,N'PAUL QUINN',N'Jamaica',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23678',2669,N'GOYA FOODS EMPLOYEES',N'Jersey City',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2370',368,N'METROPOLITAN ''L''',N'Oak Park',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23700',2670,N'O AND R UTILITIES EMPLOYEES',N'Monroe',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23709',2671,N'JM ASSOCIATES',N'Jacksonville',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23717',2672,N'TOWN OF CHEEKTOWAGA',N'CHEEKTOWAGA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23722',2673,N'RALEIGH CO. EDUCATORS',N'BECKLEY',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23725',2674,N'B. BRAUN',N'ALLENTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2374',369,N'HONEYWELL PHILADELPHIA DIV',N'Ft Washington',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23753',2675,N'ALTOONA AREA EMPLOYEES',N'ALTOONA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23760',2676,N'HALIFAX COUNTY COMMUNITY',N'SOUTH BOSTON',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23780',2677,N'NORTHEAST COMMUNITY',N'San Francisco',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23803',2678,N'TAUPA LITHUANIAN',N'South Boston',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23807',2679,N'I.L.A. LOCAL 1235',N'Newark',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23811',2680,N'MID-ISLAND',N'Christiansted',N'VI',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2384',370,N'UNIVERSITY OF NEBRASKA',N'Lincoln',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23848',2681,N'GENESEE CO-OP',N'ROCHESTER',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23865',2682,N'SYRACUSE COOPERATIVE',N'Syracuse',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23888',2683,N'BEREA',N'BROOKLYN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23896',2684,N'EAST END BAPTIST TABERNACLE',N'BRIDGEPORT',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23899',2685,N'A M E CHURCH',N'Metairie',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23900',2686,N'N. MISSISSIPPI HEALTH SERVICES EMP.',N'Tupelo',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23908',2688,N'FLINT RIVER EMPLOYEES',N'Oglethorpe',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2394',371,N'NEW BRUNSWICK POSTAL',N'New Brunswick',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23949',2690,N'SIGNET',N'Paducah',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23952',2691,N'UNITED ARKANSAS',N'Little Rock',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23957',2692,N'AMERICAN AIRLINES',N'Fort Worth',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23958',2693,N'NEW YORK UNIVERSITY',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23964',2694,N'FIRST CALIFORNIA',N'FRESNO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23974',2695,N'YOGAVILLE',N'Buckingham',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23979',2696,N'GEORGETOWN UNIVERSITY ALUMNI AND ST',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23986',2698,N'UMATILLA COUNTY',N'Pendleton',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'23990',2699,N'ANDALUSIA MILLS EMPLOYEES CREDIT AS',N'ANDALUSIA',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'240',59,N'GREATER PITTSBURGH POLICE',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24003',2700,N'LOCAL GOVERNMENT',N'RALEIGH',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24026',2701,N'INDUSTRIAL',N'LAFAYETTE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24029',2702,N'SCIENT',N'Groton',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2403',372,N'HAWAII',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24030',2703,N'NEW RISING STAR',N'DETROIT',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24034',2704,N'NOTRE DAME',N'Notre Dame',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24036',2705,N'STEWART''S',N'Saratoga Spring',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24039',2706,N'N.I.C.E.',N'Saint Charles',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24043',2707,N'MESSIAH BAPTIST-JUBILEE',N'BROCKTON',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24047',2708,N'FOREST AREA',N'Fife Lake',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2405',373,N'G.A.P.',N'JOHNSTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24063',2709,N'FOUNDERS',N'Lancaster',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24073',2710,N'PARAMOUNT BAPTIST CHURCH',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24077',2711,N'ALTRA',N'ONALASKA',N'WI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24078',2712,N'ADVANCE FINANCIAL',N'SCHERERVILLE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24090',2713,N'NATRIUM EMPLOYEES',N'Proctor',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24108',2716,N'INDIANA HEARTLAND',N'KOKOMO',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24110',2717,N'SAN DIEGO FIREFIGHTERS',N'San Diego',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24123',2719,N'M.W.P.H. GRAND LODGE OF ILLINOIS',N'CHICAGO',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24131',2720,N'UNION YES',N'ORANGE',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2414',375,N'ROBERTS DAIRY EMPLOYEES',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24140',2721,N'NORTH CAROLINA PRESS ASSOCIATION',N'RALEIGH',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24150',2722,N'HEALTHCARE EMPLOYEES',N'PRINCETON',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24165',2723,N'UNIVERSITY OF KENTUCKY',N'Lexington',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24167',2724,N'NEW COMMUNITY',N'Newark',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24171',2725,N'INDEPENDENT',N'ANDERSON',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24181',2727,N'ADVANTAGE',N'Rochester',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24187',2728,N'ARIZE',N'State College',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24189',2729,N'CENTRAL NEBRASKA',N'GRAND ISLAND',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24192',2730,N'BEVERLY MUNICIPAL',N'Beverly',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24197',2731,N'MIL-WAY',N'TEXARKANA',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24199',2732,N'COMMUNITY FIRST',N'LAKEVIEW',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'242',60,N'GULF COAST COMMUNITY',N'GULFPORT',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24200',2733,N'LOGAN COUNTY SCHOOL EMPLOYEES',N'Logan',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24202',2734,N'TELCOE',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24204',2735,N'EVERGLADES',N'Clewiston',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24212',2736,N'SCHOOLSFIRST',N'SANTA ANA',N'CA',N'ISE',8,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24219',2738,N'MT. AIRY BAPTIST CHURCH',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24220',2739,N'KEMBA DELTA',N'Bartlett',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24221',2740,N'CHATTAHOOCHEE',N'VALLEY',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24223',2741,N'USF FEDERAL CREDIT UNION',N'Tampa',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24224',2742,N'ROCKLAND',N'ROCKLAND',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24226',2743,N'P.S.E. & G. NUCLEAR EMPLOYEES',N'HANCOCKS BRIDGE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24232',2744,N'LOWER EAST SIDE PEOPLE''S',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24234',2745,N'OMEGA PSI PHI FRATERNITY',N'Toccoa',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24235',2746,N'OPERATING ENGINEERS LOCAL UNION #3',N'LIVERMORE',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24236',2747,N'HUNTINGTON C & O RAILWAY EMPLOYEES',N'Huntington',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24238',2748,N'CALIFORNIA ADVENTIST',N'Glendale',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24239',2749,N'SOMERSET',N'Somerset',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24246',2750,N'MT. JEZREEL',N'Silver Spring',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24250',2751,N'I-C',N'FITCHBURG',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24254',2752,N'FIRST CITIZENS''',N'FAIRHAVEN',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24257',2753,N'RIVER TOWN',N'FORT SMITH',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24262',2754,N'PHI BETA SIGMA',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24266',2755,N'M.A.B.C.',N'PHILADELPHIA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24270',2756,N'FIRST FRONTIER',N'LYNBROOK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24274',2757,N'GREECE COMMUNITY',N'ROCHESTER',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24279',2758,N'GFA',N'Gardner',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24281',2759,N'MOSAIC',N'Harrisonburg',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24284',2760,N'PLUMBERS & FITTERS LOCAL 675',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24286',2761,N'NEBRASKA ENERGY',N'COLUMBUS',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24290',2762,N'UNIVERSITY OF PENNSYLVANIA STUDENTS',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24292',2763,N'NORTHROP GRUMMAN',N'Gardena',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24299',2764,N'MIRASTAR',N'San Jose',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24304',2765,N'BORDER',N'Del Rio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24312',2766,N'NORTH COUNTRY',N'BURLINGTON',N'VT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24313',2767,N'ARGENT',N'CHESTERFIELD',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24324',2768,N'MET TRAN',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24326',2769,N'CHEVRON',N'Concord',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24327',2770,N'SIOUXLAND',N'South Sioux Cit',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24358',2775,N'ST. PAUL',N'SAINT PAUL',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24362',2776,N'AFFINITY PLUS',N'Saint Paul',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24373',3821,N'LOCAL UNION 392',N'Cincinnati',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24381',3666,N'DELTA COUNTY',N'DELTA',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24382',2904,N'CREDIT HUMAN',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24384',4342,N'NIZARI PROGRESSIVE',N'Sugar Land',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24385',2806,N'BLUE CHIP',N'HARRISBURG',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24387',3525,N'SYRACUSE POSTAL',N'SYRACUSE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24390',3491,N'TRUSERVICE COMMUNITY',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24396',3818,N'NEIGHBORHOOD COMMUNITY',N'Omaha',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2440',377,N'FIRST NEW YORK',N'Albany',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24402',3747,N'ONENEBRASKA',N'Columbus',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24404',3768,N'CARO',N'COLUMBIA',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24405',3620,N'VERMONT',N'So Burlington',N'VT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2441',378,N'AMOCO',N'TEXAS CITY',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24410',2940,N'SRP',N'NORTH AUGUSTA',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24414',2970,N'BUILDING TRADES',N'MAPLE GROVE',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2442',379,N'GULF SHORE',N'Texas City',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24421',2819,N'LEGACY COMMUNITY',N'BIRMINGHAM',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24422',2913,N'UP ARKANSAS',N'North Little Ro',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24423',3103,N'PINE BLUFF POSTAL',N'PINE BLUFF',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24428',2911,N'WHITE COUNTY',N'SEARCY',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24429',3428,N'VA HOSPITAL',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24430',3488,N'FORT ROOTS',N'NORTH LITTLE RO',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24431',3427,N'COOPERATIVE EXTENSION SERVICE',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24432',3494,N'NATURAL STATE',N'SEARCY',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24433',3642,N'ARKANSAS TEACHERS',N'LIttle Rock',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24434',3493,N'NORTH LITTLE ROCK EDUCATORS',N'North Little Ro',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24435',3453,N'U.P. EMPLOYEES',N'NORTH LITTLE RO',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24437',3402,N'LION',N'EL DORADO',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24438',2953,N'ALLEGACY',N'Winston Salem',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24439',3436,N'ARKANSAS FARM BUREAU',N'Little Rock',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24443',4434,N'PIONEER VALLEY',N'Springfield',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24445',4300,N'BP',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24451',3967,N'SPOKANE MEDIA',N'Spokane',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24454',3294,N'MID-TEX',N'BROWNWOOD',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2446',380,N'INTERNAL REVENUE',N'NEW ORLEANS',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24463',4471,N'BRENTWOOD BAPTIST CHURCH',N'HOUSTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24464',4368,N'KNOXVILLE TEACHERS',N'KNOXVILLE',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24465',4277,N'GOVERNMENT EMPLOYEES',N'Austin',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24470',4235,N'EDUCATION FIRST',N'Beaumont',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24472',4403,N'POSTAL EMPLOYEES REGIONAL',N'PAWTUCKET',N'RI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24481',4220,N'IRVING CITY EMPLOYEES',N'Irving',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24482',4473,N'SOUTH METRO',N'PRIOR LAKE',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24483',4474,N'EAST END FOOD COOPERATIVE',N'PITTSBURGH',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24484',2947,N'UPSTATE',N'Anderson',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24486',4402,N'CUMBERLAND MUNICIPAL EMPLOYEES',N'Cumberland',N'RI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24490',2810,N'FIRST CAPITAL',N'York',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24491',2934,N'PALMETTO FIRST',N'Florence',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24492',3602,N'DELTA SCHOOLS',N'ANTIOCH',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24495',4373,N'APPALACHIAN COMMUNITY',N'Kingsport',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24501',3766,N'WAVE',N'WARWICK',N'RI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24506',4475,N'EPISCOPAL COMMUNITY',N'Los Angeles',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24508',4172,N'DADE COUNTY',N'Sweetwater',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24511',4428,N'MORTON',N'taunton',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24516',4449,N'CLEVELAND SELFRELIANCE',N'PARMA',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24520',4118,N'SANTA ANA',N'Santa Ana',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24523',3583,N'BLACKSTONE RIVER',N'Woonsocket',N'RI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24524',3228,N'TINKER',N'Oklahoma City',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24526',3325,N'BRECO',N'Baton Rouge',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24530',3077,N'PRESIDENTS',N'CLEVES',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24532',4476,N'COVENANT SAVINGS',N'Killeen',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24534',2889,N'AMERICA''S FIRST',N'BIRMINGHAM',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24535',4477,N'FIRST BAPTIST CHURCH OF VIENNA (VA)',N'VIENNA',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24536',3000,N'VITAL',N'Spartanburg',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24539',3437,N'TRANSIT OPERATIONS',N'MINNEAPOLIS',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2454',381,N'FIRST OHIO COMMUNITY',N'North Canton',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24540',3787,N'MUTUAL FIRST',N'Omaha',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24542',3968,N'SAN FRANCISCO',N'San Francisco',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24543',3866,N'MILLBURY',N'Millbury',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24545',3432,N'LAKE COUNTY EDUCATIONAL',N'PAINESVILLE',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24546',4478,N'BIG BETHEL A.M.E. CHURCH',N'Atlanta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24547',2812,N'EVERGREEN PARK SCHOOLS',N'EVERGREEN PARK',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24549',4479,N'HANIN',N'Los Angeles',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24552',2884,N'NOBLE',N'Fresno',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24553',4120,N'LOS ANGELES POLICE',N'Van Nuys',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24557',3858,N'WEBSTER FIRST',N'Worcester',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24560',3757,N'GREYLOCK',N'Pittsfield',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24563',4482,N'ESL',N'Rochester',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24564',3861,N'HEALTHCARE SYSTEMS',N'Falls Church',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24566',4425,N'MASSMUTUAL',N'SPRINGFIELD',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24567',3109,N'TEXAR',N'TEXARKANA',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24575',4391,N'RESOURCE',N'JACKSON',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24578',4483,N'TOLEDO URBAN',N'Toledo',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24579',3563,N'WAKOTA',N'South St Paul',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24583',4484,N'NRS COMMUNITY DEVELOPMENT',N'BIRMINGHAM',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24589',4485,N'NEIGHBORHOOD TRUST',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2460',382,N'PRESCOTT',N'PRESCOTT',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24603',4488,N'FAMILY ADVANTAGE',N'Spring Hill',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24605',4489,N'MOUNT OLIVE BAPTIST CHURCH',N'Arlington',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24606',4144,N'GREAT NORTHWEST',N'ABERDEEN',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24612',3677,N'FAIRMONT SCHOOL EMPLOYEES',N'FAIRMONT',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24613',2852,N'GREEN COUNTRY',N'Sand Springs',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24614',4490,N'GIDEON',N'Waukegan',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24615',4427,N'MEDFORD MUNICIPAL EMPLOYEES',N'MEDFORD',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24623',4492,N'BROOKLAND',N'West Columbia',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24626',3242,N'TRUSTAR',N'INTERNATIONAL F',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24627',2969,N'1ST COOPERATIVE',N'Cayce',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24629',4388,N'TRUST',N'Chattanooga',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24630',3505,N'CU HAWAII',N'Hilo',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24631',4494,N'PLATINUM',N'Duluth',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24632',3115,N'GREAT RIVER',N'Saint Cloud',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24637',3461,N'LORMET COMMUNITY',N'Amherst',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24640',4496,N'MOUNT PLEASANT BAPTIST CHURCH',N'ALEXANDRIA',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24642',4497,N'BROOKLYN COOPERATIVE',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24648',4498,N'LCO',N'Hayward',N'WI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24649',4153,N'FIRST PRIORITY',N'Huntington',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24657',4500,N'NONE SUFFER LACK',N'SUITLAND',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24658',3998,N'NEXTMARK',N'Fairfax',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24661',3056,N'EAGLE LOUISIANA',N'BATON ROUGE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24668',3380,N'CENTURYFIRST',N'HATTIESBURG',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2467',383,N'NORTHSIDE L',N'Broadview',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24670',3516,N'1199 SEIU',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24673',3119,N'FIRST',N'Hiawatha',N'IA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24674',3330,N'TRADES & LABOR',N'ALBERT LEA',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24676',3341,N'CARPENTERS',N'Saint Paul',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24679',3389,N'CITY AND COUNTY EMPLOYEES',N'Albert Lea',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24682',4501,N'PIONEER COMMUNITY',N'PALISADE',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24683',4502,N'UNITED NEIGHBORHOOD',N'Augusta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24688',3044,N'CYPRUS',N'WEST JORDAN',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24690',4504,N'FASNY',N'ALBANY',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24692',3267,N'MOUNTAIN AMERICA',N'SANDY',N'UT',N'ISE',8,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24693',3238,N'GOLDENWEST',N'Ogden',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24694',2794,N'AMERICA FIRST',N'RIVERDALE',N'UT',N'ISE',8,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24695',4506,N'NEBRASKA RURAL COMMUNITY',N'Morrill',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24698',4019,N'JORDAN',N'South Jordan',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24703',87,N'TRAX',N'Tampa',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24704',4507,N'SOUTH SIDE COMMUNITY',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24705',2726,N'SOUND',N'Norwalk',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24708',4035,N'DESERET FIRST',N'West Valley Cit',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24709',4030,N'EASTERN UTAH COMMUNITY',N'Price',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24710',3820,N'UNIVERSITY FIRST',N'Salt Lake City',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24711',3718,N'HOMEWOOD',N'HOMEWOOD',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24712',2961,N'POST OFFICE EMPLOYEES',N'Shreveport',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24713',1068,N'PEOPLE''S COMMUNITY',N'VANCOUVER',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24715',2916,N'RADIUS',N'Kenmore',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24718',2635,N'JETSTREAM',N'Miami Lakes',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24720',2996,N'DN COMMUNITY',N'Canton',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24724',3178,N'SPIRIT OF AMERICA',N'LINCOLN',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24725',3541,N'OHIO HEALTHCARE',N'DUBLIN',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24726',3972,N'GRANITE',N'SALT LAKE CITY',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24730',4088,N'COMMUNITY & TEACHERS',N'East Providence',N'RI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24731',3524,N'WESTERN DIVISION',N'WILLIAMSVILLE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24733',3101,N'SERVICE STATION DEALERS',N'PHILA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24742',3323,N'HERITAGE FAMILY',N'Rutland',N'VT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24743',4150,N'CHARLESTON POSTAL',N'CHARLESTON',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24746',3979,N'HORIZON UTAH',N'Farmington',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24748',3615,N'MAYO EMPLOYEES',N'ROCHESTER',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24751',3100,N'COMMUNITY PLUS',N'Rantoul',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24753',3729,N'FOUR POINTS',N'Omaha',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24759',3829,N'MEADOW GROVE',N'MEADOW GROVE',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24763',4037,N'NEW HEIGHTS',N'LOGAN',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24767',4510,N'UNIFIED HOMEOWNERS OF ILLINOIS',N'CHICAGO',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24769',4511,N'EMPOWERMENT COMMUNITY DEVELOPMENT',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24770',4077,N'COMMUNITY LINK',N'HUNTINGTON',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24771',3631,N'FAMILY FOCUS',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24773',3738,N'VAREX',N'SALT LAKE CITY',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24774',3564,N'ALLTRU',N'WENTZVILLE',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24776',4512,N'COMUNIDAD LATINA',N'SANTA ANA',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24780',3259,N'WASATCH PEAKS',N'OGDEN',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24781',4513,N'URBAN BEGINNINGS CHOICE',N'Fort Wayne',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24783',3257,N'FIRST PIONEERS',N'LAFAYETTE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24784',4514,N'NEW COVENANT DOMINION',N'Bronx',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24793',3198,N'SETTLERS',N'BRUCE CROSSING',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24796',3804,N'GARDEN ISLAND',N'Lihue',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24797',3607,N'GATEWAY METRO',N'Saint Louis',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24801',3464,N'CAROLINA COOPERATIVE',N'CHARLOTTE',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24802',4515,N'SELF-HELP',N'Durham',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24804',4516,N'OAK CLIFF CHRISTIAN',N'Dallas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24807',3166,N'WELCOME',N'MORRISVILLE',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24808',2817,N'SKYLA',N'Charlotte',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24810',4517,N'1ST BERGEN',N'Hackensack',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24811',3296,N'SHUFORD',N'Hickory',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24812',2905,N'WESTREET',N'Tulsa',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24813',3796,N'LION''S SHARE',N'Salisbury',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24814',3841,N'WINSTON-SALEM',N'WINSTON SALEM',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24816',2808,N'PRECISION',N'Keene',N'NH',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24818',4307,N'PIONEER MUTUAL',N'SUGAR LAND',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24819',3914,N'ELECTEL COOPERATIVE',N'Raleigh',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24823',4518,N'URBAN UPBOUND',N'LONG ISLAND CIT',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24824',2981,N'S. C. STATE',N'Columbia',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24826',3591,N'PYRAMID',N'Tucson',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24829',4480,N'HOPE',N'JACKSON',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24831',2809,N'ORION',N'Memphis',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24839',3495,N'HAWAII CENTRAL',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24840',3836,N'REVITY',N'GREENSBORO',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24841',4152,N'CAPE',N'Clarksburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24843',2972,N'ARBUCKLE',N'ADA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24845',4520,N'STEPPING STONES COMMUNITY',N'Wilmington',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24847',4521,N'LAKOTA',N'Kyle',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24848',4522,N'COMMUNITY PROMISE',N'KALAMAZOO',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24849',4523,N'THRIVENT',N'Appleton',N'WI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24850',3752,N'CRAYOLA LLC EMPLOYEES CREDIT UNION',N'EASTON',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24851',2931,N'NEIGHBORS UNITED',N'Greenwood',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24853',4505,N'NEW LIFE',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24854',3617,N'CREDIT UNION OF COLORADO, A',N'Denver',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24855',3865,N'MEMBERS FIRST OF MARYLAND',N'Baltimore',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24857',3382,N'BRADFORD AREA SCHOOL EMPLOYEES',N'Bradford',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24858',3061,N'MAINSTREET',N'Lenexa',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24859',4524,N'FIRST UNITY',N'McComb',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24860',3612,N'RIVERLAND',N'NEW ORLEANS',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24861',4525,N'LUTHERAN',N'Saint Louis',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24862',4526,N'THE FINEST',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24863',4527,N'SENECA NATION OF INDIANS',N'IRVING',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24866',4528,N'ELCA',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24867',4529,N'REDEEMER',N'Plano',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24868',4442,N'WORCESTER POLICE DEPARTMENT',N'Worcester',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24871',2946,N'JEFFERSON FINANCIAL',N'Metairie',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24872',3812,N'DALE COMMUNITY',N'Columbus',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24873',3497,N'ENCOMPASS NIAGARA',N'Niagara Falls',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24874',3053,N'GREAT LAKES',N'Bay City',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24875',2494,N'THE FIRST FINANCIAL',N'Pasadena',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24876',3492,N'VICKSWOOD',N'Vicksburg',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24877',4317,N'FIREFIGHTERS FIRST',N'Los Angeles',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24878',3442,N'NORTHERN LIGHTS',N'Saint Johnsbury',N'VT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24880',3767,N'PEARL MUNICIPAL',N'Pearl',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24881',3973,N'CM MEMBERS',N'Columbus',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24883',3486,N'ECM',N'RIDGELAND',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24885',3129,N'SOUTHERN COASTAL',N'BILOXI',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24887',2903,N'TTCU',N'Tulsa',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24888',4154,N'WEST VIRGINIA CENTRAL',N'PARKERSBURG',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24889',4531,N'CLEAN ENERGY',N'Englewood',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24892',3096,N'VICKSBURG RAILROAD',N'Vicksburg',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24893',1527,N'DELTA',N'Greenville',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24894',3483,N'MERIDIAN POSTAL',N'Meridian',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24895',3377,N'MISSISSIPPI COLLEGE EMPLOYEES',N'Clinton',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24896',3506,N'NATCHEZ EDUCATORS',N'Natchez',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24899',2864,N'WEOKIE',N'Oklahoma City',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24901',3374,N'FRATERNAL ORDER OF POLICE',N'TULSA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24902',4022,N'HERCULES FIRST',N'SALT LAKE CITY',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24903',3831,N'CAMDEN FIREMEN''S',N'MOORESTOWN',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24904',3245,N'RIVERVIEW',N'Belpre',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24905',3739,N'COMMUNITY PARTNERS',N'NEWTON',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24906',4532,N'EVEREST',N'Jackson Heights',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24908',3065,N'GULF TRUST',N'PASCAGOULA',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24909',2980,N'OHIO VALLEY COMMUNITY',N'CLARINGTON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24910',4533,N'OTOE-MISSOURIA',N'Red Rock',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24911',3745,N'NORTHAMPTON AREA SCHOOL DIST. EMPS',N'Northampton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24914',3425,N'MERITRUST',N'Wichita',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24916',3613,N'I.L.W.U.',N'Long Beach',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24917',700,N'COBALT',N'Papillion',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24918',4023,N'DESERT RIVERS',N'Moab',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24919',4534,N'GROWING OAKS',N'Goldsby',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24920',841,N'BEST REWARD',N'Brook Park',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24921',1516,N'SERVICE',N'PORTSMOUTH',N'NH',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24923',3895,N'WORKERS',N'Littleton',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24924',4423,N'MASSACHUSETTS FAMILY',N'LYNN',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24925',4535,N'MAUN',N'Kendall Park',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24927',3758,N'CREDIT UNION OF NEW JERSEY, A',N'Ewing',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24928',4536,N'FINANTA',N'Lancaster',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24929',1261,N'MC',N'Danville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2493',384,N'JERSEY CENTRAL',N'CRANFORD',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24930',4537,N'CAPITAL',N'Lubbock',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24931',1349,N'PARK',N'Louisville',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24934',3283,N'TRUE SKY',N'Oklahoma City',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24935',4538,N'UNITY OF EATONVILLE',N'Eatonville',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24936',3419,N'ALLEGIANCE',N'Oklahoma City',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24937',4539,N'WEDEVELOPMENT',N'Kansas City',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24940',4540,N'PEOPLE TRUST COMMUNITY',N'North Little Ro',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24941',2790,N'GECU',N'El Paso',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24942',4541,N'NEW YORK EPISCOPAL',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24943',4542,N'THE MORNING STAR',N'Lame Deer',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24944',3071,N'CCE',N'Fargo',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24945',3711,N'ENVISTA',N'Topeka',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24946',4543,N'FOR MEMBERS ONLY',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24947',4544,N'GENERATIONS UNITED',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24948',3469,N'MUTUAL',N'Vicksburg',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2495',386,N'CHICAGO AVENUE GARAGE',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24950',4545,N'YOUNG COMMUNITY',N'LOUISVILLE',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24951',2971,N'INSTEP',N'New Orleans',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24952',2909,N'MEMBERS EXCHANGE',N'Jackson',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24953',3681,N'OKLAHOMA''S',N'OKLAHOMA CITY',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24954',3480,N'NAVIGATOR',N'Pascagoula',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24955',3581,N'RIVER REGION COMMUNITY',N'Jefferson City',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24956',4430,N'REVERE FIREFIGHTERS',N'Revere',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24957',1637,N'COASTHILLS',N'Santa Maria',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24958',4546,N'NEW JERSEY STATE PBA',N'Woodbridge',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24959',4415,N'HARVARD',N'Cambridge',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24960',4548,N'TRIBE',N'Eagan',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24961',4549,N'FAIR BREAK',N'Memphis',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24962',3971,N'VIRGINIA',N'Richmond',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24963',1538,N'FIRST SOUTH FINANCIAL',N'Bartlett',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'24964',257,N'LIGHTHOUSE',N'Portsmouth',N'NH',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2498',387,N'CTA-74TH STREET DEPOT',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2505',388,N'77TH STREET DEPOT',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2507',389,N'OMAHA PUBLIC POWER DIST EMP',N'Omaha',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2508',390,N'CROSSROADS COMMUNITY',N'CHEEKTOWAGA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2535',391,N'CANTON SCHOOL EMPLOYEES',N'North Canton',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2540',392,N'ABERDEEN PROVING GROUND',N'ABERDEEN',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2551',393,N'POLICE & FIRE',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2554',394,N'ALCOA PITTSBURGH',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'256',61,N'ENERGY ONE',N'Tulsa',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2562',395,N'MAUI',N'KAHULUI',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2574',396,N'MEMBERS 1ST OF NJ',N'Vineland',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2577',397,N'KAUAI TEACHERS',N'Lihue',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'258',62,N'HOUSTON TEXAS FIRE FIGHTERS',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2583',398,N'SAINT NICHOLAS',N'Wilkes Barre',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2585',399,N'RED CROWN',N'Tulsa',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'26',9,N'FARMERS',N'JACKSONVILLE',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2612',401,N'MULTI-SCHOOLS',N'Wampum',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2617',402,N'LINDEN NJ POLICE & FIREMEN',N'LINDEN',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'262',63,N'EP',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2625',403,N'PENNSYLVANIA CENTRAL',N'Harrisburg',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2641',404,N'BAYONNE SCHOOL EMPLOYEES',N'BAYONNE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2643',405,N'LINCOLN PUBLIC SCHOOL EMPLOYEES',N'Lincoln',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2644',406,N'MAINE FAMILY',N'Lewiston',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2645',407,N'OXFORD',N'MEXICO',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2657',408,N'WYOMING VALLEY EDUCATIONAL EMPL',N'Wilkes Barre',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2658',409,N'FIRST SOURCE',N'New Hartford',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'266',64,N'LIBRARY OF CONGRESS',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2682',410,N'SOUTH SHOP',N'ALSIP',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2705',411,N'HELCO',N'HILO',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2709',412,N'NORTHEAST FAMILY',N'MANCHESTER',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2711',413,N'PROFINANCE',N'Merrillville',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2713',414,N'MCBRYDE',N'Eleele',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2730',415,N'INROADS',N'Saint Helens',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'274',65,N'AREA',N'ABERDEEN',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2740',417,N'USX',N'Cranberry Twp',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2742',418,N'PENN EAST',N'SCRANTON',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2744',419,N'U. S. EMPLOYEES O. C.',N'OKLAHOMA CITY',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2760',420,N'JOVIA FINANCIAL',N'WESTBURY',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2769',421,N'SECURITYPLUS',N'Baltimore',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'277',66,N'CLIFTON NJ POSTAL EMPLOYEES',N'Clifton',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2782',422,N'LONG ISLAND ALLIANCE',N'HAUPPAUGE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2791',423,N'TUSKEGEE',N'TUSKEGEE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2792',424,N'NOTRE DAME COMMUNITY',N'FALL RIVER',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2794',425,N'HAXTUN COMMUNITY',N'Haxtun',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2796',426,N'COPPER & GLASS',N'GLASSPORT',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'28',10,N'CENTRIS',N'Omaha',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2800',427,N'MAMTA',N'Mamaroneck',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2806',428,N'HARRISON TEACHERS',N'HARRISON',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2815',429,N'HANCOCK',N'FINDLAY',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2818',430,N'HOLYOKE COMMUNITY',N'Holyoke',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2819',431,N'YONKERS TEACHERS',N'Yonkers',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2834',432,N'PENLANCO',N'Lancaster',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2840',433,N'STERLING',N'STERLING',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2843',434,N'MATSON EMPLOYEES',N'OAKLAND',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2847',435,N'ROCKY MOUNTAIN LAW ENFORCEMENT',N'Denver',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'287',67,N'USNE PENITENTIARY EMPLOYEES',N'LEWISBURG',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2874',436,N'BLUESTONE',N'Sioux Falls',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2876',437,N'CHICAGO PATROLMEN''S',N'CHICAGO',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'288',68,N'FARGO VA',N'FARGO',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2881',438,N'DENVER FIRE DEPARTMENT',N'Denver',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2892',439,N'PLAINFIELD POLICE & FIREMEN''S',N'Plainfield',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2918',440,N'JEEP COUNTRY',N'Holland',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2932',441,N'TRENTON TEACHERS',N'TRENTON',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2935',442,N'PARISH',N'TOLEDO',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'294',69,N'CME',N'COLUMBUS',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2953',443,N'LANAI',N'Lanai City',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'2959',444,N'PALCO FCU',N'MUNCY',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3006',445,N'CONCORA WABASH',N'WABASH',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3012',446,N'CITY OF FIRSTS COMMUNITY',N'KOKOMO',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3025',447,N'EMPOWER',N'Syracuse',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3029',448,N'VIRGINIA STATE UNIVERSITY',N'South Chesterfi',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'303',70,N'HERITAGE VALLEY',N'YORK',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3050',450,N'ONOMEA',N'PAPAIKOU',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3056',451,N'CAMBRIDGE MUNICIPAL EMPLOYEES',N'Cambridge',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'306',71,N'MADISON COUNTY',N'Anderson',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3061',452,N'LOUISIANA USA',N'BATON ROUGE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3064',453,N'SELECT',N'SAN ANTONIO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3080',454,N'SAN ANGELO',N'SAN ANGELO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3085',455,N'BUTLER COUNTY TEACHERS',N'Butler',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3110',456,N'WHITE PLAINS P O EMPLOYEES',N'White Plains',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3120',457,N'JOHNSTOWN SCHOOL EMPLOYEES',N'JOHNSTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3126',458,N'SOUTHERN MIDDLESEX CO TCHRS',N'East Brunswick',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3130',459,N'TRUITY',N'Bartlesville',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3140',460,N'TRANSPORTATION',N'Alexandria',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3182',462,N'STAR TECH',N'GREENWOOD VILLA',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'319',72,N'DEPARTMENT OF THE INTERIOR',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'320',73,N'F R B',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3202',463,N'CENTRAL JERSEY POLICE & FIRE',N'Hamilton',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3212',464,N'ANECA',N'Shreveport',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3218',465,N'TULARE COUNTY',N'Tulare',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3226',466,N'ACBA FED CREDIT UNION (3226)',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3237',467,N'COLFAX POWER PLANT EMPLOYEES',N'SPRINGDALE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3251',469,N'GARY POLICE DEPARTMENT EMPLOYEES',N'GARY',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3256',470,N'LONG BEACH TEACHERS',N'Long Beach',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3264',471,N'FIRST CHOICE AMERICA COMMUNITY',N'Weirton',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3278',472,N'SOUTHWEST COMMUNITIES',N'Carnegie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3285',473,N'NIAGARA REGIONAL',N'North Tonawanda',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3291',474,N'PICATINNY',N'DOVER',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3306',475,N'SJP',N'Buffalo',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3316',476,N'ALTONIZED COMMUNITY',N'ALTON',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3323',477,N'TRUENERGY',N'SPRINGFIELD',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3337',478,N'WATERBURY POSTAL EMPLOYEES',N'WATERBURY',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3356',479,N'ELIZABETH POLICE DEPARTMENT E',N'ELIZABETH',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3360',480,N'EMERY',N'CINCINNATI',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3388',481,N'EMERALD COAST',N'PORT ST JOE',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3391',482,N'RICHLAND',N'Sidney',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'340',74,N'RADIFI',N'Jacksonville',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3412',484,N'AAA',N'South Bend',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3413',485,N'CHARTER OAK',N'WATERFORD',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3420',486,N'ATLANTIC CITY POLICE',N'Northfield',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3438',488,N'HUNTINGTONIZED',N'Huntington',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3439',489,N'FAIRMONT',N'FAIRMONT',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3447',490,N'ACME',N'EASTLAKE',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3454',491,N'COMMUNICATION',N'OKLAHOMA CITY',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3458',492,N'VOYAGE',N'SIOUX FALLS',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3462',493,N'ST. COLMAN & AFFILIATES',N'Cleveland',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3475',495,N'SOMERVILLE SCHOOL EMPLOYEES',N'Somerville',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3476',496,N'BRIDGETON ONIZED',N'Cedarville',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3487',497,N'FREEDOM UNITED',N'ROCHESTER',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'352',75,N'TAMPA BAY',N'Tampa',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3526',498,N'SCHOOLS',N'Torrance',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3536',499,N'WHITEWATER REGIONAL',N'Connersville',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3541',500,N'BAY ATLANTIC',N'VINELAND',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3544',501,N'CONNECTICUT LABOR DEPT',N'Wethersfield',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3551',502,N'JAMESTOWN AREA COMMUNITY',N'Jamestown',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3558',503,N'SUGAR VALLEY',N'SCOTTSBLUFF',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3571',504,N'PANTEX',N'Borger',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3574',506,N'VALLEY ISLE COMMUNITY',N'Kahului',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3575',507,N'BRIDGEPORT POST OFFICE',N'Bridgeport',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3576',508,N'PIONEER APPALACHIA',N'Charleston',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3601',509,N'NATIONAL INSTITUTES OF HEALTH',N'Rockville',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3602',510,N'FROID',N'FROID',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'361',76,N'SPERO FINANCIAL',N'Greenville',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3631',511,N'THRIVE',N'MUNCIE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3633',512,N'PEOPLE''S ALLIANCE',N'Hauppauge',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'365',77,N'GP',N'Rome',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3655',513,N'TOP TIER',N'Clarion',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'367',78,N'PEPCO',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3683',514,N'CONNECTICUT POSTAL',N'New Britain',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3685',515,N'INTERNAL REVENUE EMPLOYEES',N'GREENSBORO',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'370',79,N'PPG & ASSOCIATES',N'Creighton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3710',516,N'CITY PUBLIC SERVICE/IBEW',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3711',517,N'OMEGA',N'Wexford',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3720',518,N'TOLEDO POLICE',N'Toledo',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'373',80,N'NEW ALLIANCE',N'AMBRIDGE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3736',519,N'VICTORIA',N'VICTORIA',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3738',520,N'BENCHMARK',N'West Chester',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3741',521,N'A & S',N'Aliquippa',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3746',522,N'NORFOLK FIRE DEPARTMENT',N'Norfolk',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3748',523,N'TOLEDO FIRE FIGHTERS',N'Toledo',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3755',524,N'ATLANTIC CITY ELECTRIC CO EMP',N'MAYS LANDING',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3757',525,N'RIVERBANK',N'Windsor Locks',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3759',526,N'GREATER CHAUTAUQUA',N'FALCONER',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'376',81,N'REGIONAL MEMBERS',N'COLUMBUS',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3764',527,N'TRANSIT EMPLOYEES',N'Greenbelt',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3775',528,N'RIVERSIDE COMMUNITY',N'Marion',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'378',82,N'FLORIDA CUSTOMS',N'Tampa',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3787',530,N'SHAKER HEIGHTS',N'Shaker Heights',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3790',531,N'SCIENCE PARK',N'NEW HAVEN',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3796',532,N'L G & W',N'MEMPHIS',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3800',533,N'GEORGIA HERITAGE',N'SAVANNAH',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3810',535,N'PAAC TRANSIT DIVISION',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3819',536,N'UPPER DARBY BELLTELCO',N'UPPER DARBY',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3828',537,N'TEXAS PLAINS',N'Amarillo',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'383',83,N'ON THE GRID FINANCIAL',N'Atlanta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3830',538,N'MASS. INSTITUTE OF TECH.',N'Lexington',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3841',539,N'GHS',N'Binghamton',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3850',540,N'N C P D',N'Plainview',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3853',541,N'NW PREFERRED',N'TIGARD',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3868',542,N'SUNFLOWER',N'Valley Center',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3869',543,N'EAGLE',N'ATCHISON',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'389',84,N'CINCINNATI OHIO POLICE',N'CINCINNATI',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'390',85,N'ELLIOTT COMMUNITY',N'JEANNETTE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3907',544,N'WICHITA',N'Wichita',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3938',545,N'TEXAN SKY',N'Dumas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3943',546,N'GAIN',N'Burbank',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3945',547,N'UME',N'Burbank',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3946',548,N'SACRED HEART PARISH HALLETTSVILLE',N'Hallettsville',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3947',549,N'QSIDE',N'Queens Village',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'395',86,N'FIREFIGHTERS & COMPANY',N'DAYTON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3951',550,N'FIRST HARVEST',N'DEPTFORD',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3963',552,N'RIO GRANDE',N'Grand Junction',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'3972',553,N'WESTERN VISTA',N'Cheyenne',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4015',558,N'GENERATIONS COMMUNITY',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4020',559,N'MEMBERS FINANCIAL',N'Midland',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4022',560,N'MODESTO''S FIRST',N'MODESTO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4024',561,N'TRUECORE',N'NEWARK',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4025',562,N'HAULPAK',N'PEORIA',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4037',564,N'HUD',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4038',565,N'SERVICE 1',N'Muskegon',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'404',88,N'GREATER NEW ORLEANS',N'Metairie',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4043',566,N'GENERAL ELECTRIC EMPLOYEES',N'Milford',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4060',567,N'GULF COAST',N'CORPUS CHRISTI',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4078',568,N'BIVINS',N'Masterson',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4088',569,N'STANWOOD AREA',N'New Stanton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4090',570,N'MCCOMB',N'McComb',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4095',571,N'ALLEGHENY LUDLUM BRACKENRIDGE',N'BRACKENRIDGE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4098',572,N'U.P. CONNECTION',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4116',573,N'GALAXY',N'Franklin',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4118',574,N'SEABOARD',N'BUCKSPORT',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4120',575,N'RELIANCE',N'King of Prussia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4122',576,N'HIGHMARK',N'RAPID CITY',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4127',577,N'ELEKTRA',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4135',578,N'KEYS',N'Key West',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4142',579,N'KINECTA',N'Manhattan Beach',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4148',581,N'HIGHWAY DISTRICT 21',N'MCALLEN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4152',582,N'CENTRAL SOYA',N'DECATUR',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4158',583,N'ERIE LACKAWANNA RAILROAD CO EMP',N'Hoboken',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4163',584,N'FRESNO GRANGERS',N'FRESNO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4164',585,N'MONTANA',N'Great Falls',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4170',586,N'ABYSSINIAN BAPTIST CHURCH',N'NEW YORK CITY',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4175',587,N'NEWARK FIREMEN',N'Newark',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4176',588,N'BOX BUTTE PUBLIC EMPLOYEES',N'ALLIANCE',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4192',589,N'BELMONT MUNICIPAL',N'BELMONT',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'42',11,N'FD COMMUNITY',N'Waterbury',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4202',590,N'WESTERN SUN',N'Broken Arrow',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'422',89,N'PITTSBURGH',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4227',592,N'BADLANDS',N'Glendive',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4240',593,N'CHOICE ONE COMMUNITY',N'Plains Township',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4246',594,N'FAR ROCKAWAY POSTAL',N'Far Rockaway',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4261',596,N'NORSTATE',N'Madawaska',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4271',597,N'CHIEF FINANCIAL',N'Rochester Hills',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4281',598,N'ATLANTIC REGIONAL',N'South Portland',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4291',599,N'PENINSULA',N'Escanaba',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4292',600,N'TEXOMA',N'Fritch',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'430',90,N'DEEPWATER INDUSTRIES',N'DEEPWATER',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'435',91,N'STATE DEPARTMENT',N'ALEXANDRIA',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4365',603,N'BLACK HILLS',N'Rapid City',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4366',604,N'F.C.I. ASHLAND',N'Ashland',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4369',605,N'GREATER WAYNE COMMUNITY',N'RITTMAN',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4374',606,N'SHERIDAN COMMUNITY',N'Sheridan',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4393',607,N'SUNKIST EMPLOYEES',N'Valencia',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4395',608,N'TAMPA POSTAL',N'TAMPA',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4400',609,N'GREENVILLE HERITAGE',N'Greenville',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4401',610,N'SOUTHWEST MONTANA COMMUNITY',N'Anaconda',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4416',611,N'IBERIA PARISH',N'New Iberia',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4427',612,N'U S P L K EMPLOYEES',N'LEAVENWORTH',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'444',92,N'SCA',N'NEW CASTLE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4441',613,N'SING SING EMPLOYEES',N'Briarcliff Mano',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4461',614,N'NODA',N'SLIDELL',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4472',615,N'MALDEN',N'Malden',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4480',616,N'PALISADES',N'Pearl River',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4487',617,N'SOUTH BEND TRANSIT',N'South Bend',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4488',618,N'T H P',N'Terre Haute',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4509',619,N'PUD',N'LONGVIEW',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'452',93,N'SKYLINE FINANCIAL',N'Waterbury',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4524',620,N'SOMERVILLE MUNICIPAL',N'Somerville',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4531',621,N'KC UNIDOS',N'Kansas City',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4580',623,N'THE SUMMIT',N'ROCHESTER',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4584',624,N'AUSTIN TELCO',N'Austin',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4611',625,N'NEWARK POLICE',N'NEWARK',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4616',626,N'BRONCO',N'FRANKLIN',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4633',627,N'CAMINO',N'MONTEBELLO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'464',95,N'EAGLE ONE',N'Claymont',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4684',628,N'CONCHO EDUCATORS',N'SAN ANGELO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'47',12,N'FARGO PUBLIC SCHOOLS',N'Fargo',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4708',630,N'EMBARRASS VERMILLION',N'Aurora',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4714',631,N'UNITED SOUTHEAST',N'Bristol',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4726',632,N'RARITAN BAY',N'Sayreville',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'473',96,N'RIVERTRUST',N'PEARL',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4731',633,N'METROWEST COMMUNITY',N'FRAMINGHAM',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4735',634,N'BETHPAGE',N'Bethpage',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4746',635,N'NEW HAMPSHIRE',N'Concord',N'NH',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'475',97,N'INTEGRITY',N'BARBERTON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4756',636,N'ALLEGHENY VALLEY',N'PITTSBURGH',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'477',98,N'THE ATLANTIC',N'Kenilworth',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4787',638,N'TANDEM',N'Warren',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4792',639,N'NET',N'Scranton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4794',640,N'BEAVER VALLEY',N'Beaver Falls',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4799',641,N'PINE BELT',N'Hattiesburg',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'48',13,N'EAGLE EXPRESS',N'JACKSON',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4805',642,N'NORTHERN NEW MEXICO SCHOOL EMPLOYEE',N'SANTA FE',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4809',643,N'PARTHENON',N'Nashville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4828',644,N'STEEL STRONG COMMUNITY',N'Elizabeth',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'484',99,N'LYNN FIREMENS',N'Lynn',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4845',645,N'ALL SAINTS',N'Parma',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4853',646,N'DOWNRIVER COMMUNITY',N'Ecorse',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4871',647,N'E R R L',N'WYNDMOOR',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4878',648,N'PACIFIC N W',N'PORTLAND',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4884',649,N'ST. JOSEPHS CANTON PARISH',N'Canton',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'489',100,N'PRIMETRUST FINANCIAL',N'MUNCIE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4894',650,N'FEDERAL EMPLOYEES NEWARK',N'NEWARK',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'490',101,N'RAILS WEST',N'POCATELLO',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4906',651,N'TRENTON NJ FIREMEN',N'TRENTON',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4915',652,N'AVENIR FINANCIAL',N'YUMA',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4936',654,N'PATENT AND TRADEMARK OFFICE',N'ALEXANDRIA',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4951',656,N'NORSTAR',N'Britton',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4960',657,N'COTTONWOOD COMMUNITY',N'Cottonwood',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4963',658,N'DEPT OF LABOR',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4966',659,N'UNITY CATHOLIC',N'Parma',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4968',660,N'INOVA',N'ELKHART',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4969',661,N'MEMBERS CHOICE WV',N'Charleston',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'4982',663,N'BESSEMER SYSTEM',N'Greenville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5028',665,N'EQT',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5029',666,N'RED RIVER EMPLOYEES',N'Texarkana',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5045',667,N'CHICAGO AREA OFFICE',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5062',668,N'NORTHWOOD',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5063',669,N'DANIELS-SHERIDAN',N'SCOBEY',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5086',670,N'CSE',N'Lake Charles',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'51',14,N'BROADVIEW',N'Albany',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'511',104,N'BFG',N'AKRON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5116',671,N'PORT CITY',N'MUSKEGON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5123',672,N'INTERNATIONAL UAW',N'DETROIT',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5127',673,N'CHURCH OF THE MASTER',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5134',674,N'COMMONWEALTH ONE',N'ALEXANDRIA',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'514',105,N'BEN E KEITH COMPANY EMPLOYEES',N'Fort Worth',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5144',675,N'MILESTONES',N'Lewiston',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5163',676,N'GREAT NECK SCHOOL EMPLOYEES',N'Great Neck',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5168',677,N'ACFCU',N'Amarillo',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'517',106,N'SEI',N'POCATELLO',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5170',678,N'GRAND TRUNK BATTLE CREEK EMP',N'BATTLE CREEK',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5227',679,N'ASBURY',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5234',680,N'CEDAR POINT',N'LEXINGTON PARK',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'524',107,N'BOSTON CUSTOMS',N'Boston',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5241',681,N'SYCAMORE',N'Sycamore',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5252',682,N'SARATOGA''S COMMUNITY',N'Saratoga Spring',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5256',683,N'600 ATLANTIC',N'BOSTON',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5257',684,N'KANSAS STATE UNIVERSITY',N'Manhattan',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5272',686,N'NORTHERN LIGHTS COMMUNITY',N'Chatham',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'528',108,N'UTAH FIRST',N'SALT LAKE CITY',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5286',687,N'KELLOGG MIDWEST',N'LaVista',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5291',688,N'HASTINGS',N'Hastings',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'53',15,N'MOTION',N'Linden',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5318',689,N'TENNESSEE MEMBERS 1ST',N'Oak Ridge',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5321',690,N'CRIERS',N'Monroe Township',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5325',691,N'SWEMP',N'TEXARKANA',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5337',692,N'TEXAS PEOPLE',N'Fort Worth',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5345',693,N'MONTGOMERY VA',N'MONTGOMERY',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5359',694,N'SUN PACIFIC',N'Richmond',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5366',695,N'DESERT VALLEYS',N'RIDGECREST',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5370',696,N'FREMONT',N'Fremont',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5373',697,N'WESTEX',N'Lubbock',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'538',110,N'GOVERNMENT PRINTING OFFICE',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5380',698,N'SPECTRA',N'ALEXANDRIA',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5387',699,N'RUSSELL COUNTRY',N'Great Falls',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5419',701,N'RIDGEDALE',N'East Hanover',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5422',702,N'CHIPHONE',N'ELKHART',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5431',703,N'FORT FINANCIAL',N'Fort Wayne',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5439',704,N'AMHERST',N'AMHERST',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5465',706,N'FIRST EDUCATION',N'Cheyenne',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5484',708,N'SHELL WESTERN STATES',N'Martinez',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5487',709,N'KAUAI',N'Lihue',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5495',710,N'GLASS CITY',N'Maumee',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5500',711,N'NORTHWEST',N'Herndon',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5510',712,N'CATHOLIC FAMILY',N'Wichita',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5524',713,N'CHRISTO REY',N'NEY',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5530',714,N'VA DESERT PACIFIC',N'Long Beach',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5531',715,N'MCALESTER AAP',N'MCALESTER',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5536',717,N'NAVY FEDERAL CREDIT UNION',N'VIENNA',N'VA',N'ISE',8,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5539',718,N'PHILADELPHIA LETTER CARRIERS',N'PHILADELPHIA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5546',719,N'ADIRONDACK REGIONAL',N'TUPPER LAKE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5547',720,N'SECURITY FIRST',N'MCALLEN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5549',721,N'CLINCHFIELD',N'Erwin',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5554',722,N'MICHIGAN COLUMBUS',N'LIVONIA',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5561',723,N'KEESLER',N'BILOXI',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5569',725,N'DIXIES',N'DARLINGTON',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5571',726,N'SIGNAL FINANCIAL',N'Kensington',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5579',727,N'ACCESS',N'CLINTON',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5582',728,N'BANK FUND STAFF',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5588',729,N'UNITED NATIONS',N'LONG ISLAND CIT',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5589',730,N'KC FAIRFAX',N'KANSAS CITY',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5602',731,N'TAUNTON',N'Taunton',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5604',732,N'ROANOKE VALLEY COMMUNITY',N'ROANOKE',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5612',733,N'ALTAONE',N'Ridgecrest',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5621',734,N'AMERICAN HERITAGE',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5636',735,N'CHESSIE',N'CUMBERLAND',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5641',736,N'CENSUS',N'SUITLAND',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5648',737,N'GULF COAST EDUCATORS',N'Pasadena',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5652',738,N'CASCADE COMMUNITY',N'Roseburg',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5655',739,N'UNION CONGREGATIONAL',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'566',111,N'NUVISION',N'HUNTINGTON BEAC',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5660',740,N'IRON MOUNTAIN KINGSFORD COMMUNITY',N'KINGSFORD',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5665',741,N'CITY',N'AMARILLO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'567',112,N'AMBRAW',N'Lawrenceville',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5684',743,N'INLAND VALLEY',N'fontana',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5686',744,N'MARSHALL T & P EMPLOYEES',N'MARSHALL',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5713',745,N'NATIONAL EMPLOYEES',N'BLUEFIELD',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5718',746,N'TUCOEMAS',N'VISALIA',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5721',747,N'TWO HARBORS',N'TWO HARBORS',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5736',750,N'UNILEVER',N'Englewood Cliff',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5741',752,N'CHIVAHO',N'Chillicothe',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5748',753,N'INTEGRA FIRST',N'Powers',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5754',754,N'ANDREWS FEDERAL CREDIT UNION',N'Suitland',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'577',113,N'MEMBER PREFERRED',N'Fort Worth',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5773',756,N'HAYNES COMMUNITY',N'KOKOMO',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5780',757,N'TREASURY EMPLOYEES',N'JACKSON',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5781',758,N'ZIEGLER',N'BLOOMINGTON',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5785',759,N'AFFINITY ONE',N'JAMESTOWN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5797',761,N'ORNL',N'Oak Ridge',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5811',762,N'KENNEDY VA EMPLOYEES',N'Memphis',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5816',763,N'INTERFAITH',N'MONTCLAIR',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5822',764,N'TEXARKANA TERMINAL EMPLOYEES',N'TEXARKANA',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5839',766,N'SOUTHEAST LOUISIANA VETERANS HEALTH',N'New Orleans',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5845',767,N'ALLWEALTH',N'Hamilton',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5851',768,N'SUNWARD',N'Albuquerque',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5852',769,N'CENTURY',N'Independence',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5856',770,N'RIVERFRONT',N'Wyomissing',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5866',771,N'SABINE',N'Orange',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5867',772,N'VANTAGE TRUST',N'WILKES BARRE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5885',773,N'A.B.D.',N'WARREN',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5892',774,N'TRUE NORTH',N'Juneau',N'AK',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5913',777,N'GLOBAL',N'Anchorage',N'AK',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5922',778,N'SUBIACO',N'Subiaco',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5924',779,N'MATANUSKA VALLEY',N'PALMER',N'AK',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5928',780,N'WAYNE-WESTLAND',N'Westland',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5930',781,N'HEALTHPLUS',N'JACKSON',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5935',782,N'COWBOY COUNTRY',N'PREMONT',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'594',115,N'PASADENA',N'Pasadena',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5960',783,N'U.S.B. EMPLOYEES',N'Wilmington',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5970',784,N'METROPOLITAN CHURCH',N'SUFFOLK',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5974',785,N'SOUTHERN SECURITY',N'Collierville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5982',786,N'ROUTE 31',N'Muskegon',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'5987',787,N'OCNAC #1',N'jersey city',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60',16,N'LEVO',N'Sioux Falls',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60002',2779,N'MEMBERS',N'WINSTON SALEM',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60013',2780,N'METCO',N'Cedar Rapids',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60024',2781,N'PRIORITY ONE',N'South Pasadena',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60037',2782,N'MIDWEST REGIONAL',N'Kansas City',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60039',2783,N'PEOPLES CHOICE',N'Coffeyville',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60041',2784,N'VICINITY',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60042',2785,N'WASHINGTON STATE EMPLOYEES',N'OLYMPIA',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60048',2786,N'STATE POLICE CREDIT UNION INC.',N'Meriden',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60051',2787,N'TARRANT COUNTY''S CREDIT UNION',N'Fort Worth',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60056',2788,N'CONSUMER',N'Greeneville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60057',2789,N'WILDFIRE',N'SAGINAW',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60059',2791,N'O BEE',N'Lacey',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60060',2792,N'EVERWISE',N'South Bend',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60062',2793,N'CREDIT UNION OF AMERICA',N'Wichita',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60077',2795,N'ECCO',N'Pace',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60079',2796,N'COMMUNITY 1ST',N'DUPONT',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6008',790,N'SEAGOVILLE',N'Seagoville',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60082',2797,N'PATRIOT EQUITY',N'JACKSON',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60087',2799,N'ACHIEVA CREDIT UNION',N'Dunedin',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60095',2801,N'UNITED COMMUNITY',N'Quincy',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60103',2803,N'FIRST COMMUNITY',N'JAMESTOWN',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60105',2804,N'OMNI COMMUNITY',N'Battle Creek',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6011',791,N'SIDNEY',N'Sidney',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60110',2805,N'SAN JUAN MOUNTAINS',N'Montrose',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60113',2807,N'LANCASTER RED ROSE',N'Leola',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6012',792,N'LIFETIME',N'RICHARDSON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60125',2811,N'MY',N'BLOOMINGTON',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60137',2813,N'DOW',N'Midland',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60149',2814,N'MCDOWELL CORNERSTONE',N'MARION',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60151',2815,N'COCHISE',N'Willcox',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60153',2816,N'MUNICIPAL',N'NEW YORK',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60160',2818,N'PIEDMONT ADVANTAGE CREDIT UNION',N'Winston Salem',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60164',2820,N'HIBBING COOPERATIVE',N'Hibbing',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60165',2821,N'ALHAMBRA',N'Phoenix',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60167',2822,N'HIGHWAY CROSSROADS',N'Sikeston',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60175',2823,N'CHICAGO FIREMANS ASSOC',N'CHICAGO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60184',2824,N'ANCO COMMUNITY',N'La SAlle',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60186',2825,N'MOLINE MUNICIPAL',N'Moline',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60189',2826,N'CORNERSTONE',N'Freeport',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60190',2827,N'PEORIA FIRE FIGHTERS',N'Peoria',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60198',2828,N'KANKAKEE FEDERATION OF TEACHERS',N'Kankakee',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60201',2829,N'HARVARD COMMUNITY',N'HARVARD',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60205',2830,N'GULF',N'Groves',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60207',2831,N'HARBOR POINTE',N'DULUTH',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60212',2832,N'MATERNITY B.V.M.',N'Bourbonnais',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60215',2833,N'SUPERIOR CREDIT UNION',N'Collegeville',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60216',2834,N'MEMBERS COOPERATIVE',N'DULUTH',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60238',2835,N'GREAT LAKES',N'BANNOCKBURN',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60239',2836,N'MEMPHIS CITY EMPLOYEES',N'MEMPHIS',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60242',2837,N'SHARE ADVANTAGE',N'Duluth',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60247',2838,N'COMMUNITY HEALTHCARE',N'Manchester',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60255',2839,N'CITY & COUNTY',N'SAINT PAUL',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60261',2840,N'GRAPHIC ARTS',N'Shreveport',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60263',2841,N'UNITED EMPLOYEES',N'ALBERT LEA',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60269',2842,N'GREENSTATE',N'North Liberty',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60275',2843,N'FREEDOM',N'WARMINSTER',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60279',2845,N'SIU',N'Carbondale',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60293',2846,N'DECATUR POLICEMEN',N'Decatur',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60295',2847,N'KANSAS BLUE CROSS-BLUE SHIELD',N'TOPEKA',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60299',2848,N'PONTIAC DWIGHT PRISON EMPLOYS',N'PONTIAC',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60302',2849,N'BLAW-KNOX',N'Mattoon',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60304',2850,N'ELITE COMMUNITY',N'Bourbonnais',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60307',2851,N'GRAND PRAIRIE',N'GRAND PRAIRIE',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6032',793,N'STRATA',N'BAKERSFIELD',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60325',2853,N'FIELDSTONE',N'Bradley',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60327',2854,N'GALE',N'Galesburg',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60335',2855,N'TAYLORVILLE COMMUNITY',N'Taylorville',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60337',2856,N'I. H. MISSISSIPPI VALLEY',N'Moline',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60345',2857,N'JOHNSONVILLE TVA EMPLOYEES',N'CAMDEN',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60346',2858,N'REDBRAND',N'Bartonville',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60363',2859,N'CENTRAL STATE',N'Stockton',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60369',2861,N'SPIRIT FINANCIAL',N'LEVITTOWN',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60377',2862,N'MINNESOTA POWER EMPLOYEES',N'DULUTH',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60378',2863,N'LUBRIZOL EMPLOYEES''',N'Deer Park',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60383',2865,N'CENTRAL MISSOURI COMMUNITY',N'WARRENSBURG',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60388',2866,N'DEER RIVER COOPERATIVE',N'DEER RIVER',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60389',2867,N'AMERICAN PRIDE',N'ALTOONA',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6039',794,N'LM',N'BALTIMORE',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60390',2868,N'TEE-PAK',N'Danville',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60392',2869,N'READING BERKS SCHOOL EMPLOYEES',N'reading',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60396',2870,N'SKEL-TEX',N'skellytown',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60400',2871,N'ST. LOUIS COMMUNITY',N'Saint Louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60406',2872,N'FREESTAR FINANCIAL',N'Mount Clemens',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60408',2873,N'UNITED LOCAL',N'Fresno',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60409',2874,N'COBURN',N'Beaumont',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60423',2875,N'TAHQUAMENON AREA',N'Newberry',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60428',2876,N'EXTRA',N'WARREN',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60429',2877,N'GENERATIONS',N'Rockford',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60435',2878,N'CENTURY',N'SAINT LOUIS',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60436',2879,N'BRAINERD B. N.',N'Brainerd',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60438',2880,N'IQ',N'VANCOUVER',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60457',2881,N'DUTCH POINT',N'Wethersfield',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60466',2882,N'ASSOCIATED HEALTHCARE',N'Woodbury',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60467',2883,N'ZIA',N'Los Alamos',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60470',2885,N'COPOCO COMMUNITY',N'Bay City',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60475',2886,N'TANGIPAHOA PARISH TEACHERS',N'AMITE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6048',795,N'SHREVEPORT POLICE',N'SHREVEPORT',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60483',2887,N'NASHVILLE FIREMEN''S',N'NASHVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60484',2888,N'ASSOCIATED CREDIT UNION',N'NORCROSS',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60491',2890,N'HIGHWAY DISTRICT 19 EMPLOYEES',N'ATLANTA',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60494',2891,N'MILLARD COUNTY',N'FILLMORE',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60497',2892,N'FLORIDA',N'GAINESVILLE',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60500',2893,N'NORTH ALABAMA EDUCATORS',N'HUNTSVILLE',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60501',2894,N'MUTUAL SAVINGS',N'Birmingham',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60509',2895,N'TLC COMMUNITY',N'ADRIAN',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60520',2896,N'EDUCATIONAL EMPLOYEES',N'FRESNO',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60522',2897,N'MICHIGAN FIRST',N'Lathrup Village',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6053',796,N'CDC',N'Atlanta',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60531',2898,N'SELECT EMPLOYEES',N'Sterling',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60532',2899,N'LANDMARK',N'Danville',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60533',2900,N'SOUTHWEST HERITAGE',N'Odessa',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60543',2901,N'COMMUNITY TRUST',N'Gurnee',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60545',2902,N'FINANCIAL PARTNERS',N'Springfield',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60582',2906,N'RIG EMPLOYEES',N'Macon',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60583',2907,N'UNIVERSITY OF ILLINOIS COMMUNITY',N'Champaign',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'606',116,N'COMTRUST',N'CHATTANOOGA',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60605',2910,N'FAMILY SECURITY',N'Decatur',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60608',2912,N'ASSOCIATED CREDIT UNION OF TEXAS',N'League City',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60619',2914,N'EPB EMPLOYEES',N'CHATTANOOGA',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6062',797,N'BEACON',N'La Porte',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60627',2915,N'CLIFFORD-JACOBS EMPLOYEES',N'CHAMPAIGN',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60645',2917,N'NEW SOUTH CREDIT UNION',N'Knoxville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60646',2918,N'COAST LINE',N'South Portland',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60648',2919,N'A.A.E.C.',N'Arlington Heigh',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60657',2920,N'SYNERGY PARTNERS',N'CHICAGO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60660',2921,N'ALLVAC SAVINGS AND',N'MONROE',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60666',2922,N'SOVITA',N'FLINT',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60680',2924,N'ST. GREGORY PARISH',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60683',2925,N'PUBLIC SERVICE',N'Romulus',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60686',2926,N'SPC',N'HARTSVILLE',N'SC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60688',2927,N'COLLEGE AND UNIVERSITY',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60689',2928,N'NORTH STAR',N'COOK',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60696',2929,N'FIRE FIGHTERS',N'TULSA',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6070',798,N'TRI STATE RAIL',N'ERIE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60700',2930,N'ARROWHEAD CENTRAL',N'Rancho Cucamong',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60705',2932,N'TEXAS DOW EMPLOYEES',N'Lake Jackson',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60707',2933,N'ROME KRAFT EMPLOYEES',N'Coosa',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60712',2935,N'ALABAMA CENTRAL',N'Birmingham',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60715',2936,N'SOUTH CAROLINA METHODIST CONF',N'COLUMBIA',N'SC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60716',2937,N'ONE CREDIT UNION OF NY',N'Cheektowaga',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60718',2938,N'IOWA HEARTLAND',N'MASON CITY',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60721',2939,N'CHAMPION',N'Canton',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60726',2941,N'THE WEST TENNESSEE',N'Atoka',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60728',2942,N'THE FAMILY',N'Davenport',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60731',2944,N'CAMPUS',N'Wichita',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60735',2945,N'MID CAROLINA',N'Lugoff',N'SC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60745',2948,N'SANTEE COOPER CREDIT UNION',N'MONCKS CORNER',N'SC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60747',2949,N'BELLWETHER COMMUNITY',N'MANCHESTER',N'NH',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60750',2950,N'DULUTH FIRE DEPARTMENT',N'DULUTH',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60755',2951,N'L. A. ELECTRICAL WORKERS CREDIT UN.',N'Pasadena',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60768',2952,N'HOOSIER HILLS',N'BEDFORD',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60780',2954,N'CRANSTON MUNICIPAL EMPLOYEES',N'CRANSTON',N'RI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60782',2955,N'PORT OF HOUSTON',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60784',2956,N'CALIFORNIA',N'GLENDALE',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60787',2957,N'RAILWAY',N'MANDAN',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6079',799,N'SELECT SEVEN',N'Johnson City',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60790',2958,N'TOWN AND COUNTRY',N'MINOT',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60791',2959,N'GEORGETOWN KRAFT',N'Georgetown',N'SC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60793',2960,N'REDWOOD',N'SANTA ROSA',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60798',2962,N'ACCENTRA',N'AUSTIN',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60799',2963,N'NEW HORIZONS',N'MOBILE',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60801',2964,N'BLUPEAK',N'San Diego',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60806',2965,N'TEXANS',N'RICHARDSON',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60816',2966,N'COMMUNITY CREDIT UNION OF FLORIDA',N'Rockledge',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60823',2967,N'ALABAMA',N'TUSCALOOSA',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60825',2968,N'COMBINED EMPLOYEES',N'WARNER ROBINS',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6084',800,N'FRONT ROYAL',N'FRONT ROYAL',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60852',2973,N'CENTRAL CREDIT UNION OF ILLINOIS',N'Bellwood',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60855',2974,N'KONE EMPLOYEES',N'MOLINE',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60863',2975,N'PEORIA POSTAL EMPLOYEES',N'Peoria',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60873',2976,N'PEORIA CITY EMPLOYEES',N'Peoria',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6088',801,N'D C FIRE DEPARTMENT',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60883',2977,N'BEACON COMMUNITY',N'Louisville',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'609',117,N'NY FIREFIGHTERS BRAVEST',N'albany',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60906',2979,N'MID-KANSAS',N'MOUNDRIDGE',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60920',2982,N'ASTERA',N'Lansing',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60923',2983,N'PARK MANOR CHRISTIAN CHURCH',N'CHICAGO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60928',2984,N'KIMBERLY CLARK',N'MEMPHIS',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60930',2985,N'VALLEY',N'TUSCUMBIA',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60931',2986,N'MICHIGAN EDUCATIONAL',N'PLYMOUTH',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60934',2987,N'ALATRUST',N'HOOVER',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60936',2988,N'ADVENTURE',N'Grand Rapids',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60942',2989,N'RIVERFALL',N'Tuscaloosa',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60947',2990,N'CONSUMERS PROFESSIONAL',N'LANSING',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6095',802,N'HERSHEY',N'Hummelstown',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60967',2991,N'HUNTINGTON BEACH',N'Huntington Beac',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60968',2992,N'THE POLICE',N'SAN BRUNO',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60978',2993,N'DIRECTIONS',N'Toledo',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60991',2994,N'LENCO',N'Adrian',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'60994',2995,N'ENERGIZE',N'OKLAHOMA CITY',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6102',803,N'GREAT LAKES FIRST',N'ESCANABA',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61021',3001,N'I.B.E.W. LOCAL #681',N'WICHITA FALLS',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61028',3002,N'NUCOR EMPLOYEE''S',N'Florence',N'SC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61048',3004,N'OUCU FINANCIAL CREDIT UNION, INC. ',N'Athens',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61055',3005,N'CHEM FAMILY',N'Anniston',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61056',3006,N'REAVIS - STICKNEY',N'BURBANK',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61065',3007,N'COLUMBIA POST OFFICE',N'COLUMBIA',N'SC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61068',3008,N'PEOPLE DRIVEN',N'SOUTHFIELD',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61077',3010,N'SEVEN SEVENTEEN',N'WARREN',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61085',3011,N'UTILITY DISTRICT',N'OAKLAND',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61088',3012,N'OKLAHOMA EDUCATORS',N'OKLAHOMA CITY',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61089',3013,N'HOMELAND',N'CHILLICOTHE',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61090',3014,N'SHAREFAX',N'CINCINNATI',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61093',3015,N'VIBRANT',N'Moline',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61094',3016,N'COMMUNITY FIRST',N'Ashtabula',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61101',3018,N'ACCESS',N'BRISTOL',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6112',804,N'WATERTOWN POSTAL',N'WATERTOWN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61123',3019,N'LOUISVILLE GAS AND ELECTRIC COMPANY',N'Louisville',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61128',3020,N'ROLLING F',N'TURLOCK',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61135',3021,N'SPACE CITY',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61136',3022,N'OHIO TEAMSTERS',N'INDEPENDENCE',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61150',3024,N'WCU CREDIT UNION',N'DECATUR',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61152',3025,N'RIVER TO RIVER',N'Vienna',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61157',3026,N'FOUNDATION',N'Springfield',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61159',3027,N'SECURITY',N'GRAND BLANC',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6116',805,N'VALEX',N'Alexandria',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61160',3028,N'MEMBERS FIRST CREDIT UNION OF FLORI',N'Pensacola',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61165',3029,N'LOS ALAMOS SCHOOLS',N'Los Alamos',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61170',3030,N'FIRST FLORIDA',N'Jacksonville',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61185',3031,N'LEADERS CREDIT UNION',N'Jackson',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61186',3032,N'UNITED BAY COMMUNITY',N'Bay City',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61189',3033,N'ARRHA',N'Springfield',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61209',3034,N'CHICAGO FIREFIGHTER''S',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61219',3035,N'KALSEE',N'Kalamazoo',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61220',3036,N'GEAUGA',N'burton',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61230',3037,N'ACME CONTINENTAL',N'Riverdale',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61231',3038,N'FINANCIAL PLUS',N'OTTAWA',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61232',3039,N'PEORIA HIWAY',N'Peoria',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61233',3040,N'WES',N'WILLOUGHBY',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61239',3041,N'GOLDEN CIRCLE',N'Massillon',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61256',3042,N'ACHIEVE FINANCIAL',N'Berlin',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61257',3043,N'NORTHRIDGE COMMUNITY',N'Hoyt Lakes',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61260',3045,N'CURIS FINANCIAL',N'Columbia',N'SC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61261',3046,N'COMMUNITY CU OF NEW MILFORD, INC.',N'NEW MILFORD',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61265',3047,N'KIEF PROTECTIVE MUTUAL BENEFIT ASS.',N'Bloomfield',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61267',3048,N'ALAMO CITY',N'SAN ANTONIO',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61268',3049,N'BOTHWELL HOSPITAL EMPLOYEES',N'SEDALIA',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61277',3050,N'CHEMCO',N'MC INTOSH',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61286',3051,N'MOBILE EDUCATORS',N'MOBILE',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61290',3052,N'DUPAGE COUNTY EMPLOYEES',N'WHEATON',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'613',118,N'EMPIRE ONE',N'West Seneca',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61306',3054,N'TEXAS BRIDGE',N'CORPUS CHRISTI',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61315',3057,N'ONEAZ',N'Phoenix',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61318',3058,N'ISABELLA COMMUNITY',N'MT Pleasant',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61324',3059,N'PILLAR',N'MARION',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61330',3060,N'NEWPORT NEWS SHIPBUILDING EMPLOYEES',N'NEWPORT NEWS',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61336',3062,N'COMMUNITY',N'NEW ROCKFORD',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61339',3063,N'MOBILE GOVERNMENT EMP.',N'Mobile',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6134',806,N'FORT SMITH DIXIE CUP',N'FORT SMITH',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61365',3067,N'4FRONT',N'Traverse City',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61368',3068,N'SHERWIN WILLIAMS EMP.',N'South Holland',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61383',3069,N'ADVANTAGE',N'MANSFIELD',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61387',3070,N'BHCU',N'RIDLEY PARK',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61391',3072,N'SOCIAL SECURITY',N'Birmingham',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61393',3073,N'LEE COUNTY',N'KEOKUK',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61404',3074,N'LOC',N'Farmington',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61405',3075,N'AEROQUIP',N'JACKSON',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61425',3078,N'AURORA FIREFIGHTERS''',N'Aurora',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61437',3079,N'COMMONWEALTH',N'Frankfort',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6144',807,N'RED LAKE CO OP',N'Red Lake Falls',N'MN',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61447',3081,N'NUMARK',N'Joliet',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61448',3082,N'ETHICON SUTURE',N'River Forest',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61453',3083,N'HI-LAND',N'Murray',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61457',3084,N'PRIORITY TRUST',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61474',3085,N'RAILWAY EMPLOYEES',N'Muscle Shoals',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61495',3086,N'ONE DETROIT',N'Detroit',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6150',808,N'DOW BUCKS COUNTY',N'Bristol',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61503',3087,N'ADVIA',N'Kalamazoo',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61515',3088,N'FAYETTE COUNTY SCHOOL EMPLOYEES',N'Uniontown',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61518',3089,N'HERSHEY ROBINSON EMPLOYEES',N'Robinson',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61522',3090,N'VIBE',N'Novi',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61525',3091,N'WE FLORIDA FINANCIAL',N'Fort Lauderdale',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61527',3092,N'TEXOMA COMMUNITY',N'Wichita Falls',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61532',3093,N'REEVES COUNTY TEACHERS',N'Pecos',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61540',3094,N'VERMILION SCHOOL EMPLOYEES',N'ABBEVILLE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61552',3095,N'UNIVERSITY OF MICHIGAN',N'Ann Arbor',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61559',3097,N'DEMING SCHOOLS EMPLOYEES',N'DEMING',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61560',3098,N'CHICAGO''S BRAVEST',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61566',3099,N'ST. MARK',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61598',3102,N'SAFE 1',N'BAKERSFIELD',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'616',119,N'NEW HORIZON',N'BARBERTON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6160',809,N'SUN EAST',N'Aston',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61604',3104,N'LIBERTYONE',N'Arlington',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61619',3105,N'FINANCIALEDGE ',N'Bay City',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61620',3106,N'FIRSTENERGY FAMILY',N'AKRON',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61623',3107,N'KEMBA FINANCIAL',N'Gahanna',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61624',3108,N'GREATER COMMUNITY',N'Dawson',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61631',3110,N'MICHIGAN COASTAL',N'Muskegon',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61633',3111,N'FAMILY FINANCIAL',N'Norton Shores',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61636',3112,N'NORTH DISTRICTS',N'GIBSONIA',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61637',3113,N'CAPITAL',N'Bismarck',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61638',3114,N'LAKE HURON',N'Saginaw',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61643',3116,N'PLANITES',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61648',3117,N'HOMETOWN',N'KULM',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61650',3118,N'THE GOLDEN 1',N'SACRAMENTO',N'CA',N'ISE',8,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61657',3120,N'UNITED FINANCIAL',N'Saginaw',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61664',3121,N'RIVER VALLEY',N'AMES',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61667',3122,N'COMMUNITY FIRST',N'Santa Rosa',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61677',3123,N'COMMUNITY WEST',N'Kentwood',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61682',3124,N'SISKIYOU',N'Yreka',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61693',3125,N'RURAL COOPERATIVES',N'Louisville',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61698',3126,N'MICHIGAN UNITED',N'Auburn Hills',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61701',3127,N'LINCOLN PARK COMMUNITY',N'LINCOLN PARK',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61708',3128,N'ARBOR FINANCIAL',N'KALAMAZOO',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61724',3130,N'LOUISIANA CENTRAL',N'HARAHAN',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61734',3131,N'RIO GRANDE VALLEY CREDIT UNION',N'Harlingen',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61741',3132,N'COMMONWEALTH CENTRAL',N'San Jose',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61748',3134,N'MONROE COMMUNITY',N'Monroe',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6175',810,N'OLD OCEAN',N'Sweeny',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61755',3135,N'FRANKENMUTH',N'Frankenmuth',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61756',3136,N'FIRST AREA',N'SAGINAW',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61758',3137,N'WESTERN COOPERATIVE',N'Williston',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61759',3138,N'ALLIANCE CATHOLIC',N'Farmington Hill',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61760',3139,N'WHITEWATER COMMUNITY',N'harrison',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61765',3140,N'CENTRAL KANSAS EDUCATION',N'Salina',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61778',3141,N'RED WING',N'Red Wing',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61779',3142,N'SLO',N'San Luis Obispo',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6178',811,N'A+',N'Austin',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61783',3143,N'CO-OPERATIVE',N'COFFEYVILLE',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6179',812,N'COMMUNITY FINANCIAL SERVICES',N'ROSELLE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61790',3144,N'BLUCURRENT',N'SPRINGFIELD',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61792',3145,N'ASHLAND',N'ASHLAND',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61793',3146,N'U. S. EMPLOYEES',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61795',3147,N'TBA',N'TRAVERSE CITY',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61797',3148,N'ELGA',N'Grand Blanc',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61800',3149,N'FORT MCCLELLAN',N'Anniston',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61808',3150,N'AFFILIATED TRADES',N'COLLEGEVILLE',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61810',3151,N'KEMBA',N'West Chester',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61823',3152,N'AZURA',N'Topeka',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61824',3153,N'TEAMSTERS',N'Blaine',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61831',3154,N'FAMILY FIRST',N'HAPEVILLE',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61838',3155,N'TRUMBULL',N'Trumbull',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6184',813,N'ST. ANN''S ARLINGTON',N'ARLINGTON',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61840',3156,N'METRO',N'Springfield',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61844',3157,N'DFCU FINANCIAL',N'Dearborn',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61847',3158,N'MIDWEST COALITION OF LABOR',N'Countryside',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6187',814,N'THE ONE',N'Meadville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61872',3159,N'MONMOUTH COUNTY POSTAL EMPLOYEES',N'Red Bank',N'NJ',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61879',3160,N'T&I',N'CLAWSON',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'619',120,N'LAFAYETTE',N'ROCKVILLE',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61908',3161,N'CASE',N'Lansing',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61909',3162,N'FAMILY FIRST',N'SAGINAW',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61918',3163,N'MIDLAND',N'URBANDALE',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61920',3164,N'POWER CO-OP EMPLOYEES',N'Humboldt',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61926',3165,N'ALCOSE',N'White Oak',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61933',3167,N'COMPASS COMMUNITY',N'Eureka',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61936',3168,N'ENERGY CAPITAL',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61942',3170,N'ORGANIZED LABOR',N'Modesto',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61944',3171,N'LAUDERDALE COUNTY TEACHERS',N'Florence',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61946',3172,N'RINCONES PRESBYTERIAN',N'CHACON',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61949',3173,N'WHITEFISH CREDIT UNION ASSOCIATION',N'Whitefish',N'MT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61953',3174,N'NORTH CENTRAL AREA',N'Houghton Lake',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6196',815,N'DERRY AREA',N'DERRY',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61963',3175,N'OLD SPANISH TRAIL',N'WESTLAKE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61986',3176,N'GRATIOT COMMUNITY',N'Alma',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61988',3177,N'SAFE HARBOR',N'Ludington',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61995',3180,N'SUNRISE FAMILY',N'Bay City',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'61999',3181,N'MONTCALM PUBLIC EMPLOYEES',N'EDMORE',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'620',121,N'POWER ONE',N'Fort Wayne',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62010',3182,N'FILER',N'Manistee',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62018',3183,N'ASCENSION',N'GONZALES',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62026',3184,N'MEMBERS CHOICE',N'ASHLAND',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62027',3185,N'BEST FINANCIAL',N'MUSKEGON',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62028',3186,N'OUR',N'ROYAL OAK',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62031',3187,N'HEARTLAND',N'HUTCHINSON',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62035',3188,N'ALPENA-ALCONA AREA',N'ALPENA',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62038',3189,N'EMBERS',N'Marquette',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62040',3190,N'COMPASS',N'SPARTA',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62047',3191,N'LAKE TRUST',N'Brighton',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62048',3192,N'CORRY JAMESTOWN',N'Corry',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62049',3193,N'MICHIGAN SCHOOLS AND GOVERNMENT',N'Clinton Townshi',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62062',3194,N'CITY',N'TUSCALOOSA',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62066',3195,N'HARBORLIGHT',N'WHITEHALL',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62072',3196,N'IGNITE',N'Battle Creek',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62076',3197,N'MEMBERS FIRST',N'Midland',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62079',3199,N'COUNTRY HERITAGE',N'BUCHANAN',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6208',817,N'OMAHA DOUGLAS',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62085',3200,N'U.P. STATE',N'Escanaba',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62114',3201,N'ARCADE',N'Asheville',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62121',3202,N'ILLINOIS VALLEY',N'Peru',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62123',3203,N'RIVER VALLEY',N'Ada',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6214',818,N'UNITED NORTHWEST',N'NORTON',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62141',3204,N'TEAM ONE',N'SAGINAW',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62143',3205,N'SOUTH CENTRAL',N'JACKSON',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62144',3206,N'UNITED CHURCHES',N'TAYLOR',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62148',3207,N'POSTAL',N'BATON ROUGE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62160',3208,N'MARSHALL COMMUNITY',N'Marshall',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62167',3209,N'I.M. DETROIT DISTRICT',N'DETROIT',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62169',3210,N'MICHIGAN ONE COMMUNITY',N'Ionia',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62172',3211,N'CONSUMERS',N'Oshtemo',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62196',3212,N'THORNAPPLE',N'Hastings',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62203',3213,N'WOLVERINE STATE',N'Alpena',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62217',3214,N'AAC',N'Grand Rapids',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62218',3215,N'LAMOURE',N'LAMOURE',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62219',3216,N'H.P.C.',N'ALPENA',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62228',3217,N'GREATER KENTUCKY CU, INC.',N'LEXINGTON',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62243',3218,N'BLOOM',N'Wyoming',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62245',3219,N'TOTAL COMMUNITY',N'TAYLOR',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62249',3220,N'INTANDEM',N'Grand Rapids',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6225',819,N'STEUBEN CITIZENS',N'BATH',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62258',3221,N'COAST GUARD EMPLOYEES',N'New Orleans',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62264',3222,N'ALPENA COMMUNITY',N'Alpena',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62316',3223,N'WESTACRES',N'WEST BLOOMFIELD',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62322',3224,N'OKLAHOMA CENTRAL',N'Tulsa',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62323',3225,N'E-CENTRAL',N'PASADENA',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62325',3226,N'SOO CO-OP',N'Sault Sainte Ma',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6233',820,N'WEST-AIRCOMM',N'Beaver',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62330',3227,N'FARM BUREAU FAMILY',N'LANSING',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62337',3229,N'PROFESSIONAL FIRE FIGHTERS',N'SHREVEPORT',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62338',3230,N'EVANSTON FIREMENS',N'EVANSTON',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62339',3231,N'DIVERSIFIED MEMBERS',N'DETROIT',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62340',3232,N'PREFERRED',N'Grand Rapids',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62344',3233,N'DETOUR DRUMMOND COMMUNITY',N'DRUMMOND ISLAND',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62347',3234,N'WEST MICHIGAN',N'Grand Rapids',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62352',3235,N'C E S',N'MOUNT VERNON',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62356',3236,N'L&N EMPLOYEES',N'BIRMINGHAM',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62358',3237,N'KEMBA LOUISVILLE',N'Louisville',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62367',3239,N'COAST CENTRAL',N'Eureka',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6237',821,N'ALASKA DIST ENGINEERS',N'Elmendorf AFB',N'AK',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62370',3240,N'LEXINGTON POSTAL COMMUNITY',N'Lexington',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62380',3241,N'DAKOTA WEST',N'WATFORD CITY',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62393',3243,N'MEIJER',N'GRAND RAPIDS',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'624',122,N'UNITED STATES SENATE',N'Alexandria',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6240',822,N'B I',N'Sewickley',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62406',3244,N'BRIDGE',N'Powell',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62417',3246,N'LOYALTY',N'Pensacola',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62419',3247,N'CO-OP CREDIT UNION OF MONTEVIDEO',N'Montevideo',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62422',3248,N'METRUM COMMUNITY',N'Centennial',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62426',3249,N'ZEAL',N'LIVONIA',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62429',3250,N'DU PONT EMPLOYEES',N'Fort Madison',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62431',3251,N'EXPREE',N'Frankfort',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62432',3252,N'WHITESVILLE COMMUNITY',N'Whitesville',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62433',3253,N'LOUISVILLE FEDERAL',N'Louisville',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62438',3254,N'ALEXANDRIA MUNICIPAL EMPLOYEES',N'Alexandria',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62441',3255,N'CABOT EMPLOYEES',N'FRANKLIN',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62446',3256,N'DOCHES',N'NACOGDOCHES',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62452',3258,N'FINANCIAL SECURITY',N'CARLSBAD',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62471',3261,N'MOBILE POSTAL',N'Mobile',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62474',3262,N'DUPONT COMMUNITY',N'Waynesboro',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62479',3263,N'EL RENO R.I.L.',N'EL RENO',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6248',823,N'SKYONE',N'Hawthorne',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62482',3264,N'BROWN-FORMAN EMPLOYEES',N'LOUISVILLE',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62484',3265,N'SERVICE ONE',N'Bowling Green',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62486',3266,N'OPP-MICOLAS',N'OPP',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62497',3268,N'MAROON FINANCIAL',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62500',3269,N'AREA EDUCATIONAL',N'MATTOON',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62502',3270,N'COOPERATIVE EMPLOYEES',N'ANADARKO',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62504',3271,N'UNIVERSITY OF VA COMMUNITY CU',N'Charlottesville',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62508',3272,N'TRI-CITIES',N'Grand Haven',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62509',3273,N'FIRSTMARK',N'San Antonio',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62514',3274,N'LAKE MICHIGAN',N'Grand Rapids',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62517',3275,N'CREDIT UNION ADVANTAGE',N'SOUTHFIELD',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62536',3276,N'VIRGINIA UNITED METHODIST',N'North Chesterfi',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62537',3277,N'CHATTANOOGA FEDERAL EMPLOYEES',N'Chattanooga',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62542',3278,N'GOLDEN PLAINS',N'Garden City',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62543',3279,N'AUTO-OWNERS ASSOCIATES',N'LANSING',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62562',3280,N'CREDIT UNION ONE',N'FERNDALE',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62563',3281,N'NORTH STAR COMMUNITY',N'MADDOCK',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62564',3282,N'PEOPLE''S',N'RAYNE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62571',3284,N'MEMORIAL',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62573',3285,N'RIO GRANDE',N'Albuquerque',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62574',3286,N'PREMIER MEMBERS',N'Boulder',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62588',3287,N'CLEVELAND POLICE',N'CLEVELAND',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62589',3288,N'EDUCATIONAL COMMUNITY',N'Springfield',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62590',3289,N'ELECTRO SAVINGS',N'Saint Louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62593',3290,N'MED PARK',N'Grand Forks',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62598',3291,N'CIVIC CENTRAL',N'Jefferson City',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62599',3292,N'FEDERAL EMPLOYEES',N'BIRMINGHAM',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62604',3293,N'BOEING EMPLOYEES',N'TUKWILA',N'WA',N'ISE',8,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62611',3295,N'NORTHWEST MISSOURI REGIONAL',N'MARYVILLE',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62620',3297,N'INDEPENDENCE TEACHERS',N'Independence',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62624',3298,N'ST. JAMES PARISH',N'Cincinnati',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62628',3299,N'COMMUNITY ONE CREDIT UNION OF OHIO',N'North Canton',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62637',3300,N'JEMEZ VALLEY',N'JEMEZ SPRINGS',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62638',3301,N'NORTH STAR COMMUNITY',N'Cherokee',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62641',3302,N'SACRAMENTO',N'Sacramento',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62642',3303,N'MICHIGAN LEGACY',N'Wyandotte',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62656',3304,N'BERYLCO EMPLOYEES''',N'HAMBURG',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62661',3305,N'NAHEOLA',N'Pennington',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62664',3306,N'HEALTH',N'Birmingham',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62665',3307,N'CENTRAL WILLAMETTE',N'Albany',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62673',3308,N'FIRST CAROLINA PEOPLE''S',N'GOLDSBORO',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62677',3309,N'MEMBERS 1ST',N'Redding',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62683',3310,N'MEMBERS COMMUNITY',N'Muscatine',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6269',824,N'TRI COUNTY AREA',N'POTTSTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62701',3311,N'CSD',N'KANSAS CITY',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62702',3312,N'K.U.M.C.',N'Shawnee',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62710',3313,N'PELICAN STATE',N'Baton Rouge',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62715',3314,N'TOGETHER',N'Saint Louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62716',3315,N'FIRST MISSOURI',N'Saint Louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62717',3316,N'OAK LAWN MUNICIPAL EMPLOYEES',N'OAK LAWN',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62726',3317,N'WEST METRO SCHOOLS',N'Hopkins',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62728',3318,N'APCO EMPLOYEES',N'BIRMINGHAM',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62733',3319,N'NSP',N'Maplewood',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62736',3320,N'MONTERRA',N'Redwood City',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62745',3321,N'ONPOINT COMMUNITY',N'Portland',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6275',825,N'ALTANA',N'Billings',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62756',3324,N'SOUTHWEST LOUISIANA',N'Lake Charles',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6277',826,N'PHB EMPLOYEES',N'Fairview',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62776',3327,N'SOOPER CU DBA CLIMB CU',N'ARVADA',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62783',3328,N'ARTESIA',N'Artesia',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62787',3329,N'KNOLL EMPLOYEES',N'EAST GREENVILLE',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62796',3331,N'UNITED CITIES ',N'NEWARK',N'NJ',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62801',3333,N'WEST COMMUNITY',N'O Fallon',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62808',3334,N'DEPARTMENT OF CORRECTIONS',N'Baton Rouge',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62812',3335,N'PUBLIC SAFETY',N'Kansas City',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62815',3336,N'RAYTOWN-LEE''S SUMMIT COMMUNITY',N'RAYTOWN',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62822',3337,N'LATVIAN CLEVELAND',N'LAKEWOOD',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62826',3338,N'ROCKFORD MUNICIPAL EMPLOYEES',N'Rockford',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62827',3339,N'2 RIVERS AREA',N'KANKAKEE',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62829',3340,N'AFFINITY',N'Des Moines',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62841',3342,N'RAILROAD EMPLOYEES',N'Belen',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62847',3343,N'NORTHWOODS',N'Cloquet',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62848',3344,N'TELHIO',N'Columbus',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62854',3345,N'PARTNERSHIP FINANCIAL',N'MORTON GROVE',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62855',3346,N'DIVISION 819 TRANSIT EMPLOYEES',N'IRVINGTON',N'NJ',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62872',3347,N'FIRST ALLIANCE',N'Rochester',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62877',3348,N'MIDDLETOWN AREA SCHOOLS',N'Middletown',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62878',3349,N'CAPITOL VIEW',N'Des Moines',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6288',827,N'UNITED',N'St Joseph',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62881',3350,N'ARIZONA CENTRAL',N'Phoenix',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62882',3351,N'NAVIGANT',N'Smithfield',N'RI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62894',3352,N'ARK VALLEY',N'Arkansas City',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62895',3353,N'BURLINGTON NORTHTOWN COMMUNITY',N'North Kansas Ci',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62896',3354,N'CABOT EMPLOYEES',N'Ville Platte',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62897',3355,N'ASSEMBLIES OF GOD',N'Springfield',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62903',3356,N'PARTNER COLORADO',N'Arvada',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62905',3357,N'NEIGHBORS',N'Saint Louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62918',3358,N'MEMBERS1ST COMMUNITY',N'Marshalltown',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62923',3359,N'ERIE COUNTY EMPLOYEES',N'BUFFALO',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62929',3360,N'FEDERAL EMPLOYEES',N'MONROE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62930',3361,N'COLUMBIA',N'Columbia',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62936',3362,N'N.O. PORT COMMISSION EMPLOYEES',N'New Orleans',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62937',3363,N'LANDINGS',N'TEMPE',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62939',3364,N'STREATOR COMMUNITY',N'Streator',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62950',3365,N'DANFOSS EMPLOYEES',N'Eden Prairie',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62960',3366,N'SHOW-ME',N'Mexico',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62964',3367,N'EXPEDITION',N'Mendota Heights',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62965',3368,N'FINANCIAL PLUS',N'West Des Moines',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62969',3369,N'COLLINS COMMUNITY',N'Cedar Rapids',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62976',3370,N'CONNECTED',N'AUGUSTA',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62978',3371,N'IDEAL',N'WOODBURY',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62983',3372,N'802',N'Barre',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62985',3373,N'GUCO',N'Greenville',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'62998',3375,N'SPOJNIA',N'Scranton',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63004',3376,N'HONOR',N'BERRIEN SPRINGS',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63008',3378,N'NEW ORLEANS POLICE DEPARTMENT EMP.',N'New Orleans',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63020',3379,N'SUMMIT',N'Greensboro',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6304',828,N'NEIMAN MARCUS GROUP EMPLOYEES',N'Dallas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63042',3381,N'TOPEKA FIREMEN''S',N'Topeka',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63055',3384,N'ST. LOUIS NEWSPAPER CARRIERS',N'fenton',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63057',3385,N'LISTERHILL',N'SHEFFIELD',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63058',3386,N'METRO EMPLOYEES',N'Lexington',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63069',3387,N'POST OFFICE EMPLOYEES''',N'METAIRIE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63090',3388,N'HUTCHINSON GOVERNMENT EMPLOYEES',N'Hutchinson',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63098',3390,N'SHAREPOINT',N'Bloomington',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63100',3391,N'CHAMPION',N'Toledo',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63103',3392,N'BLOOMINGTON MUNICIPAL',N'Bloomington',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63109',3393,N'CITIES',N'Vadnais Heights',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6311',829,N'TVH',N'TUSKEGEE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63116',3394,N'TELCOMM',N'Springfield',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63122',3395,N'WELD COMMUNITY',N'Greeley',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63124',3396,N'1ST GATEWAY',N'Camanche',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63125',3397,N'ARCHER HEIGHTS',N'CHICAGO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63133',3398,N'UNIVERSITY',N'Orono',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63137',3399,N'VISION ONE',N'Sacramento',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63142',3400,N'CALCASIEU TEACHERS AND EMPLOYEES',N'Lake Charles',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63143',3401,N'IMMACULATE HEART OF MARY',N'Lafayette',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63157',3403,N'PIPEFITTERS-STEAMFITTERS',N'WOODBURY',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63159',3404,N'FORT DODGE FAMILY',N'Fort Dodge',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63169',3405,N'RELIANCE',N'Kansas City',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6317',830,N'WICHITA FALLS',N'Wichita Falls',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63177',3406,N'THE CATHOLIC',N'AVON LAKE',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6318',831,N'HOUSTON BELT & TERMINAL',N'HUMBLE',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63183',3407,N'RIMROCK',N'BILLINGS',N'MT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63189',3409,N'WHITE EAGLE',N'Augusta',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63194',3410,N'IDAHO CENTRAL',N'Chubbuck',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63196',3411,N'SELCO COMMUNITY',N'Springfield',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63199',3412,N'LINCOLN COUNTY',N'Libby',N'MT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63201',3413,N'FRONTIER COMMUNITY',N'Leavenworth',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63211',3414,N'WHEAT STATE',N'Wichita',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63213',3415,N'OTTAWA HIWAY',N'OTTAWA',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63217',3416,N'1ST KANSAS',N'Topeka',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63218',3417,N'TELCO TRIAD COMMUNITY',N'Sioux City',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63249',3418,N'HEALTH CARE FAMILY',N'Saint Louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63258',3420,N'MOWER COUNTY CATHOLIC PARISHES',N'Austin',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6326',832,N'SAN MATEO CITY EMPLOYEES',N'SAN MATEO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63262',3422,N'HELLO',N'Panama City',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63268',3423,N'ASCENTRA',N'Bettendorf',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63272',3424,N'GRANITE STATE',N'Manchester',N'NH',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6328',833,N'NASA',N'UPPER MARLBORO',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63286',3426,N'FOX VALLEY',N'Aurora',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63299',3429,N'EMPLOYEES',N'ESTHERVILLE',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63300',3430,N'SKYWARD',N'Wichita',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63306',3431,N'MERCY',N'SPRINGFIELD',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63315',3433,N'NW PRIORITY',N'Portland',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63319',3434,N'CREDIT UNION OF EMPORIA',N'EMPORIA',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6332',834,N'TRUNORTH',N'Ishpeming',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63342',3435,N'THE LOCAL',N'Sterling Height',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63368',3438,N'MEMBERS ''FIRST'' COMMUNITY',N'QUINCY',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63373',3439,N'NORTH BAY',N'Santa Rosa',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63374',3440,N'FARMWAY',N'BELOIT',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63375',3441,N'BAY AREA',N'Oregon',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63377',3443,N'MAINE STATE',N'Augusta',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63378',3444,N'QUINCY POSTAL EMPLOYEES',N'QUINCY',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63386',3445,N'SCOTT ASSOCIATES',N'Marysville',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63388',3446,N'KANSAS CITY',N'KANSAS CITY',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63389',3447,N'VOLT',N'Springfield',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6339',836,N'BATON ROUGE CITY PARISH EMP',N'BATON ROUGE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63398',3448,N'ELY AREA',N'ELY',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63405',3449,N'SIMPLOT',N'POCATELLO',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63420',3450,N'DISTRICT ONE HIGHWAY',N'SAINT JOSEPH',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63425',3451,N'NOVA',N'CHARLOTTE',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63440',3452,N'UNITUS COMMUNITY',N'Tigard',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63442',3454,N'MISSISSIPPI PUBLIC EMPLOYEES',N'Jackson',N'MS',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63445',3455,N'GREENSBORO',N'GREENSBORO',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63446',3456,N'ATRIUM',N'Middletown',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63447',3457,N'COMMUNITY',N'Lewiston',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63459',3458,N'WILLIAMSON COUNTY CATHOLIC',N'Herrin',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63468',3459,N'VALLEY EDUCATORS',N'Alamosa',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63476',3460,N'GATEWAY',N'Springfield',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63507',3462,N'DE SOTO MO PAC',N'De Soto',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63519',3463,N'BLUE FLAME',N'Charlotte',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6353',837,N'WASHINGTON COUNTY TEACHERS',N'HAGERSTOWN',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63532',3465,N'ATOMIC',N'Piketon',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63541',3466,N'THE CREDIT UNION FOR ALL',N'Bloomington',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63545',3467,N'TELCO COMMUNITY CREDIT UNION',N'Candler',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63566',3468,N'CHARLOTTE FIRE DEPARTMENT',N'Charlotte',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63589',3470,N'JACOM',N'los angeles',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63595',3471,N'MOUNT VERNON BAPTIST CHURCH',N'Durham',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63597',3472,N'UNITED',N'Mexico',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63598',3473,N'B&V',N'OVERLAND PARK',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63602',3474,N'CORDA',N'Cedar Rapids',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63606',3475,N'GOETZ',N'ST JOSEPH',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63613',3476,N'DAKOTA PLAINS',N'Edgeley',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63614',3477,N'CHAMPION COMMUNITY',N'Courtland',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63627',3478,N'WINSLOW SANTA FE',N'Winslow',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63630',3479,N'ATCHISON VILLAGE',N'RICHMOND',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63639',3481,N'MINNCO',N'Cambridge',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63676',3484,N'COLUMBIANA COUNTY SCHOOL EMPL',N'Lisbon',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63679',3485,N'PAINESVILLE CREDIT UNION',N'PAINESVILLE',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6368',838,N'WACO',N'WACO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6369',839,N'STATEWIDE',N'Flowood',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6370',840,N'SECURTRUST',N'Southaven',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63704',3487,N'MOUNTAIN RIVER',N'SALIDA',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63715',3489,N'GREENSBURG TEACHERS',N'GREENSBURG',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63716',3490,N'LAND OF LINCOLN',N'DECATUR',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63757',3496,N'LIBERTY FIRST',N'Lincoln',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63783',3499,N'COOPERATIVE CHOICE NETWORK',N'PEORIA',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63789',3500,N'ALLIANCE',N'Fenton',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63791',3501,N'RIVERSIDE COMMUNITY',N'KANKAKEE',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63793',3502,N'NIAGARA FRONTIER FEDERAL MUNICIPAL',N'NIAGARA FALLS',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63802',3503,N'MEMORIAL',N'Chattanooga',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63805',3504,N'CHRISTIAN FINANCIAL',N'Sterling Height',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63828',3507,N'CPORT',N'Portland',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63829',3508,N'ST. MARY''S BANK',N'Manchester',N'NH',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63830',3509,N'SIKESTON PUBLIC SCHOOLS',N'Sikeston',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63832',3510,N'TRUWEST',N'Scottsdale',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63834',3511,N'JEFFERSON CREDIT UNION',N'HOOVER',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63837',3512,N'ADELFI',N'Brea',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63844',3513,N'HORIZON',N'Macon',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63851',3515,N'C-F LA.',N'DONALDSONVILLE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63859',3517,N'GREEN MOUNTAIN',N'South Burlingto',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63868',3518,N'GALLATIN STEAM PLANT',N'GALLATIN',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63891',3519,N'LATVIAN',N'MINNEAPOLIS',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63896',3520,N'CREDIT UNION OF VERMONT',N'Rutland',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63899',3521,N'MEMBERS 1ST',N'Brattleboro',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63903',3522,N'RADIO CAB',N'PORTLAND',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63923',3523,N'ONE',N'SPRINGFIELD',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63932',3526,N'1ST MIDAMERICA',N'Bethalto',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63940',3527,N'RED OAK',N'TUSCALOOSA',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63943',3528,N'GLATCO',N'SPRING GROVE',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63958',3529,N'1ST UNITED',N'Pleasanton',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63965',3530,N'VIRGINIA COOP',N'Virginia',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63971',3531,N'POINT WEST',N'Portland',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63977',3532,N'MINNESOTA CATHOLIC',N'Little Canada',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63988',3533,N'ELECTRIC MACHINERY EMPLOYEES',N'MINNEAPOLIS',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'63996',3534,N'INFUZE',N'Fort Leonard Wo',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'640',123,N'MAINE MEDIA',N'PORTLAND',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64029',3535,N'SANTA CRUZ COMMUNITY',N'Santa Cruz',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64030',3536,N'ADVANTAGE',N'Newton',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64034',3537,N'GREATER KINSTON',N'KINSTON',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64036',3538,N'MISSOURI CENTRAL',N'Lees Summit',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64037',3539,N'POWER',N'Pueblo',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64038',3540,N'BLOOMINGTON POSTAL EMPLOYEES',N'BLOOMINGTON',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64049',3542,N'DUPACO COMMUNITY',N'Dubuque',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64056',3543,N'COUNTY',N'Clayton',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64059',3544,N'BENTON COUNTY SCHOOLS',N'Corvallis',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64062',3545,N'SABATTUS REGIONAL',N'Sabattus',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64067',3546,N'FAMILY COMMUNITY',N'Charles City',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64084',3547,N'MAZUMA',N'Overland Park',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64089',3548,N'FIRST PACE',N'West St Paul',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64103',3549,N'FORRIT',N'Clackamas',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64108',3550,N'FOUNTAIN VALLEY',N'Fountain Valley',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64110',3551,N'ARAPAHOE',N'Littleton',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64122',3552,N'VALLEY OAK',N'Three Rivers',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64131',3553,N'PENNSYLVANIA STATE EMPLOYEES',N'HARRISBURG',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64140',3554,N'PEOPLES',N'Webster City',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64144',3555,N'WORCESTER',N'Worcester',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64145',3556,N'POSTAL & COMMUNITY',N'Saint Joseph',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64166',3557,N'MARION AND POLK SCHOOLS',N'Salem',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64168',3558,N'HEARTLAND',N'Inver Grove Hei',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64169',3559,N'VALLEY',N'SALEM',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64171',3560,N'UNIVERSITY',N'Los Angeles',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6418',842,N'C S P EMPLOYEES',N'Somersville',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64186',3561,N'AUSTIN CITY EMPLOYEES',N'Austin',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64191',3562,N'NORTH IOWA COMMUNITY',N'MASON CITY',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64196',3565,N'CENTRAL COMMUNICATIONS',N'Independence',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64199',3566,N'CONSERVATION EMPLOYEES',N'Jefferson City',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64203',3567,N'GREATER IOWA',N'Ames',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64208',3568,N'LOVERS LANE',N'SAINT JOSEPH',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64212',3569,N'MERIDIAN',N'Ottumwa',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64222',3570,N'SOUTH CENTRAL MISSOURI',N'Willow Springs',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64231',3571,N'FIRST CLASS COMMUNITY',N'WEST DES MOINES',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64234',3572,N'LENNOX EMPLOYEES',N'Marshalltown',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6424',843,N'YUMA COUNTY',N'YUMA',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64242',3573,N'PARIS HI-WAY',N'Paris',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64252',3574,N'FELLOWSHIP BAPTIST CHURCH',N'CHICAGO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64267',3575,N'ELECTRICAL WORKERS LOCAL 58',N'DETROIT',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64269',3576,N'S E C U',N'KEOKUK',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64271',3577,N'PREMIER',N'Des Moines',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64275',3578,N'PUBLIC SERVICE #3',N'Fort Wayne',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64281',3579,N'CHEROKEE STRIP',N'Ponca City',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64282',3580,N'NORTH WESTERN EMPLOYEES',N'COUNCIL BLUFFS',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64294',3582,N'AREA COMMUNITY',N'GRAND FORKS',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64304',3584,N'ALEXANDRIA SCHOOLS EMPLOYEES',N'Alexandria',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64323',3585,N'ACE',N'Mason City',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64332',3586,N'ALPINE',N'Orem',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6434',844,N'HERITAGE USA',N'Midland',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64340',3587,N'ONE THIRTEEN',N'Colorado Spring',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64342',3588,N'CREDIT UNION OF DENVER',N'LAKEWOOD',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64359',3589,N'DULUTH POLICE DEPARTMENT EMPLOYEES',N'DULUTH',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64361',3590,N'JOURNEY',N'Des Moines',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64380',3592,N'DES MOINES METRO',N'Des Moines',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64390',3593,N'PUBLIC EMPLOYEES',N'Waterloo',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64394',3594,N'SUMMIT RIDGE',N'LEES SUMMIT',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64397',3595,N'FEDCO',N'Jefferson City',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'644',124,N'TRAILHEAD',N'PORTLAND',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64408',3596,N'VUE COMMUNITY',N'BISMARCK',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64412',3597,N'FIRST AMERICAN',N'Casa Grande',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64417',3598,N'SIOUX VALLEY COMMUNITY',N'SIOUX CITY',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64418',3599,N'VERIDIAN',N'WATERLOO',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64421',3600,N'WHITE RIVER',N'Rochester',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64425',3601,N'ST. LOUIS POLICEMEN`S',N'saint louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6443',845,N'BAYONNE CITY EMPLOYEES',N'Bayonne',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64441',3603,N'HEARTLAND',N'Springfield',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64462',3604,N'NORTHEAST SCHOOLS AND HOSPITAL',N'Newport',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64471',3605,N'DU TRAC COMMUNITY',N'DUBUQUE',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64482',3606,N'UNCLE',N'LIVERMORE',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64503',3608,N'DOW GREAT WESTERN',N'Antioch',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64518',3609,N'MOWER COUNTY EMPLOYEES',N'Austin',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64528',3610,N'BIRMINGHAM CITY',N'Birmingham',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64531',3611,N'ALTA VISTA',N'REDLANDS',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64568',3616,N'URBANA MUNICIPAL EMPLOYEES',N'Urbana',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64594',3618,N'FIREMAN''S',N'BIRMINGHAM',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64598',3619,N'ALABAMA STATE EMPLOYEES',N'Montgomery',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64603',3621,N'ALABAMA LAW ENFORCEMENT CREDIT UNIO',N'Birmingham',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64606',3622,N'LEHIGH VALLEY EDUCATORS',N'Allentown',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64621',3623,N'CAPE REGIONAL',N'Cape Girardeau',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6464',846,N'PAHO/WHO',N'Arlington',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64644',3624,N'BLUE FLAME',N'Mobile',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64645',3625,N'ALABAMA POSTAL',N'Birmingham',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64655',3626,N'NORTHERN COMMUNITIES',N'DULUTH',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6466',847,N'MIDWEST LIBERTY',N'McCook',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64660',3627,N'GREATER VALLEY',N'FRESNO',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64688',3628,N'LISBON FARMERS UNION',N'LISBON',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64690',3629,N'HOLY ROSARY',N'KANSAS CITY',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64691',3630,N'JOPLIN METRO',N'JOPLIN',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64703',3632,N'FEDERATED EMPLOYEES',N'OWATONNA',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64708',3633,N'LEGACY',N'Joplin',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64709',3634,N'NORTHEAST REGIONAL',N'HANNIBAL',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64718',3635,N'MISSOURI BAPTIST',N'Jefferson City',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6472',848,N'YOAKUM COUNTY',N'PLAINS',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64723',3636,N'CO - LIB',N'Saint Louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64731',3637,N'SMARTCHOICE',N'Spring Valley',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64746',3638,N'COMMUNITY FIRST',N'HANNIBAL',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64755',3639,N'DIVISION #6 HIGHWAY',N'Chesterfield',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64759',3640,N'DEL NORTE',N'Los Alamos',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64762',3641,N'CATHOLIC FAMILY',N'Kansas City',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64766',3643,N'MERCO',N'Merced',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64777',3644,N'BLUESCOPE EMPLOYEES''',N'KANSAS CITY',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64778',3645,N'CANVAS',N'LONE TREE',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64782',3646,N'ORLEX GOVERNMENT EMPLOYEES',N'Newport',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64825',3647,N'DECA',N'Cincinnati',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64833',3648,N'HAZLETON SCHOOL EMPLOYEES',N'HAZLETON',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64834',3649,N'CALIFORNIA LITHUANIAN',N'Santa Monica',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64835',3650,N'PACIFIC POSTAL',N'SAN JOSE',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64850',3651,N'CREDIT UNION ONE OF OKLAHOMA',N'Oklahoma City',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64852',3652,N'FELLOWSHIP',N'Lamar',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64856',3653,N'PATRIOT',N'OAKVILLE',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64868',3654,N'CASEBINE COMMUNITY',N'Burlington',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64878',3655,N'5 STAR COMMUNITY',N'MOUNT PLEASANT',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64880',3656,N'COMMUNITY CHOICE',N'Farmington Hill',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64882',3657,N'POSTAL EMPLOYEES',N'TRENTON',N'NJ',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64883',3658,N'MOONLIGHT CREDIT UNION',N'Worthington',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64886',3659,N'AIM',N'Dubuque',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64892',3660,N'JONES METHODIST CHURCH',N'SAN FRANCISCO',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64893',3661,N'UNIVERSAL CITY STUDIOS',N'Burbank',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64896',3662,N'UTILITIES EMPLOYEES',N'READING',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'649',125,N'VALLEY 1ST COMMUNITY',N'MONESSEN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64913',3663,N'ON TAP',N'Golden',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64917',3664,N'DUBUQUE POSTAL EMPLOYEES',N'DUBUQUE',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64920',3665,N'ILLINOIS STATE',N'NORMAL',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64932',3667,N'HIDDEN RIVER',N'Pottsville',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64938',3668,N'OUR FAMILY SOCIAL',N'Omaha',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64939',3669,N'K.C. AREA',N'KANSAS CITY',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64942',3670,N'FAMILY HORIZONS',N'Indianapolis',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64943',3671,N'DES MOINES FIRE DEPARTMENT',N'DES MOINES',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64948',3672,N'LINXUS',N'MACHESNEY PARK',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64967',3673,N'A.S.H. EMPLOYEES',N'ANNA',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64970',3674,N'UNIVERSAL 1',N'Dayton',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6498',849,N'CT FIREFIGHTERS',N'HARTFORD',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64986',3675,N'RIVER COMMUNITY',N'Ottumwa',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64991',3676,N'QUAKER OATS',N'CEDAR RAPIDS',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'64999',3678,N'METROPOLITAN SERVICES',N'SAINT PAUL',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65003',3679,N'GAS AND ELECTRIC',N'ROCK ISLAND',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65013',3680,N'HEALTHCARE FIRST CREDIT UNION',N'JOHNSTOWN',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65039',3682,N'POLK COUNTY',N'DES MOINES',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65040',3683,N'GAS & ELECTRIC EMPLOYEES',N'mason city',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65046',3684,N'SIUE',N'Edwardsville',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65059',3685,N'NIKKEI',N'GARDENA',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6506',850,N'MT GILEAD',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65062',3686,N'ST. LUDMILA S',N'CEDAR RAPIDS',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65063',3687,N'NOVATION',N'OAKDALE',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65071',3688,N'UNITE',N'Cedar Falls',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65078',3689,N'COMMUNITY CHOICE',N'JOHNSTON',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65082',3690,N'SUNWEST',N'Pueblo',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65085',3691,N'LAKE SUPERIOR',N'ONTONAGON',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65088',3692,N'HOLY ROSARY',N'Rochester',N'NH',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65090',3693,N'CENTRAL VERMONT MEDICAL CENTER,INC.',N'BARRE',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65091',3694,N'ST. PATRICK S PARISH',N'Fairfield',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65111',3695,N'OPTIONS',N'LITTLETON',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65136',3696,N'ST. ATHANASIUS',N'JESUP',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65150',3697,N'SERVE',N'DES MOINES',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65155',3698,N'UNITED ASSOCIATION',N'CONCORD',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65186',3699,N'CENTRAL ILLINOIS',N'CHAMPAIGN',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65193',3700,N'WATERLOO FIREMEN''S',N'Waterloo',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65205',3701,N'CINCINNATI EMPLOYEES',N'Harrison',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65208',3702,N'NATCO',N'RICHMOND',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65211',3703,N'WILLIAMSPORT TEACHERS',N'SOUTH WILLIAMSP',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65231',3704,N'PILGRIM BAPTIST',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65238',3705,N'CENT',N'Mason City',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65239',3706,N'BURLINGTON MUNICIPAL EMPLOYEES',N'Burlington',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65242',3707,N'INDUSTRIAL EMPLOYEES',N'Centerville',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65243',3708,N'HOLY GHOST PARISH',N'DUBUQUE',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65256',3709,N'SPRINGFIELD FIREFIGHTERS',N'Springfield',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65259',3710,N'STATE EMPLOYEES COMMUNITY',N'Alton',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6527',851,N'BRIGHTVIEW',N'RIDGELAND',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65291',3713,N'ARMCO',N'BUTLER',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65299',3714,N'KEYPOINT',N'San Jose',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65305',3715,N'ILLINOIS EDUCATORS',N'Springfield',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65323',3717,N'UPWARD',N'Burlingame',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65346',3719,N'SALEM SCHOOL SYSTEM',N'Salem',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65356',3720,N'NEW DIRECTIONS COMMUNITY',N'Franklin',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65371',3721,N'MCPHERSON CO-OP',N'MCPHERSON',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65378',3722,N'MID AMERICAN',N'Wichita',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65384',3723,N'TCP',N'RURAL HALL',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65388',3724,N'VOCALITY COMMUNITY',N'GARBERVILLE',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65398',3725,N'FIRST NEBRASKA',N'OMAHA',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65402',3726,N'ALABAMA RIVER',N'MONROEVILLE',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65411',3727,N'BUCKS COUNTY EMPLOYEES',N'Doylestown',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65412',3728,N'1ST ED CREDIT UNION',N'CHAMBERSBURG',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65421',3730,N'HEALTHCARE ASSOCIATES',N'Naperville',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65424',3731,N'SPRINGFIELD CITY EMPLOYEES',N'Springfield',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65426',3732,N'WESTERN ILLINOIS SCHOOL EMPLOYEES',N'QUINCY',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65427',3733,N'CARBONDALE HIGHWAY',N'Carbondale',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65448',3734,N'RIVERVIEW',N'SOUTH SAINT PAU',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65458',3735,N'ENERGY PLUS',N'Indianapolis',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65464',3736,N'ECO',N'BIRMINGHAM',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65466',3737,N'MORTON',N'South Hutchinso',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65471',3740,N'GUADALUPE PARISH',N'Antonito',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65484',3741,N'ST. JUDE',N'CHICAGO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65491',3742,N'MEMBERS FIRST CREDIT UNION OF N.H.',N'Manchester',N'NH',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65493',3743,N'COMMUNITY SPIRIT CREDIT UNION',N'Lawrenceburg',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65503',3744,N'MUNICIPAL EMPS CU OF OKLAHOMA CITY',N'OKLAHOMA CITY',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65513',3746,N'STATE EMPLOYEES',N'Santa Fe',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65521',3748,N'AEGIS',N'Clinton',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65528',3749,N'NORTH PLATTE UNION PACIFIC EMPLOYEE',N'North Platte',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65555',3750,N'JOLIET FIREFIGHTERS',N'JOLIET',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65561',3751,N'LINCOLN S.D.A.',N'LINCOLN',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65564',3753,N'SAINT NORBERT''S',N'PITTSBURGH',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65565',3754,N'CEDAR FALLS COMMUNITY',N'Cedar Falls',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65578',3755,N'UNITED SAVINGS',N'FARGO',N'ND',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65595',3756,N'AMERICAN 1',N'JACKSON',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65606',3759,N'TEAMSTERS LOCAL #238',N'Cedar Rapids',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65636',3760,N'ST. MARY',N'Walsenburg',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65639',3761,N'WEXFORD COMMUNITY',N'Cadillac',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65640',3762,N'HEIGHTS AUTO WORKERS',N'Burnham',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65644',3763,N'RIVERMARK COMMUNITY',N'Beaverton',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65656',3764,N'MISSOURI',N'Columbia',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65680',3765,N'BETHEL A.M.E. CHURCH',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65712',3769,N'GALESBURG BURLINGTON',N'Galesburg',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65722',3770,N'FREEDOM NORTHWEST',N'KAMIAH',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65728',3771,N'CONNECTICUT STATE EMPLOYEES',N'HARTFORD',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65735',3772,N'CATHOLIC & COMMUNITY',N'Shiloh',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6574',855,N'MERCK SHARP & DOHME',N'CHALFONT',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65759',3773,N'B.E.A.',N'Bethalto',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65770',3774,N'SERVICE PLUS',N'Moline',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65774',3775,N'TEACHERS',N'Oklahoma CIty',N'OK',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65775',3776,N'NORTHERN COLORADO',N'GREELEY',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65780',3777,N'COGIC',N'LAFAYETTE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65781',3778,N'PIEDMONT',N'Statesville',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65788',3779,N'WESTERRA',N'Denver',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65803',3780,N'NORTHWEST HILLS',N'Torrington',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65809',3781,N'NEW HAVEN COUNTY',N'North Haven',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65816',3782,N'NEBRASKA STATE EMPLOYEES',N'LINCOLN',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65817',3783,N'METROPOLITAN DISTRICT EMPLOYEES',N'HARTFORD',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6584',857,N'LES',N'BATON ROUGE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65840',3784,N'I.B.E.W. LOCAL #146',N'Decatur',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65841',3785,N'DECATUR POSTAL',N'Decatur',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65843',3786,N'MWRD EMPLOYEES',N'CHICAGO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65856',3788,N'OREGON COMMUNITY',N'EUGENE',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65861',3789,N'THE PEOPLES',N'Middletown',N'RI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65862',3790,N'NEW HAVEN FIREFIGHTERS',N'NEW HAVEN',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65874',3791,N'TAYLORVILLE SCHOOL EMPLOYEES',N'Taylorville',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65896',3792,N'MEA',N'Monticello',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65905',3793,N'PEORIA BELL',N'Peoria',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65906',3794,N'AURORA POSTAL EMPLOYEES',N'Aurora',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65954',3795,N'NORWALK HOSPITAL',N'NORWALK',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65988',3797,N'KASKASKIA VALLEY',N'Centralia',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'65995',3798,N'MERCER',N'Aledo',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66002',3799,N'STAMFORD HEALTHCARE',N'Stamford',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66012',3800,N'COMMUNITY CHOICE',N'Commerce City',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66036',3801,N'KAN COLO',N'HOISINGTON',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66044',3802,N'REGIONAL WATER AUTHORITY EMPLOYEES',N'New Haven',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66066',3803,N'THE WAY',N'New Knoxville',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66089',3805,N'BEREAN',N'CHICAGO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66097',3806,N'CUBA',N'CUBA',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66116',3807,N'TUCSON OLD PUEBLO',N'Tucson',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66117',3808,N'LOCO',N'ALAMOGORDO',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66126',3809,N'OMAHA FIREFIGHTERS',N'Omaha',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6613',858,N'WALLED LAKE SCHOOLS',N'WOLVERINE LAKE',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66130',3810,N'NEW JERSEY LAW AND PUBLIC SAFETY',N'Trenton',N'NJ',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66143',3811,N'CHAVES COUNTY SCHOOL EMPLOYEES',N'Roswell',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66149',3813,N'GUADALUPE',N'Santa Fe',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66155',3814,N'PEOPLES',N'SPRINGFIELD',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66157',3815,N'CREDIT UNION 1',N'Anchorage',N'AK',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66158',3816,N'TRUMARK FINANCIAL',N'Fort Washington',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66159',3817,N'NEWARK POST OFFICE EMPLOYEES',N'NEWARK',N'NJ',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66185',3819,N'HIGH DESERT COMMUNITY',N'Aztec',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66207',3822,N'NEW HAMPSHIRE POSTAL',N'Manchester',N'NH',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66252',3823,N'QUESTA',N'Questa',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66253',3824,N'FUNERAL SERVICE',N'Springfield',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66258',3825,N'SELF-HELP',N'DURHAM',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66259',3826,N'ORLEANS PARISH SHERIFF''S',N'New Orleans',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6626',859,N'HEALTHCARE FINANCIAL',N'New Haven',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66268',3827,N'MEMBERSOWN',N'Lincoln',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6627',860,N'SYRACUSE FIRE DEPARTMENT EMPLOYEES',N'SYRACUSE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66270',3828,N'ARCHER COOPERATIVE',N'Archer',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66274',3830,N'EDDYVILLE COOPERATIVE',N'Eddyville',N'NE',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6628',861,N'POLICE CREDIT UNION OF CONNECTICUT',N'Hartford',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66296',3832,N'ST. HELENA PARISH',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66299',3833,N'K C K FIREMEN & POLICE',N'KANSAS CITY',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'663',126,N'PRIORITY PLUS',N'WILMINGTON',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66300',3834,N'IMPERIAL',N'Springfield',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66310',3835,N'STATE EMPLOYEES''',N'RALEIGH',N'NC',N'ISE',8,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66317',3837,N'HEALTHSHARE',N'Greensboro',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66319',3838,N'TELCO',N'TARBORO',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66320',3839,N'TEXAS GULF CAROLINA EMP',N'Aurora',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66324',3840,N'WEYCO COMMUNITY',N'PLYMOUTH',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66327',3842,N'CREDIT UNION OF TEXAS',N'Allen',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66328',3843,N'WRIGHT-PATT CREDIT UNION, INC.',N'Beavercreek',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66329',3844,N'L. E. O.',N'Painesville',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66330',3845,N'STATE EMPLOYEES CU OF MARYLAND, INC',N'LINTHICUM',N'MD',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66331',3846,N'SOUND',N'Tacoma',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66333',3847,N'DESTINATIONS CREDIT UNION',N'BALTIMORE',N'MD',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66336',3848,N'BILLERICA MUNICIPAL EMPLOYEES',N'BILLERICA',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66337',3849,N'INDUSTRIAL CU OF WHATCOM COUNTY',N'Bellingham',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66340',3850,N'CENTRAL CREDIT UNION OF MARYLAND,IN',N'Baltimore',N'MD',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66343',3851,N'PROVIDENT',N'REDWOOD CITY',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66346',3852,N'RIVER WORKS',N'Lynn',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66349',3853,N'SALAL',N'Seattle',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66350',3854,N'BROTHERHOOD',N'LYNN',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66351',3855,N'TELCO PLUS',N'LONGVIEW',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66353',3856,N'BRAZOS VALLEY SCHOOLS',N'Katy',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66354',3857,N'EMERGENCY RESPONDERS',N'Winston Salem',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66357',3859,N'DELTA COMMUNITY',N'Atlanta',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66359',3860,N'FIRST NORTHERN',N'Chicago',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6636',862,N'CAREY POVERELLO',N'Carey',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66364',3862,N'METRO',N'Chelsea',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66365',3863,N'ALIGN',N'Lowell',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66366',3864,N'EDINBURG TEACHERS',N'Edinburg',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66369',3867,N'ENERGY',N'West Roxbury',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66370',3868,N'SCOTT',N'Edwardsville',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66372',3869,N'U. S. EMPLOYEES',N'Tomball',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66373',3870,N'WHATCOM EDUCATIONAL',N'Bellingham',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66374',3871,N'SOUTHBRIDGE',N'Southbridge',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66376',3872,N'PATHWAYS FINANCIAL',N'Columbus',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6638',863,N'HARRISON POLICE & FIREMEN''S',N'Harrison',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66388',3873,N'TAYLOR',N'Medford',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66393',3874,N'NEKOOSA',N'Nekoosa',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66395',3875,N'EVERGREEN',N'NEENAH',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66399',3876,N'HARBORSTONE',N'TACOMA',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66410',3877,N'KENOSHA POLICE AND FIREMEN''S',N'KENOSHA',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66418',3878,N'OSHKOSH POSTAL EMPLOYEES',N'Oshkosh',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66423',3879,N'FIREFIGHTERS',N'ONALASKA',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66424',3880,N'PCM',N'Green Bay',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66430',3881,N'VALLEY COMMUNITIES',N'Mosinee',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66431',3882,N'MADISON',N'MADISON',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66434',3883,N'INDIANHEAD',N'SPOONER',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66437',3884,N'WINNEBAGO COMMUNITY',N'Oshkosh',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66439',3885,N'SENTRY',N'Stevens Point',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66447',3886,N'SHORELINE',N'Two Rivers',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66448',3887,N'EDUCATORS',N'RACINE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66449',3888,N'PRIME FINANCIAL',N'Cudahy',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66451',3889,N'FOCUS',N'Menomonee Falls',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66456',3890,N'COUNTY - CITY',N'JEFFERSON',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66461',3891,N'PUBLIC SERVICE',N'WAUSAU',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66466',3892,N'MARATHON COUNTY EMPLOYEES',N'WAUSAU',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66476',3893,N'HOLY FAMILY MEMORIAL',N'Manitowoc',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66477',3894,N'GUNDERSEN',N'LA CROSSE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66492',3896,N'UNIVERSITY OF WISCONSIN',N'Madison',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66499',3897,N'MADISON FIRE DEPARTMENT',N'MADISON',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'665',127,N'PENINSULA COMMUNITY',N'SHELTON',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66503',3898,N'IRON COUNTY COMMUNITY',N'Hurley',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66513',3899,N'CENTRAL WISCONSIN',N'Plover',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6652',864,N'ATLANTIC FINANCIAL',N'HUNT VALLEY',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66529',3900,N'GOVERNMENTAL EMPLOYEES',N'La Crosse',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66530',3901,N'SERVICE',N'Green Bay',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66532',3902,N'ARCADIA',N'Arcadia',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66537',3903,N'AVESTAR',N'Waterloo',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66538',3904,N'CONNEXUS',N'Wausau',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66545',3905,N'FIRST CHOICE',N'MARSHFIELD',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66546',3906,N'AIR TECH',N'MILWAUKEE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66547',3907,N'WOOD COUNTY EMPLOYEES',N'WISCONSIN RAPID',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66549',3908,N'BAY SHORE',N'MARINETTE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66555',3909,N'NORTHWESTERN MUTUAL',N'Milwaukee',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66565',3910,N'STOPPENBACH',N'Jefferson',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66582',3911,N'P.I.E.',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66584',3912,N'CALIFORNIA COAST',N'San Diego',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66585',3913,N'POINT BREEZE',N'Hunt Valley',N'MD',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66592',3915,N'CITIZENS COMMUNITY',N'Fort Dodge',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66593',3916,N'FIRST PRIORITY',N'BOSTON',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66594',3917,N'GREENWOOD',N'Warwick',N'RI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66595',3918,N'OCEAN STATE',N'COVENTRY',N'RI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66597',3919,N'POLISH NATIONAL',N'Chicopee',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66613',3920,N'STOUGHTON U.S. RUBBER EMPLOYEES',N'STOUGHTON',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66615',3921,N'TOMAH AREA',N'Tomah',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66616',3922,N'SHEBOYGAN AREA',N'Sheboygan',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66618',3923,N'MEADOWLAND',N'SHEBOYGAN FALLS',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66622',3924,N'RACINE MUNICIPAL EMPLOYEES',N'Racine',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66625',3925,N'WISCONSIN MEDICAL',N'Green Bay',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66633',3926,N'MEMBERS'' ADVANTAGE',N'Wisconsin Rapid',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66637',3927,N'BREWERY',N'MILWAUKEE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66638',3928,N'GUARDIAN',N'Oak Creek',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66640',3929,N'TRI-COUNTY',N'Marinette',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66642',3930,N'COMMUNITY FIRST',N'Appleton',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6665',865,N'FINANCIAL RESOURCES',N'Branchburg',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66652',3931,N'PROSPERA',N'APPLETON',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66660',3932,N'ALLOY EMPLOYEES',N'WAUKESHA',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66662',3933,N'SCHOOL EMPLOYEES',N'Superior',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66663',3934,N'POLICE',N'SHEBOYGAN',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66665',3935,N'DAIRYLAND POWER',N'LA CROSSE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6667',866,N'TSU',N'Nashville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66675',3936,N'APPLETREE',N'West Allis',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66677',3937,N'WEA',N'Madison',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66678',3938,N'SIMPLICITY',N'Marshfield',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66683',3939,N'RIPPLE',N'Oshkosh',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66686',3940,N'WISCONSIN LATVIAN, INC.',N'MILWAUKEE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66699',3941,N'ALL ONE',N'Leominster',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6670',867,N'CONNECTS',N'Richmond',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66700',3942,N'VIRGINIA EDUCATORS CREDIT UNION',N'Newport News',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66703',3943,N'WESCOM CENTRAL',N'PASADENA',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66705',3944,N'TRANSWEST',N'SALT LAKE CITY',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66706',3945,N'MEMBERS PLUS',N'Medford',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66707',3946,N'SOUTHERN LAKES',N'KENOSHA',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66710',3947,N'HEARTLAND',N'Madison',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6672',868,N'U S EMPLOYEES',N'Fairmont',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66731',3948,N'FOX COMMUNITIES',N'Appleton',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66733',3949,N'NEW BEDFORD',N'New Bedford',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66734',3950,N'NORTH COAST',N'Bellingham',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6674',869,N'HOME',N'Clarksburg',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66742',3951,N'WESTCONSIN',N'Menomonie',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66750',3952,N'BADGER-GLOBE',N'NEENAH',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66751',3953,N'LANDMARK',N'Brookfield',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66752',3954,N'MARINE',N'La Crosse',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66755',3955,N'COMPASSIONATE CARE',N'Fond du Lac',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66760',3956,N'PREMIER FINANCIAL',N'New Holstein',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66777',3957,N'VERVE, A CREDIT UNION',N'Oshkosh',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66779',3958,N'OSHKOSH COMMUNITY',N'OSHKOSH',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66787',3959,N'MUNICIPAL EMPL.CREDIT UNION OF BALT',N'BALTIMORE',N'MD',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66788',3960,N'SAN JOAQUIN POWER EMPLOYEES',N'FRESNO',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6679',870,N'ACT 1ST',N'LaVale',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66798',3961,N'FORWARD FINANCIAL',N'NIAGARA',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6680',871,N'AOD',N'BYNUM',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6681',872,N'CALTECH EMPLOYEES',N'La Canada',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66818',3962,N'FIRST COMMUNITY',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66819',3963,N'ATHOL',N'Athol',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66824',3965,N'FREEDOM',N'SPRINGFIELD',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66834',3969,N'ROYAL',N'EAU CLAIRE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66835',3970,N'DAY AIR',N'Kettering',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66840',3974,N'CODE',N'Dayton',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66841',3975,N'NUMERICA',N'Spokane Valley',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66844',3976,N'CLOVERBELT',N'Wausau',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66847',3977,N'EAGLE COMMUNITY',N'Lake Forest',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66848',3978,N'COVANTAGE',N'Antigo',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6685',873,N'WEPCO',N'BLOOMINGTON',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66851',3980,N'UNISON',N'Kaukauna',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66854',3981,N'WNC COMMUNITY CU',N'Waynesville',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66856',3982,N'CS',N'Catawba',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66857',3983,N'GERMANIA',N'Brenham',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66860',3984,N'GREATER CLEVELAND COMMUNITY',N'Cleveland',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66862',3985,N'M.E. EMPLOYEES',N'WAUSAU',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66865',3986,N'CAPITAL',N'Green Bay',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66867',3987,N'LEADING EDGE',N'Worthington',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6687',874,N'T & P LONGVIEW',N'Longview',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66872',3988,N'KOHLER',N'Sheboygan',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66877',3989,N'TEACHERS',N'BELOIT',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66878',3990,N'MCU FINANCIAL CENTER',N'Racine',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66886',3991,N'TEN',N'NASHVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6689',875,N'LATROBE',N'LATROBE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66899',3992,N'RICHMOND VIRGINIA FIRE POLICE CREDI',N'Richmond',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66913',3993,N'HAMPTON ROADS EDUC CREDIT UNION INC',N'HAMPTON',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66924',3994,N'VALLEYSTAR',N'Martinsville',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66929',3995,N'CREDIT UNION OF RICHMOND INCORPORAT',N'Richmond',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66933',3996,N'AUGUSTA HEALTH CARE CREDIT UNION',N'FISHERSVILLE',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6694',876,N'MEMBERS 1ST',N'Enola',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66942',3997,N'PFD FIREFIGHTERS CREDIT UNION INC.',N'Portsmouth',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66954',3999,N'LOUDOUN CREDIT UNION',N'Leesburg',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66956',4000,N'NORTHERN STAR CREDIT UNION, INC.',N'Portsmouth',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66965',4001,N'BEACON CREDIT UNION, INCORPORATED',N'Lynchburg',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66967',4002,N'JACKSON RIVER COMMUNITY',N'Covington',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66970',4003,N'NEWPORT NEWS MUN. EMP CREDIT UNION',N'Newport News',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66973',4004,N'DOMINION ENERGY CREDIT UNION',N'North Chesterfi',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66975',4005,N'P W C EMPLOYEES CREDIT UNION',N'Woodbridge',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66980',4006,N'SOUTHERN',N'Chattanooga',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66983',4007,N'CO-OP',N'Black River Fal',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66998',4008,N'BLACKHAWK COMMUNITY',N'Janesville',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'66999',4009,N'LAKEWOOD',N'Rib Lake',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6700',877,N'JERSEY CITY FIREMEN',N'Jersey City',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67000',4010,N'BROKAW',N'Weston',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67003',4011,N'BRANTWOOD',N'Brantwood',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67005',4012,N'NATIONAL J. A. C. L.',N'SALT LAKE CITY',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67009',4013,N'UNITED LABOR',N'Raytown',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67012',4014,N'1ST COMMUNITY',N'SPARTA',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67017',4015,N'N.E.W.',N'Oconto Falls',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67021',4016,N'NORTHEAST COMMUNITY',N'ELIZABETHTON',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67022',4017,N'1ST CLASS EXPRESS',N'WAUKESHA',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67024',4018,N'MT. ZION',N'ZION',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67056',4020,N'P & S',N'SALT LAKE CITY',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67066',4021,N'MARSHFIELD MEDICAL CENTER',N'Marshfield',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67076',4024,N'UTAH HERITAGE',N'Moroni',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67078',4025,N'HOLLYFRONTIER EMPLOYEE''S',N'Bountiful',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67079',4026,N'FIREFIGHTERS',N'Salt Lake City',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67096',4027,N'GOLDEN RULE COMMUNITY',N'RIPON',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67108',4028,N'PRESTO LEWISTON EMPLOYEES',N'Lewiston',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6711',878,N'SANTA BARBARA COUNTY',N'SANTA BARBARA',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67110',4029,N'PROVO POLICE & FIRE DEPT.',N'Provo',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67127',4031,N'EDUCATION 1ST',N'OGDEN',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67129',4032,N'FREEDOM',N'Provo',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67130',4033,N'SOUTH SANPETE',N'Manti',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67132',4034,N'UTAH POWER',N'Murray',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67140',4036,N'BECKSTRAND AND ASSOCIATES',N'Salt Lake City',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67146',4038,N'NEBO',N'Springville',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67147',4039,N'PACIFIC HORIZON',N'Springville',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67149',4040,N'S E A',N'Richfield',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67153',4041,N'MEMBERS FIRST',N'Brigham City',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67156',4042,N'UINTAH',N'VERNAL',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67160',4043,N'KINGS PEAK',N'Roosevelt',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67163',4044,N'SAN JUAN',N'BLANDING',N'UT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67173',4045,N'SUPERIOR CHOICE',N'Superior',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67176',4046,N'FOND DU LAC',N'Fond du Lac',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67178',4047,N'ACCESS COMMUNITY',N'Amarillo',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67181',4048,N'FOOTHILLS',N'Wheat Ridge',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67183',4049,N'RIPCO',N'Rhinelander',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67184',4050,N'FORT COMMUNITY',N'FORT ATKINSON',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67185',4051,N'FIRST CHOICE COMMUNITY',N'Knoxville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67187',4052,N'QUANTUM',N'Wichita',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67190',4053,N'SUMMIT',N'Madison',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67195',4054,N'ARSENAL',N'Arnold',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67196',4055,N'PARK CITY',N'Merrill',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67197',4056,N'JACK DANIEL EMPLOYEES',N'LYNCHBURG',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67200',4057,N'OAKDALE',N'Oakdale',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67201',4058,N'WHITE RIVER',N'Enumclaw',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67208',4059,N'WESTBY CO-OP',N'WESTBY',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67214',4060,N'FIRST COMMUNITY CU OF BELOIT',N'BELOIT',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6722',879,N'GROVE CITY AREA',N'GROVE CITY',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67222',4061,N'THE STATE',N'CHARLESTON',N'WV',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67226',4062,N'CREDIT UNION OF THE ROCKIES',N'Golden',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6723',880,N'FRANKLIN JOHNSTOWN',N'JOHNSTOWN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67237',4331,N'SUPERIOR MUNICIPAL EMPLOYEES',N'SUPERIOR',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67238',4332,N'GLACIER HILLS',N'WEST BEND',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67240',4330,N'NORTHWOODS COMMUNITY',N'Park Falls',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67243',4328,N'ATHENS AREA',N'ATHENS',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67248',4329,N'UNITEDONE',N'Manitowoc',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6725',881,N'L R F D',N'LITTLE ROCK',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67251',4343,N'OPPORTUNITIES',N'Winooski',N'VT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67252',1676,N'EMBLEM',N'GADSDEN',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6726',882,N'TEMPLE-INLAND',N'Diboll',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67262',4140,N'NORTHWEST PLUS',N'Everett',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67263',4165,N'BELL',N'HUTCHINSON',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67264',755,N'HORIZON',N'Spokane Valley',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67269',4090,N'RHODE ISLAND',N'Providence',N'RI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67270',4091,N'WESTERLY COMMUNITY',N'Wakefield',N'RI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67278',4089,N'COASTAL1 ',N'Pawtucket',N'RI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67290',4171,N'COMMUNITY FIRST CREDIT UNION OF FLO',N'JACKSONVILLE',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67297',4183,N'SPACE COAST',N'Melbourne',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67309',4184,N'1ST STREET',N'SARASOTA',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67316',4188,N'ALIVE',N'Jacksonville',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67318',4192,N'POMPANO BEACH CITY EMP.',N'POMPANO BEACH',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67319',4169,N'PRIORITY',N'Orlando',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67323',4174,N'CITY-COUNTY EMPLOYEES',N'CLEARWATER',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67327',4202,N'SHAW-ROSS EMPLOYEES',N'Miami',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67329',4187,N'ENVISION',N'Tallahassee',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6733',883,N'CENCAP',N'HARTFORD',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67330',4168,N'MIAMI POSTAL SERVICE',N'Miami',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67332',4179,N'SUN',N'Hollywood',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67334',4190,N'JACKSON COUNTY TEACHERS',N'MARIANNA',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67336',4198,N'ECU',N'SEMINOLE',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67337',4176,N'FLORIDA WEST COAST',N'BRANDON',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67338',4181,N'ELECTRICIANS'' LOCAL 349',N'MIAMI',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67340',4407,N'BROOKLINE MUNICIPAL',N'BROOKLINE',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67341',4200,N'JEFFERSON COUNTY TEACHERS',N'Monticello',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67342',4197,N'CONNECT CREDIT UNION',N'Fort lauderdale',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67344',4201,N'INSIGHT',N'WINTER SPRINGS',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67347',4178,N'BRIGHTSTAR',N'Fort Lauderdale',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67348',4180,N'UNIVERSITY',N'MIAMI',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67349',4191,N'ADVENTHEALTH',N'Altamonte Sprin',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67352',4419,N'JEANNE D''ARC',N'LOWELL',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67354',4339,N'GLYNN COUNTY FEDERAL EMPLOYEES',N'BRUNSWICK',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67364',4102,N'SAVANNAH POSTAL',N'Savannah',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67367',4107,N'CGR',N'Macon',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67371',4094,N'CORE',N'Statesboro',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67382',4096,N'GENUINE PARTS',N'Norcross',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67383',4092,N'CREDIT UNION OF ATLANTA',N'Atlanta',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67388',4101,N'MUTUAL SAVINGS',N'Atlanta',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67389',4093,N'ATLANTA POSTAL',N'ATLANTA',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6739',885,N'MID-STATE',N'Carteret',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67390',4097,N'GEORGIA''S OWN',N'Atlanta',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67395',4108,N'NORTH GEORGIA',N'Toccoa',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67403',4103,N'SOUTHERN PINE',N'Lake Park',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67407',4266,N'NAVARRO',N'Corsicana',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67408',4240,N'BRAZOS STAR',N'College Station',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67414',4256,N'FEDERAL EMPLOYEES',N'TEXARKANA',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67416',4207,N'CENTEX CITIZENS',N'Mexia',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67417',4285,N'UNION PACIFIC EMPLOYEES',N'Beaumont',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67425',4281,N'CENTRAL TEXAS TEACHERS',N'Corsicana',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67427',4226,N'GALVESTON GOVERNMENT EMPLOYEES',N'Dickinson',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67428',4204,N'PUBLIC EMPLOYEES',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6743',886,N'ABILENE TEACHERS',N'Abilene',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67431',4193,N'CALHOUN LIBERTY',N'Blountstown',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67432',4177,N'ALLIANCE CREDIT UNION OF FLORIDA',N'Gainesville',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67434',4195,N'COMMUNITY SOUTH',N'CHIPLEY',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67436',4264,N'MESQUITE',N'MESQUITE',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67439',4255,N'TXDOT',N'Abilene',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67440',4251,N'ANGELINA COUNTY TEACHERS',N'LUFKIN',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67441',4306,N'CAPROCK SANTA FE',N'SLATON',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67444',4182,N'PRIORITY ONE CREDIT UNION',N'Sunrise',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67446',4272,N'ACU',N'Abilene',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67452',4222,N'TEXAS HEALTH',N'AUSTIN',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67456',4274,N'EVERMAN PARKWAY',N'FORT WORTH',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67458',4287,N'WHARTON COUNTY TEACHERS',N'Wharton',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67465',4295,N'TEXAS BAY',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67468',4227,N'HIGHWAY DISTRICT 2',N'Fort Worth',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67469',4221,N'HIGHWAY DISTRICT 9',N'WACO',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6747',887,N'DYNAMIC',N'CELINA',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67470',4210,N'AMERICA''S',N'GARLAND',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67473',4257,N'CONCHO VALLEY',N'San Angelo',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67474',4291,N'HIGHWAY EMPLOYEES',N'Tyler',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67475',4289,N'MIDLAND MUNICIPAL EMPLOYEES',N'Midland',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67477',4228,N'SHARED RESOURCES',N'Pasadena',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67480',4205,N'THD DISTRICT 17',N'Bryan',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67481',4432,N'ALLTRUST',N'Fairhaven',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67483',4290,N'1ST UNIVERSITY',N'Waco',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67485',4282,N'CORPUS CHRISTI S.P.',N'Corpus Christi',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67486',4261,N'REED',N'HOUSTON',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67489',4279,N'ANGELINA FEDERAL EMPLOYEES',N'Lufkin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67493',4248,N'UNITED ENERGY',N'Humble',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67494',4297,N'EDUCATION',N'Amarillo',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67499',4276,N'PARIS DISTRICT',N'Paris',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67505',4099,N'1ST CHOICE',N'ATLANTA',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67507',4216,N'PRESTIGE COMMUNITY',N'Dallas',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67508',4296,N'MEMBERS CHOICE',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67510',4247,N'BRAZOS COMMUNITY',N'Alvin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67511',4217,N'TEXAS DPS',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67512',4211,N'STAR OF TEXAS',N'austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67516',4280,N'HOCKLEY COUNTY',N'Levelland',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67517',4258,N'METRO MEDICAL',N'Dallas',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67519',4242,N'LINKAGE',N'WACO',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67520',4236,N'SWEETEX',N'Longview',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67521',4185,N'GUARDIANS',N'WEST PALM BEACH',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67531',4244,N'DEL RIO S.P.',N'DEL RIO',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67532',4203,N'FORT WORTH CITY',N'Fort Worth',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67534',4283,N'ODESSA EMPLOYEES',N'Odessa',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67535',4278,N'DATCU',N'DENTON',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67537',4265,N'LCRA',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67538',4106,N'MEMBERSFIRST',N'Decatur',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67541',4439,N'LIBERTY BAY',N'Braintree',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67542',4212,N'FIRST PRIORITY',N'Abilene',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67544',4229,N'BAYLOR HEALTH CARE SYSTEM',N'Dallas',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67545',4301,N'MATAGORDA COUNTY',N'Bay City',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67547',4263,N'DALLAS U.P. EMPLOYEES',N'Dallas',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67549',4250,N'MIDWESTERN STATE UNIVERSITY',N'Wichita Falls',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67550',4206,N'SOUTHWEST 66',N'ODESSA',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67554',4254,N'POSTEL FAMILY',N'Wichita Falls',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67558',4412,N'COMMUNITY CREDIT UNION OF LYNN',N'LYNN',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67563',4098,N'HARRIS EMPLOYEES',N'Cordele',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67564',4105,N'THE WRIGHT',N'Toccoa',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67573',4223,N'TEMPLE SANTA FE COMMUNITY',N'Temple',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67574',4292,N'BEAUMONT COMMUNITY',N'Beaumont',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67576',4241,N'COOPERATIVE TEACHERS',N'Tyler',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67578',4302,N'NCE',N'CORPUS CHRISTI',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67579',4267,N'TEX MEX',N'Laredo',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67581',4259,N'CABOT COMMUNITY',N'Pampa',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67587',4214,N'UNITED',N'Tyler',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67592',4237,N'WEST TEXAS',N'Odessa',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67599',4410,N'ALLCOM',N'Worcester',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67602',4303,N'CEN TEX MANUFACTURING',N'Brownwood',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67604',4219,N'TRAVIS COUNTY',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67605',4436,N'ST. ANNE''S',N'Fall River',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67608',4399,N'UPS EMPLOYEES',N'MEMPHIS',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67609',4233,N'FIRST BASIN',N'Odessa',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67611',4284,N'EDUCATORS',N'WACO',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67612',4269,N'SCOTT AND WHITE EMPLOYEES',N'Temple',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67615',4440,N'WATERTOWN MUNICIPAL',N'WATERTOWN',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67619',4113,N'FIRST COMMUNITY',N'Chesterfield',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67621',4243,N'PAMPA MUNICIPAL',N'Pampa',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67622',4246,N'AMERICAN BAPTIST ASSOCIATION',N'Angleton',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67624',4253,N'OAK FARMS EMPLOYEES',N'HOUSTON',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67625',4208,N'SCHLUMBERGER EMPLOYEES',N'Sugar Land',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67627',4239,N'HOUSTON HIGHWAY',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67630',4199,N'MADISON EDUCATION ASSOC.',N'Madison',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67634',4262,N'TRINITY VALLEY TEACHERS',N'Palestine',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67638',4294,N'TYLER CITY EMPLOYEES',N'Tyler',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67639',4213,N'AMARILLO POSTAL EMPLOYEES',N'AMARILLO',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67641',4273,N'LEHRER INTERESTS',N'GARWOOD',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67642',4232,N'MTCU',N'Midland',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67644',4293,N'FIRST CENTRAL',N'Waco',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67645',4249,N'SERVICE 1ST',N'Greenville',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67648',4078,N'HOOSIER UNITED',N'Indianapolis',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67649',4260,N'MEMBERS',N'Cleburne',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67651',4271,N'INTERCORP',N'AMARILLO',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67658',4308,N'MEMBERS FIRST',N'Corpus Christi',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67660',4209,N'SOUTHERN STAR',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67661',4238,N'VATAT',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67664',4338,N'COMMUNITYAMERICA',N'Lenexa',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67666',4366,N'TNCONNECT',N'KNOXVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67668',4194,N'FLORIDACENTRAL',N'Tampa',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67669',4225,N'CITY',N'DALLAS',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67681',4270,N'NEIGHBORHOOD',N'Dallas',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67682',4110,N'ATLAS',N'Hannibal',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67683',4441,N'WORCESTER FIRE DEPT.',N'WORCESTER',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67687',4100,N'MACON FIREMEN''S',N'MACON',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67688',4095,N'MACON-BIBB EMPLOYEES CREDIT UNION',N'Macon',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67691',4114,N'J C FEDERAL EMPLOYEES',N'Jefferson City',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67695',4111,N'ACADEMIC EMPLOYEES',N'Columbia',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67700',4312,N'HIGHWAY ALLIANCE',N'Jefferson city',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67701',4378,N'GREATER EASTERN',N'Johnson City',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67703',4112,N'DEXTER PUBLIC SCHOOLS',N'Dexter',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67708',4323,N'ST. JOSEPH TEACHERS''',N'SAINT JOSEPH',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67709',4429,N'QUINCY',N'Quincy',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67710',4416,N'HAVERHILL FIRE DEPARTMENT',N'Haverhill',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67713',4369,N'LAKESIDE',N'New Johnsonvill',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67715',4325,N'OUR LADY OF SNOWS',N'Henley',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67716',4115,N'SOUTHEAST MISSOURI COMMUNITY',N'Park Hills',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67717',4170,N'JAX FIRE',N'Jacksonville',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6772',888,N'SORG BAY WEST',N'MIDDLETOWN',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67720',4395,N'US COMMUNITY',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67725',4167,N'FIRST CHOICE',N'WEST PALM BEACH',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67730',4160,N'DILLON',N'Hutchinson',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67738',4345,N'BCBST EMPLOYEES',N'CHATTANOOGA',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67739',4311,N'MISSOURI ELECTRIC COOPERATIVES EMPL',N'Jefferson City',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6774',889,N'COOSA PINES',N'Childersburg',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67741',4362,N'CREDIT UNION FOR ROBERTSON COUNTY',N'Springfield',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67747',4348,N'SCENIC COMMUNITY',N'Hixson',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67748',4353,N'HERITAGE SOUTH COMMUNITY CU',N'Shelbyville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67749',4417,N'HTM',N'HAVERHILL',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6775',890,N'Y-12',N'Oak Ridge',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67750',4116,N'ST. AUGUSTINE',N'Kelso',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67757',4390,N'YOUR BEST CREDIT UNION',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67761',4304,N'EAST TEXAS PROFESSIONAL',N'Longview',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67762',4082,N'MARTIN COUNTY COOPERATIVE',N'loogootee',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67767',4420,N'LOWELL FIREFIGHTERS',N'LOWELL',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67770',4109,N'MEMBERS 1ST',N'Saint Louis',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67776',4374,N'BEACON FINANCIAL',N'Johnson City',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67778',4349,N'CITY EMPLOYEES',N'KNOXVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67779',4387,N'P.I.A.S.',N'Brentwood',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6778',891,N'ENRICHMENT',N'OAK RIDGE',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67783',4155,N'C & R',N'Clay Center',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67785',4166,N'TOPEKA POLICE',N'TOPEKA',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67789',4380,N'EMPLOYEE RESOURCES',N'LAWRENCEBURG',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67793',4365,N'KNOX CO. EMPLOYEES',N'KNOXVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67797',4157,N'ELLIS',N'ELLIS',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67799',4163,N'SALINA INTERPAROCHIAL',N'SALINA',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'678',128,N'FAMILY 1ST OF TEXAS',N'Fort Worth',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67800',4164,N'SALINA MUNICIPAL',N'SALINA',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67801',4324,N'STATIONERY',N'Saint Joseph',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67804',4322,N'VANTAGE',N'Saint Charles',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67812',4158,N'MID PLAINS',N'GLASCO',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67829',4161,N'HUTCHINSON POSTAL & COMMUNITY',N'HUTCHINSON',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67831',4333,N'ALLEN HOSPITAL PERSONNEL',N'Waterloo',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67835',4245,N'TRANS TEXAS SOUTHWEST',N'San Angelo',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67836',4431,N'SHARON & CRESCENT UNITED',N'SHARON',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67837',4406,N'BOSTON FIREFIGHTERS',N'Dorchester',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67840',4422,N'LYNN POLICE',N'Lynn',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67841',4411,N'CITY OF BOSTON',N'South Boston',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6785',892,N'LESCO',N'Latrobe',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67855',4159,N'TRI-COUNTY',N'GRINNELL',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67856',4156,N'CREDIT UNION OF DODGE CITY',N'Dodge City',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67864',4438,N'ST. MARY''S',N'MARLBOROUGH',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67865',4268,N'CAPITOL',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67869',4299,N'KEYSTONE',N'Tyler',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67872',4405,N'ALPHA',N'Boston',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67874',4189,N'CHAMPIONS FIRST',N'Tallahassee',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67875',4418,N'HOLYOKE',N'Holyoke',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67882',4424,N'LYNN TEACHERS',N'LYNN',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67890',4421,N'LUSO-AMERICAN',N'Peabody',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67891',4408,N'CABOT BOSTON',N'boston',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67892',4104,N'WORKMEN''S CIRCLE INCORPORATED',N'Savannah',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67894',4413,N'FALL RIVER MUNICIPAL',N'Fall River',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67902',4433,N'GREATER SPRINGFIELD',N'SPRINGFIELD',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67911',4137,N'PRIMESOURCE',N'Spokane',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67915',4215,N'WESTEX COMMUNITY',N'Kermit',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67921',4119,N'LONG BEACH FIREMEN S',N'Long Beach',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67922',4382,N'NASHVILLE POST OFFICE',N'NASHVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67924',4313,N'CITY',N'Independence',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67927',4288,N'SMART FINANCIAL',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67928',4224,N'EECU',N'Fort Worth',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67933',4175,N'CONTAINER MUTUAL',N'Fernandina Beac',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67936',4117,N'LEADCO COMMUNITY',N'Park Hills',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67937',4352,N'DIXIE LINE',N'NASHVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67938',4186,N'OCALA COMMUNITY',N'OCALA',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67946',4383,N'O.M.C. EMPLOYEES''',N'CHARLESTON',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67951',4404,N'ALDEN',N'Chicopee',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67955',4064,N'ALLIANT',N'CHICAGO',N'IL',N'ISE',8,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67959',4437,N'ST. JEAN''S',N'lynn',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67963',4298,N'CORPUS CHRISTI POSTAL EMPLOYEES',N'Corpus Christi',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67965',4435,N'SPRINGFIELD STREET RAILWAY EMP.',N'SPRINGFIELD',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67970',4347,N'BOWATER EMPLOYEES',N'Calhoun',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67971',4392,N'TENNESSEE DEPARTMENT OF SAFETY',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67972',4377,N'CORNERSTONE FINANCIAL',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67974',4305,N'COMMUNITY SERVICE',N'Huntsville',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67976',4371,N'APPLIANCE',N'CLEVELAND',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67979',4370,N'M.P.D. COMMUNITY',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67982',4384,N'OLD HICKORY',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67993',1467,N'FIVE COUNTY',N'Bath',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'67995',4162,N'KANSAS TEACHERS COMMUNITY',N'Pittsburg',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68005',4252,N'FREESTONE',N'Teague',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68008',4314,N'CENTRAL VALLEY FIREFIGHTERS',N'FRESNO',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68010',4286,N'ALPINE COMMUNITY',N'Alpine',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68011',4275,N'CORNER STONE',N'lancaster',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68021',4218,N'COMMUNITY RESOURCE',N'Baytown',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68038',955,N'EVERGREEN',N'PORTLAND',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68042',4196,N'POWERNET',N'TAMPA',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68044',4472,N'HOLY REDEEMER COMMUNITY OF SE WIS.',N'MILWAUKEE',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68046',4409,N'NAVEO',N'SOMERVILLE',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68052',4121,N'CENTER CITY COMMUNITY',N'Buena Park',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68053',4318,N'SIERRA CENTRAL',N'Yuba City',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68057',4414,N'HOMEFIELD',N'NORTH GRAFTON',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68061',4145,N'SOLARITY',N'Yakima',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68062',2458,N'AMERICA''S CHRISTIAN',N'Glendora',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68069',4361,N'CN/IC EMPLOYEES',N'MEMPHIS',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68071',4389,N'ST. THOMAS',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68073',4385,N'HOLLEY',N'PARIS',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68077',4372,N'MARYVILLE MUNICIPAL',N'MARYVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68085',4367,N'KNOXVILLE TVA EMPLOYEES',N'Knoxville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68095',4393,N'EASTMAN',N'Kingsport',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68097',4358,N'HAPPY VALLEY',N'ELIZABETHTON',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68098',4364,N'KINGSTON TVA EMPLOYEES',N'Harriman',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68100',4381,N'SKYLINE',N'NASHVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68101',4351,N'TENNESSEE EMPLOYEES',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68104',4363,N'KINGSPORT PRESS CU',N'KINGSPORT',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68112',4326,N'W. VIRGINIA STATE CONVENTION',N'Hilltop',N'WV',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68113',4151,N'LOCAL NO. 317 I.A.F.F.',N'Charleston',N'WV',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68119',4396,N'VANDERBILT',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68120',4359,N'HARDIN COUNTY HOSPITAL EMPLOYEES',N'Savannah',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68124',4386,N'PATHWAY',N'CLEVELAND',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68126',4357,N'GREENEVILLE WORKS EMPLS. SAV. ASSN.',N'GREENEVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68127',4356,N'GREENEVILLE CITY EMPLOYEES''',N'Greeneville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68135',4376,N'METROPOLITAN TEACHERS',N'NASHVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68137',4426,N'MASS BAY',N'SOUTH BOSTON',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68138',4379,N'HORIZON',N'Kingsport',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68144',4360,N'HURD EMPLOYEES',N'Greeneville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68148',4354,N'ENBRIGHT',N'Nashville',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68150',362,N'IMPACT CREDIT UNION, INC.',N'Clyde',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68153',4397,N'WCG EMPLOYEES',N'MARTIN',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68161',4344,N'A.U.B. EMPLOYEES''',N'Athens',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68165',4398,N'OLIVET BAPTIST',N'Cordova',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68167',4350,N'COLLEGEDALE',N'Collegedale',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68171',4375,N'GATEWAY',N'CLARKSVILLE',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68172',4346,N'KOIN',N'Brentwood',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68173',4355,N'HEALTHCARE SERVICES',N'CHATTANOOGA',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68180',4071,N'BURLINGTON NORTHERN SANTA FE RAILWY',N'CICERO',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68181',4443,N'EDUCATIONAL COMMUNITY ALLIANCE',N'TOLEDO',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68186',1042,N'COLUMBIA COMMUNITY',N'VANCOUVER',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68187',4065,N'BAXTER',N'Vernon Hills',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68190',4481,N'MONTANA EDUCATORS''',N'Missoula',N'MT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68196',4138,N'RED CANOE',N'LONGVIEW',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68203',4126,N'SPOKANE TEACHERS',N'LIBERTY LAKE',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68204',4132,N'PUGET SOUND COOPERATIVE',N'Bellevue',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68205',4127,N'SPOKANE FIREFIGHTERS',N'Spokane',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68210',487,N'TRIANGLE',N'Nashua',N'NH',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68215',2583,N'CORPORATE AMERICA FAMILY',N'Elgin',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68222',4141,N'MILL TOWN',N'EVERETT',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68223',1072,N'QUALSTAR',N'Bothell',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68224',1233,N'AZALEA CITY',N'MOBILE',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68225',251,N'TECH',N'Crown Point',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68226',494,N'STREATOR ONIZED',N'Streator',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68227',2551,N'WESTSTAR',N'Las Vegas',N'NV',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68228',789,N'GREATER NEVADA',N'CARSON CITY',N'NV',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68229',4149,N'TACOMA LONGSHOREMEN',N'Tacoma',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68231',4139,N'STRAIT VIEW',N'PORT ANGELES',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68239',1165,N'HAPO COMMUNITY',N'Richland',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68240',312,N'MINNEQUA WORKS',N'Pueblo',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68241',716,N'DIAMOND',N'Pottstown',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68242',1940,N'MEMBERS ADVANTAGE',N'MICHIGAN CITY',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68244',376,N'FIRST FINANCIAL',N'Albuquerque',N'NM',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68248',622,N'FORUM',N'INDIANAPOLIS',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68251',1514,N'UNITED HERITAGE',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68253',4133,N'MOUNTAINCREST',N'Arlington',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68254',4134,N'CONNECTION',N'Silverdale',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68255',4143,N'PROGRESSIONS',N'Spokane',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68256',461,N'BELCO COMMUNITY CREDIT UNION',N'HARRISBURG',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68257',349,N'CONNECTIONS',N'pocatello',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68259',1440,N'INDIANA MEMBERS',N'INDIANAPOLIS',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68266',2485,N'PIKES PEAK',N'Colorado Spring',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68271',4130,N'TWINSTAR',N'OLYMPIA',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68273',4131,N'EXPRESS',N'Seattle',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68274',1773,N'HORIZONS NORTH',N'Westminster',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68278',1149,N'GESA',N'RICHLAND',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68280',4135,N'BLUE MOUNTAIN',N'COLLEGE PLACE',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68283',4136,N'SPOKANE CITY',N'Spokane',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68284',4128,N'AVISTA CORP.',N'Spokane',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68286',1159,N'TLCU FINANCIAL',N'MISHAWAKA',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68287',580,N'CENTRA',N'COLUMBUS',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68291',4487,N'GEORGIA GUARD',N'MACON',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68293',4146,N'SNO FALLS',N'North Bend',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68295',748,N'CLARITY',N'Nampa',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68296',852,N'WHITE ROSE',N'York',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68297',529,N'3HILL',N'Blue Bell',N'PA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68298',4129,N'TAPCO',N'Fircrest',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68300',1728,N'STAR FINANCIAL',N'Corpus Christi',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68301',555,N'FIRST COMMERCE',N'Tallahassee',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68302',2056,N'FIVE STAR',N'Dothan',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68305',4142,N'RESPONDERS EMERGENCY SERVICES',N'SPOKANE',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68315',4148,N'SEATTLE METROPOLITAN',N'Seattle',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68316',2697,N'BAY CITIES',N'Hayward',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68317',4486,N'EMPOWER',N'WEST ALLIS',N'WI',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6832',893,N'GERBER',N'Fremont',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68321',483,N'CALIFORNIA COMMUNITY',N'Sacramento',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68322',1163,N'CFCU COMMUNITY',N'Ithaca',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68324',705,N'SACO VALLEY',N'Saco',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68328',4335,N'WCLA',N'Olympia',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68331',4147,N'OLYMPIA',N'Olympia',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68332',602,N'GR CONSUMERS',N'Wyoming',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68342',1248,N'HUDSON RIVER COMMUNITY',N'Corinth',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68343',1787,N'ADVANTAGE ONE',N'Morrison',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68349',1005,N'TREMONT',N'Boston',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68353',2714,N'WESTMARK',N'Idaho Falls',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68354',352,N'EATON FAMILY',N'Euclid',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68356',655,N'FIRST IMPERIAL',N'El Centro',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68358',1391,N'BAPTIST',N'San Antonio',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68359',724,N'VELOCITY',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68361',2623,N'IDAHO UNITED',N'Boise',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68366',557,N'SAFE',N'FOLSOM',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68369',884,N'UNITED COMMUNITY',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68371',751,N'AMERICAN LAKE',N'Lakewood',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68373',2235,N'FIRST ENTERTAINMENT',N'Hollywood',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68374',1626,N'GUARDIAN',N'Montgomery',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68376',103,N'FRONTIER',N'Idaho Falls',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68377',742,N'MYPOINT',N'San Diego',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68383',1783,N'TECHNOLOGY',N'SAN JOSE',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68386',449,N'LEWIS CLARK',N'Lewiston',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68389',4491,N'CROW WING POWER',N'Brainerd',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68391',42,N'CAMPUS USA',N'Gainesville',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68394',1846,N'MERIWEST',N'SAN JOSE',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68395',1151,N'HERITAGE COMMUNITY',N'Rancho Cordova',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68402',1484,N'VALLEY FIRST',N'Modesto',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68409',1405,N'CABRILLO',N'San Diego',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68410',591,N'UNITED CONSUMERS',N'INDEPENDENCE',N'MO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68413',3614,N'PACIFIC SERVICE',N'Concord',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68415',3326,N'SOUTHLAND',N'LOS ALAMITOS',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68416',2689,N'ORANGE COUNTY''S',N'Santa Ana',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68417',788,N'FAIRWINDS',N'ORLANDO',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68420',4493,N'DIRECTORS CHOICE',N'ALBANY',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68421',983,N'CREDIT UNION WEST',N'Glendale',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68423',2162,N'IAA',N'Bloomington',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68425',242,N'ILLIANA FINANCIAL',N'CALUMET CITY',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68428',1587,N'PREMIER AMERICA',N'Chatsworth',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68429',972,N'TRAVIS',N'VACAVILLE',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68430',4495,N'LATINO COMMUNITY',N'Durham',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68433',2612,N'AMERICU',N'Rome',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68434',227,N'TEXAS TRUST',N'Mansfield',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68437',2798,N'BELLCO',N'GREENWOOD VILLA',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68439',262,N'RESOURCE ONE',N'Dallas',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6844',894,N'TRAVERSE CATHOLIC',N'TRAVERSE CITY',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68440',2771,N'MEMBERSOURCE',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68441',1056,N'EXCITE',N'San Jose',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68442',1993,N'PEOPLESCHOICE',N'Biddeford',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68443',2473,N'COLORADO',N'Littleton',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68444',46,N'FIRST',N'Chandler',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68445',963,N'POWER FINANCIAL',N'Pembroke Pines',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68447',189,N'EDUCATION FIRST CREDIT UNION, INC.',N'Columbus',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68448',2718,N'CITIZENS EQUITY FIRST',N'Peoria',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68449',2225,N'LONE STAR',N'Dallas',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68451',4455,N'GENESIS EMPLOYEES',N'Zanesville',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68453',760,N'SIKORSKY FINANCIAL',N'Stratford',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68456',1251,N'CREDIT UNION OF SOUTHERN CALIFORNIA',N'Anaheim',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68457',374,N'FINANCIAL PARTNERS',N'DOWNEY',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68458',856,N'VENTURA COUNTY',N'Ventura',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68459',2480,N'USC',N'Los Angeles',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68460',114,N'LBS FINANCIAL',N'Long Beach',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68463',1132,N'NORTH COUNTY',N'San Diego',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68465',1492,N'STAR ONE',N'SUNNYVALE',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68469',4499,N'CATHOLIC UNITED FINANCIAL',N'SAINT PAUL',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68471',556,N'FORT WORTH COMMUNITY',N'Bedford',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68474',208,N'FIRST U.S. COMMUNITY',N'Sacramento',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68476',44,N'TROPICAL FINANCIAL',N'MIRAMAR',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68479',2687,N'MUTUAL SECURITY',N'SHELTON',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68482',4234,N'COASTLIFE',N'Corpus Christi',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68483',1966,N'MATADORS COMMUNITY',N'Northridge',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68485',4341,N'AMERICAN FIRST',N'BREA',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68487',134,N'MEMBERS',N'Stamford',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68490',1029,N'VYSTAR',N'Jacksonville',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68491',1101,N'SILVERADO',N'ANGWIN',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68493',4063,N'WATER AND POWER COMMUNITY',N'LOS ANGELES',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68494',1078,N'FRONTWAVE',N'Oceanside',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68495',226,N'INTREPID',N'Helena',N'MT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68502',957,N'COPPER STATE',N'Phoenix',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68503',367,N'FIRST CITY',N'Pasadena',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68505',2506,N'INTOUCH',N'PLANO',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68508',1722,N'CANALS & TRAILS',N'Lockport',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68510',255,N'COMMUNITY 1ST',N'Ottumwa',N'IA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68511',563,N'CONNEX',N'North Haven',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68513',4503,N'SMART CHOICE',N'CLEVELAND',N'TN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68517',2370,N'VERITY',N'Seattle',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68524',765,N'FIRST COAST COMMUNITY',N'Palatka',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68529',4508,N'LIGHT COMMERCE',N'HOUSTON',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6853',895,N'GREAT PLAINS',N'JOPLIN',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68530',1515,N'FIRST COMMUNITY',N'COQUILLE',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68531',1982,N'MOUNTAIN',N'Waynesville',N'NC',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68536',2065,N'GENISYS',N'AUBURN HILLS',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68540',2249,N'PREMIER ONE',N'San Jose',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68545',2544,N'MY',N'Haslet',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68546',2606,N'EVERGREENDIRECT',N'Tumwater',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68547',4509,N'CATHOLICS UNITED',N'HUTCHINSON',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68549',181,N'MEDIA CITY',N'BURBANK',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68557',853,N'CROSSROADS',N'GOESSEL',N'KS',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68558',1340,N'VANTAGE WEST',N'TUCSON',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68559',253,N'TVA COMMUNITY CREDIT UNION',N'MUSCLE SHOALS',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68560',2659,N'RED ROCKS',N'Littleton',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68561',4467,N'CREDIT UNION OF OHIO',N'Hilliard',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68562',109,N'MEMBERS SOURCE',N'Merrillville',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68563',595,N'DOWNEAST',N'Baileyville',N'ME',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68565',1086,N'ELEVATIONS',N'Boulder',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68567',1339,N'AMERICAN SOUTHWEST',N'Sierra Vista',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68571',1777,N'CREDIT UNION OF GEORGIA',N'Woodstock',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68572',221,N'VIA CREDIT UNION',N'Marion',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68574',1278,N'GENERAL ELECTRIC',N'Cincinnati',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68575',1378,N'MAX',N'Montgomery',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68576',2715,N'KITSAP',N'BREMERTON',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68577',1437,N'INDIANA UNIVERSITY',N'BLOOMINGTON',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68579',2908,N'PATELCO',N'Dublin',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68581',942,N'LGE COMMUNITY',N'Marietta',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68583',3498,N'AVADIAN',N'Birmingham',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68584',1244,N'HARVESTER FINANCIAL',N'Indianapolis',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68586',363,N'HERITAGE SOUTH',N'SYLACAUGA',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68587',4340,N'ASSOCIATED SCHOOL EMPLOYEES',N'Youngstown',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68588',4072,N'CONSUMERS',N'lake Forest',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68589',3009,N'UNITY ONE',N'Fort Worth',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6859',896,N'ARTESIAN',N'Leesburg',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68595',976,N'ALABAMA ONE',N'TUSCALOOSA',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68596',1734,N'FIRST TRUST',N'Michigan City',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68597',4310,N'DECATUR EARTHMOVER',N'Forsyth',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68598',4067,N'EMPEOPLE',N'Moline',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68600',2621,N'MIDFLORIDA',N'Lakeland',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68601',2772,N'WINGS FINANCIAL',N'Apple Valley',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68602',2408,N'MYGEORGIA',N'Gainesville',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68603',4519,N'NUEVA ESPERANZA COMMUNITY',N'Toledo',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68604',3179,N'MAGNIFI FINANCIAL',N'MELROSE',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68605',2605,N'FIRST SERVICE',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68606',2107,N'MOBILITY CREDIT UNION',N'Irving',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68607',1615,N'GEORGIA UNITED',N'DULUTH',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68608',776,N'TEXELL',N'Temple',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68609',637,N'OUR COMMUNITY',N'Shelton',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68613',854,N'ONE NEVADA',N'LAS VEGAS',N'NV',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68615',1328,N'RALLY',N'Corpus Christi',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68616',3408,N'DENVER COMMUNITY CU D.B.A. ZING CU',N'Denver',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68617',2083,N'AUTOTRUCK FINANCIAL',N'Louisville',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68620',2668,N'ALBRIGHT',N'Bethel',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68622',1662,N'SNOCOPE',N'Everett',N'WA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68623',601,N'REVITY',N'Granite City',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68628',978,N'FAMILY SAVINGS',N'Rainbow City',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68629',775,N'BLUE EAGLE',N'Roanoke',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68631',948,N'COMMUNITY FINANCIAL',N'PLYMOUTH',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68632',179,N'LAFCU',N'LANSING',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68638',1972,N'THE SOUTHERN',N'Fayetteville',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68639',1374,N'HAR-CO',N'BEL AIR',N'MD',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68641',949,N'CORNERSTONE COMMUNITY FINANCIAL',N'AUBURN HILLS',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68643',94,N'FIVEPOINT',N'Nederland',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68645',2617,N'SUNCOAST',N'TAMPA',N'FL',N'ISE',8,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68646',1076,N'FINANCIAL PLUS',N'Flint',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68647',2093,N'PARK SIDE FINANCIAL',N'Whitefish',N'MT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68651',2774,N'BLAZE',N'Falcon Heights',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68656',1250,N'OREGON STATE',N'Corvallis',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68657',150,N'NUTMEG STATE FINANCIAL',N'Rocky Hill',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68658',1123,N'FINANCIAL CENTER FIRST',N'Indianapolis',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68659',19,N'AMERICAN EAGLE FINANCIAL',N'EAST HARTFORD',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68660',1504,N'ROGUE',N'Medford',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68661',1763,N'MEMBERS HERITAGE',N'Lexington',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68662',400,N'FINEX',N'East Hartford',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68663',2326,N'ITHINK FINANCIAL',N'Boca Raton',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68664',1529,N'UNION SQUARE',N'Wichita Falls',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68665',1306,N'SUPERIOR CREDIT UNION, INC',N'LIMA',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68666',2657,N'TRANSCEND',N'Louisville',N'KY',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68667',2943,N'SOUTHPOINT FINANCIAL',N'SLEEPY EYE',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68668',835,N'1ST NORTHERN CALIFORNIA',N'Martinez',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68669',2778,N'OREGONIANS',N'Milwaukie',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68670',1235,N'ROBINS FINANCIAL',N'Warner Robins',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68671',1525,N'ENT',N'Colorado Spring',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68672',1392,N'CRANE',N'ODON',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68673',1177,N'SOUTHEASTERN',N'Valdosta',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68674',8,N'CORNERSTONE COMMUNITY',N'FAIRFIELD',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68675',4530,N'JAFARI NO-INTEREST',N'Houston',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68676',2777,N'SMW FINANCIAL',N'LINO LAKES',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68677',1300,N'VOCAL',N'HELENA',N'MT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68678',629,N'KELLOGG COMMUNITY',N'BATTLE CREEK',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68679',995,N'ADVANTAGE ONE',N'Brownstown',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68680',2560,N'AMERICA''S FIRST NETWORK',N'East Hartford',N'CT',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68681',2220,N'AMPLIFY',N'Austin',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68682',1008,N'MY COMMUNITY',N'Midland',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68683',1260,N'COOSA VALLEY',N'Rome',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68684',22,N'MIDWEST MEMBERS',N'Wood River',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68685',664,N'CENTRICITY',N'HERMANTOWN',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68686',685,N'BAYLANDS FAMILY',N'WEST POINT',N'VA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68687',2268,N'ROCK VALLEY',N'Loves Park',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68688',1480,N'RAILROAD',N'IRONDALE',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68689',2737,N'VALLEY FINANCIAL',N'Billings',N'MT',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68690',707,N'PFCU',N'Portland',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68691',2217,N'TRU FI',N'Macclenny',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68693',1334,N'MERRIMACK VALLEY',N'LAWRENCE',N'MA',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68694',2800,N'GULF WINDS',N'PENSACOLA',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68696',1396,N'NORTHERN',N'WATERTOWN',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68697',2860,N'ST. CLOUD FINANCIAL',N'Sartell',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68698',2315,N'GO ENERGY FINANCIAL',N'TUCKER',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'687',129,N'STAGEPOINT',N'Laramie',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6870',897,N'FINANCIAL TRUST',N'Cheektowaga',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68700',416,N'POTLATCH NO. 1 FINANCIAL',N'LEWISTON',N'ID',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68701',1797,N'AUBURN UNIVERSITY',N'AUBURN',N'AL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68702',315,N'ADDITION FINANCIAL',N'Lake Mary',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68703',1439,N'JOLT',N'SAGINAW',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68705',2009,N'HUDSON VALLEY',N'Poughkeepsie',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68706',212,N'ORLANDO',N'Orlando',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68707',4461,N'CARDINAL CREDIT UNION, INC.',N'Mentor',N'OH',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68708',991,N'DORT FINANCIAL',N'GRAND BLANC',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68709',1100,N'CATHOLIC VANTAGE FINANCIAL',N'LIVONIA',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6871',898,N'CHIROPRACTIC',N'FARMINGTON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68710',306,N'SUNMARK',N'Albany',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68711',551,N'HERITAGE FINANCIAL',N'Middletown',N'NY',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68712',534,N'VALLEY STRONG',N'BAKERSFIELD',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68713',468,N'DESERT FINANCIAL',N'Phoenix',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68714',1094,N'MARSHLAND',N'Brunswick',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68716',1990,N'LAUNCH CREDIT UNION',N'MERRITT ISLAND',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68717',2250,N'INTERSTATE ',N'Jesup',N'GA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68718',1134,N'TRUE COMMUNITY',N'Jackson',N'MI',N'ISE',1,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68719',4085,N'PERFECT CIRCLE',N'Hagerstown',N'IN',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68720',1556,N'PANHANDLE',N'Panama City',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68722',2773,N'TRUSTONE FINANCIAL',N'Plymouth',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68723',1554,N'RADIANT',N'Gainesville',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68727',2802,N'CREDIT UNION 1',N'Lombard',N'IL',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68730',283,N'ARIZONA FINANCIAL',N'Phoenix',N'AZ',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68731',3383,N'TOPLINE FINANCIAL',N'Maple Grove',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68732',1023,N'INNOVATIONS FINANCIAL',N'Panama City',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68734',224,N'PEN AIR',N'Pensacola',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68735',102,N'RAVE FINANCIAL ',N'Beaumont',N'TX',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68736',2440,N'ESSENTIAL',N'PLAQUEMINE',N'LA',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68737',1053,N'SPACE AGE',N'Aurora',N'CO',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68738',2391,N'MEMORIAL EMPLOYEES FINANCIAL',N'HOLLYWOOD',N'FL',N'ISE',2,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68739',1432,N'44 NORTH',N'LEBANON',N'OR',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68740',4547,N'ARISE COMMUNITY',N'Minneapolis',N'MN',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'68741',662,N'SESLOC',N'SAN LUIS OBISPO',N'CA',N'ISE',3,2)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6878',899,N'RVA FINANCIAL',N'Richmond',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6885',900,N'PEOPLE FIRST',N'Allentown',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6898',901,N'ACADIAN',N'Lafayette',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'690',130,N'CHATTANOOGA AREA SCHOOLS',N'CHATTANOOGA',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6918',902,N'VAPR',N'San Juan',N'PR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6920',903,N'NEPHI WESTERN EMPLOYEES',N'Nephi',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6930',904,N'CADETS',N'ELMA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6936',905,N'CENTRAL MAINE',N'Lewiston',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6944',906,N'JERSEY CITY POLICE',N'JERSEY CITY',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6949',907,N'NORTHWESTERN',N'Bryan',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6974',908,N'CONSUMERS COOPERATIVE',N'ALLIANCE',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6986',909,N'NORTHERN HILLS',N'STURGIS',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'6992',910,N'COTEAU VALLEY',N'SISSETON',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7000',911,N'ABOUND',N'Radcliff',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7002',912,N'CROSSROADS FINANCIAL',N'Portland',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7020',913,N'M O',N'Huron',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7021',914,N'DACOTAH',N'Rapid City',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7023',915,N'PORT ARTHUR COMMUNITY',N'Port Arthur',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7024',916,N'SOUTH TEXAS REGIONAL',N'Laredo',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7027',917,N'INTERNATIONALITES',N'CARLSBAD',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7039',918,N'MONROE COUNTY TEACHERS',N'Key West',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7045',919,N'JUDICIAL & JUSTICE',N'New Orleans',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7063',921,N'GREAT BASIN',N'Reno',N'NV',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7064',922,N'SUN',N'Maumee',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7066',923,N'EASTERN INDIANA',N'NEW CASTLE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7067',924,N'FT RANDALL',N'WAGNER',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7069',925,N'BLOOMFIELD FIRE AND POLICE',N'Bloomfield',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7072',926,N'ASHLAND COMMUNITY',N'Ashland',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7088',927,N'CINCINNATI INTERAGENCY',N'Cincinnati',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7091',928,N'METRO CU',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7101',929,N'CHENEY',N'CHENEY',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7118',930,N'DUNLOP EMPLOYEES',N'Buffalo',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7126',931,N'ANN ARBOR POSTAL',N'MILAN',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7129',932,N'CHEMCEL',N'BISHOP',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7149',933,N'BISON',N'SHAWNEE',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7151',934,N'OKLAHOMA',N'OKLAHOMA CITY',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7154',935,N'OK MEMBERS FIRST',N'TULSA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'716',131,N'BETHLEHEM 1ST',N'Bethlehem',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7172',936,N'ST. PHILIP''S CHURCH',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7182',937,N'SUMMIT',N'AKRON',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7184',938,N'LIBERTY SAVINGS',N'Jersey City',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7210',939,N'HEMINGFORD COMMUNITY',N'HEMINGFORD',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7217',940,N'SELF RELIANCE NY',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7219',941,N'ST. FRANCIS X',N'Petoskey',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7238',943,N'PHILADELPHIA',N'Philadelphia',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7244',944,N'UNITED BUSINESS & INDUSTRY',N'Plainville',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7253',945,N'EAST BATON ROUGE TEACHERS',N'Baton Rouge',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7256',946,N'COMMUNITY',N'CHICAGO',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7264',947,N'MONEY ONE',N'LARGO',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7289',950,N'THUNDERBOLT AREA',N'MILLVILLE',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7297',951,N'PHEPLE',N'Greensburg',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7301',952,N'UNION',N'FARMERVILLE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7307',953,N'CHEYENNE-LARAMIE COUNTY EMPLOYEES',N'Cheyenne',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7316',954,N'PIMA',N'TUCSON',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7331',956,N'LOUISIANA CATHOLIC',N'Shreveport',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7345',958,N'CARIBE',N'San Juan',N'PR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7346',959,N'SELFRELIANCE',N'Chicago',N'IL',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7361',960,N'BLUE',N'Cheyenne',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7376',961,N'FLEUR-DE-LIS',N'Metairie',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7383',962,N'FAMILY 1ST',N'New Castle',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7392',964,N'FORTRESS',N'Marion',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7397',965,N'ASCEND',N'TULLAHOMA',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7405',966,N'SEG',N'LAUREL',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7415',967,N'UNITED COMMUNITY',N'West Mifflin',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7423',968,N'SCHOFIELD',N'WAHIAWA',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7428',969,N'STRAITS AREA',N'Cheboygan',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7448',970,N'1ST ADVANTAGE',N'Newport News',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7465',973,N'AWAKON',N'ONAWAY',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7471',974,N'MOLOKAI COMMUNITY',N'Kaunakakai',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7473',975,N'ALEXANDRIA T & P',N'ALEXANDRIA',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7482',977,N'TRANSTAR',N'HOUSTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7504',979,N'CONCORD',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7509',980,N'MUSKEGON',N'MUSKEGON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7520',981,N'GULF COAST',N'MOBILE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7524',982,N'C-PLANT',N'PADUCAH',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7531',984,N'HUGHES',N'Tucson',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7532',985,N'TUSCALOOSA V A',N'Tuscaloosa',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7534',986,N'HIALEAH MUNICIPAL EMPLOYEES',N'Hialeah',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7544',987,N'REDSTONE',N'HUNTSVILLE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7546',988,N'RIDGELINE',N'SALT LAKE CITY',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7552',989,N'HARRIS COUNTY',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7557',990,N'GLENDALE',N'Glendale',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7573',992,N'ARLINGTON COMMUNITY',N'Arlington',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7590',993,N'GREATER TEXAS',N'AUSTIN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7599',994,N'HURON AREA EDUCATION',N'HURON',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7608',996,N'OCEANAIR',N'Oxnard',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'761',132,N'SKY',N'Livingston',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7610',997,N'SUNFLOWER COMMUNITY',N'Marysville',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7628',998,N'SOUTHEAST MICHIGAN STATE EMPLOYEES',N'West Bloomfield',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7633',999,N'WARREN MUNICIPAL',N'WARREN',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7641',1000,N'OZARK',N'Poplar Bluff',N'MO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7644',1001,N'GOGEBIC COUNTY',N'BESSEMER',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7652',1002,N'WESTPORT',N'Westport',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7656',1003,N'OLEAN TEACHERS'' AND POSTAL',N'OLEAN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7662',1004,N'GARDEN CITY TEACHERS',N'GARDEN CITY',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7672',1006,N'BARAGA COUNTY',N'LANSE',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7674',1007,N'YOUR LEGACY',N'Tiffin',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7677',1009,N'W T N M ATLANTIC',N'DENVER CITY',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7684',1010,N'JPFCE',N'Jackson',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7688',1011,N'PARTNERS 1ST',N'Fort Wayne',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'77',17,N'SERVICE FIRST',N'Sioux Falls',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'770',133,N'COMMUNITY RESOURCE',N'Latham',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7700',1012,N'ARKANSAS AM & N COLLEGE',N'PINE BLUFF',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7715',1013,N'EM',N'MESA',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7716',1014,N'GLENDIVE BN',N'GLENDIVE',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7717',1015,N'INNER LAKES',N'WESTFIELD',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7722',1016,N'HOMEBASE',N'Prince George',N'VA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7723',1017,N'360',N'Windsor Locks',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7724',1018,N'JESSOP COMMUNITY',N'Washington',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7731',1019,N'METHODIST HOSPITAL EMPLOYEES',N'Dallas',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7748',1020,N'CASCADE',N'Kent',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7770',1021,N'THINKWISE',N'San Bernardino',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7776',1022,N'LOOKOUT',N'Pocatello',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7790',1024,N'RALEIGH COUNTY',N'BECKLEY',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7817',1025,N'SEA AIR',N'Seal Beach',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7821',1026,N'WEST BRANCH VALLEY',N'WILLIAMSPORT',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7822',1027,N'CANNON',N'CLOVIS',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7825',1028,N'EXCEL',N'Norcross',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7835',1030,N'RIZE',N'EL MONTE',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7840',1031,N'TRULIANT',N'Winston Salem',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7842',1032,N'NORWIN TEACHERS',N'North Huntingdo',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7844',1033,N'FISHER SCIENTIFIC EMPLOYEES',N'PITTSBURGH',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7846',1034,N'SOLUTIONS',N'ELMIRA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'785',135,N'UNIVERSAL',N'Huntington',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7870',1035,N'FIRST FLIGHT',N'CARY',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7873',1036,N'MARQUETTE COMMUNITY',N'MARQUETTE',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7875',1037,N'UKRAINIAN SELFRELIANCE',N'Feasterville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7877',1038,N'FOURTH WARD',N'amite',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'79',18,N'CAMPUS',N'Baton Rouge',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7910',1039,N'WEST MICHIGAN POSTAL SERVICE',N'MUSKEGON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7916',1040,N'NECHES',N'Port Neches',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7925',1041,N'GREAT ERIE',N'ORCHARD PARK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'794',136,N'TRI BORO',N'Munhall',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'795',137,N'HUNTINGTON WEST VA FIREMENS',N'Huntington',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7955',1043,N'BRAGG MUTUAL',N'Fayetteville',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7958',1044,N'LAKEHURST NAVAL',N'LAKEHURST NAEC',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7960',1045,N'WHITE SANDS',N'LAS CRUCES',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7970',1046,N'ST. THOMAS',N'Charlotte Amali',N'VI',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'798',138,N'TRANSIT AUTHORITY DIVISION B',N'New York',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7989',1047,N'CHRISTIANSTED',N'CHRISTIANSTED',N'VI',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7992',1048,N'AFL CIO EMPLOYEES',N'Washington',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'7999',1049,N'TELCO ROSWELL NEW MEXICO',N'ROSWELL',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8000',1050,N'UKRAINIAN SELFRELIANCE MICHIGAN',N'Warren',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8001',1051,N'MVP POSTAL AND PRINTING',N'GAITHERSBURG',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8006',1052,N'STATE AGENCIES',N'SHREVEPORT',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8037',1054,N'FORT PECK COMMUNITY',N'Fort Peck',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8039',1055,N'DAKOTA STAR',N'RAPID CITY',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8052',1057,N'MISSISSIPPI DHS',N'JACKSON',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8059',1058,N'LATITUDE 32',N'CHARLESTON',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8069',1059,N'FREDERIKSTED',N'Frederiksted',N'VI',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8074',1060,N'RAPIDES GENERAL HOSPITAL EMPL',N'ALEXANDRIA',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8077',1061,N'NORTHWEST CONSUMERS',N'TRAVERSE CITY',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'808',139,N'U.S. EAGLE',N'Albuquerque',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8080',1062,N'MAC',N'Fairbanks',N'AK',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8097',1063,N'TRICOUNTY',N'Harlowton',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8100',1064,N'ALASKA AIR GROUP',N'SEATAC',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8110',1065,N'NEW CUMBERLAND',N'NEW CUMBERLAND',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8111',1066,N'RANDOLPH-BROOKS',N'UNIVERSAL CITY',N'TX',N'ISE',8,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8113',1067,N'WESTEDGE',N'BELLINGHAM',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8116',1069,N'TEACHERS',N'SMITHTOWN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8118',1070,N'PATH',N'Jersey City',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8119',1071,N'KENOWA COMMUNITY',N'WYOMING',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8129',1073,N'MOUNTAIN WEST',N'Butte',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8132',1074,N'SAFEWAY',N'Spokane',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'81402',4066,N'MEMBERSALLIANCE',N'Rockford',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8141',1075,N'MUSKEGON ST JOSEPH',N'MUSKEGON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'81416',4068,N'STALEY',N'DECATUR',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'81553',4069,N'EFFINGHAM HIGHWAY',N'Effingham',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'81688',4070,N'UNITED EQUITY',N'Decatur',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8169',1077,N'SOARION',N'SAN ANTONIO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'817',140,N'ROCHESTER & MONROE CO EMP',N'Rochester',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'818',141,N'GOWANDA AREA',N'GOWANDA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8187',1079,N'AMERICAN UNITED',N'West Jordan',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82',20,N'FIRST ATLANTIC',N'EATONTOWN',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8212',1080,N'BREAKWATER',N'HOUGHTON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8216',1081,N'QUINDARO HOMES',N'Kansas City',N'KS',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8218',1082,N'CENTRAL ONE',N'Shrewsbury',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8229',1083,N'FIRST CHOICE',N'New Castle',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8230',1084,N'TECHNICOLOR',N'Burbank',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8237',1085,N'SOUTH TEXAS',N'McALLEN',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82504',4073,N'BOISE FIRE DEPARTMENT',N'Boise',N'ID',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82527',4074,N'MINI-CASSIA EMPL.',N'Burley',N'ID',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82547',4075,N'MEMBERS PREFERRED',N'IDAHO FALLS',N'ID',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8255',1087,N'HOBART IND SCHOOL EMPLOYEES',N'HOBART',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8261',1088,N'MATTEL',N'El Segundo',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82762',4076,N'HAMMOND FIREFIGHTERS ASSN.',N'Hammond',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82769',4079,N'PROFESSIONAL POLICE OFFICERS',N'Indianapolis',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82770',4080,N'INDIANAPOLIS POST OFFICE',N'Indianapolis',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82772',4081,N'EAST CHICAGO FIREMEN''S',N'East Chicago',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82789',4083,N'WESTERN INDIANA CREDIT UNION',N'Sullivan',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82791',4084,N'BEACON',N'Wabash',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82793',4086,N'KEMBA INDIANAPOLIS',N'Indianapolis',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'82794',4087,N'INTERRA',N'Goshen',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8290',1089,N'THE PEOPLE''S',N'AMARILLO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8298',1090,N'GOLDEN TRIANGLE',N'Groves',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8299',1091,N'ESTACADO',N'HOBBS',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8313',1092,N'COMMONROOTS',N'CRANBERRY TOWNS',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8317',1093,N'CUTTING EDGE',N'Milwaukie',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'832',142,N'UPPER CUMBERLAND',N'Crossville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8333',1095,N'TOWER',N'LAUREL',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8339',1096,N'PATERSON POLICE',N'Paterson',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8344',1097,N'KBR HERITAGE',N'HOUSTON',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8349',1098,N'SHORE TO SHORE COMMUNITY',N'TRENTON',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8367',1099,N'GARDINER',N'Gardiner',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'838',143,N'APS',N'Charleroi',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'839',144,N'FIRSTENERGY CHOICE',N'GREENSBURG',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'841',145,N'ALLEGHENY CENTRAL',N'Dunbar',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8413',1102,N'PORT ARTHUR TEACHERS',N'PORT ARTHUR',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8418',1103,N'STRIP STEEL COMMUNITY',N'WEIRTON',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8428',1104,N'ADVANTAGE PLUS',N'POCATELLO',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8433',1105,N'MERIDIAN MUTUAL',N'Meridian',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8435',1106,N'KO`OLAU',N'KAILUA',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8442',1107,N'MY PENSACOLA',N'PENSACOLA',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8445',1108,N'JACKSON AREA',N'Jackson',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'845',146,N'BUFFALO CONRAIL',N'Cheektowaga',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8474',1109,N'WILLOW ISLAND',N'Saint Marys',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8475',1110,N'OTERO',N'Alamogordo',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8486',1111,N'TOWN & COUNTRY',N'SOUTH PORTLAND',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'850',147,N'VALLEY',N'Brownsville',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'851',148,N'CHELSEA EMPLOYEES',N'CHELSEA',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8512',1112,N'A C M G',N'Solvay',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8523',1113,N'CACL',N'Pottsville',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8530',1114,N'KRAFTMAN',N'Bastrop',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'854',149,N'SEASONS',N'Middletown',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8540',1115,N'R-S BELLCO',N'New Brighton',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8548',1116,N'ENCOMPASS',N'Tipton',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8549',1117,N'CECIL COUNTY SCHOOL EMPLOYEES',N'ELKTON',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8550',1118,N'FREEDOM OF MARYLAND',N'Bel Air',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8554',1119,N'FIRST FINANCIAL OF MARYLAND',N'Sparks',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'856',151,N'MOUNTAIN STAR',N'El Paso',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'857',152,N'AFFINITY',N'Basking Ridge',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'858',153,N'KENMORE N. Y. TEACHERS',N'Buffalo',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8585',1120,N'GENCO',N'Waco',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8588',1121,N'COMMUNITY 1ST',N'Miles City',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8593',1122,N'WATER''S EDGE',N'Biloxi',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'86063',4122,N'POSTCITY FINANCIAL',N'Long Beach',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8609',1124,N'EDU',N'New Castle',N'DE',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8611',1125,N'CAPSTONE',N'ALISO VIEJO',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8616',1126,N'ST. ANTHONY OF PADUA',N'Fall River',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8618',1127,N'WILLIAMSVILLE',N'AMHERST',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8625',1128,N'ERIE FIREFIGHTERS',N'Erie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8626',1129,N'ERIE POLICE',N'Erie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8642',1130,N'HOWARD COUNTY EDUCATION',N'Ellicott City',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8654',1131,N'TIPPECANOE',N'LAFAYETTE',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'86752',4123,N'CLARK COUNTY',N'LAS VEGAS',N'NV',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'86755',4124,N'FINANCIAL HORIZONS',N'HAWTHORNE',N'NV',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'86756',4125,N'PLUS',N'LAS VEGAS',N'NV',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8687',1135,N'NORTH EAST WELCH',N'North East',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8693',1136,N'NIAGARA''S CHOICE',N'Niagara Falls',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8694',1137,N'SINGING RIVER',N'MOSS POINT',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8701',1138,N'ELECTRICAL',N'ARVADA',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8709',1139,N'LAKESHORE',N'Muskegon',N'MI',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'871',154,N'ZELLCO',N'BOGALUSA',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8715',1140,N'1ST COMMUNITY',N'SAN ANGELO',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'872',155,N'MIAMI FIREFIGHTERS',N'MIAMI',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8725',1141,N'COLORAMO',N'Grand Junction',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8733',1142,N'SUNLIGHT',N'CODY',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8749',1143,N'SNAKE RIVER',N'Twin Falls',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8752',1144,N'SIOUX VALLEY COOP',N'Watertown',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8774',1145,N'MCKESSON & HEALTHCARE PROVIDERS',N'Martinez',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8791',1146,N'METRO COMMUNITY',N'Huntington',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8797',1147,N'WRIGHT PATMAN CONGRESSIONAL',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8801',1148,N'AVANTI',N'WATERTOWN',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8812',1150,N'RIVER VALLEY COMMUNITY',N'CAMDEN',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8822',1152,N'DOVER-PHILA',N'Dover',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8825',1153,N'ALLEG-KISKI POSTAL',N'NEW KENSINGTON',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8828',1154,N'NORFOLK COMMUNITY',N'Norfolk',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8831',1155,N'BLAIR COUNTY',N'ALTOONA',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'884',156,N'ATT-WYO CORRECTIONAL EMPLOYEES',N'Attica',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8840',1156,N'ONE SOUTH',N'NATCHEZ',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8854',1157,N'UKRAINIAN',N'ROCHESTER',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8858',1158,N'PAMCEL COMMUNITY',N'Pampa',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'887',157,N'BILLINGS',N'Billings',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'888',158,N'COXSACKIE CORRECTIONAL EMP.',N'Coxsackie',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8881',1160,N'FERGUS',N'Lewistown',N'MT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8885',1161,N'TRI STATE AREA',N'Hoosick Falls',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8890',1162,N'DEPARTMENT OF PUBLIC SAFETY',N'OKLAHOMA CITY',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8903',1164,N'NEW CASTLE BELLCO',N'NEW CASTLE',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8905',1166,N'SUNBELT',N'Hattiesburg',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8913',1167,N'ERIE CITY EMPLOYEES',N'Erie',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8915',1168,N'ST. MICHAELS FALL RIVER',N'Fall River',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8920',1169,N'PAN AMOCO',N'METAIRIE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8921',1170,N'WILLIS KNIGHTON',N'SHREVEPORT',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8922',1171,N'OUTREACH',N'HERMITAGE',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8925',1172,N'ADVANTAGEPLUS OF INDIANA',N'Terre Haute',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8936',1173,N'SEBASTICOOK VALLEY',N'PITTSFIELD',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8940',1174,N'MODERN EMPLOYEES',N'OWENSBORO',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8943',1175,N'MINOT AREA SCHOOLS',N'MINOT',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8944',1176,N'HOLY FAMILY PARMA',N'Parma',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8962',1178,N'VELMA',N'VELMA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8967',1179,N'DAVISON EMPLOYEES',N'SULPHUR',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8975',1180,N'ALCO',N'WELLSVILLE',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8987',1181,N'ARKANSAS HEALTH CENTER',N'BENTON',N'AR',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8988',1182,N'OWENSBORO',N'Owensboro',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'8993',1183,N'PUBLIC SERVICE PLAZA',N'Newark',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'90',21,N'POST GAZETTE',N'CLINTON',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'900',159,N'AMBRIDGE AREA',N'Baden',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9000',1184,N'NICKEL STEEL',N'lima',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9003',1185,N'MARKET USA',N'LAUREL',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9007',1186,N'CLEARVIEW',N'Moon Township',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9042',1187,N'WESTMORELAND WATER',N'GREENSBURG',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9044',1188,N'COLUMBUS CLUB',N'San Fernando',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9071',1189,N'DIRECT',N'Needham',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9075',1190,N'HOBOKEN N J POLICE',N'HOBOKEN',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9082',1191,N'PUBLIC SERVICE H C EMPLOYEES',N'Brick',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9089',1192,N'UNIWYO',N'Laramie',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'909',160,N'PRR SOUTH FORK',N'South Fork',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9090',1193,N'FIRST OKLAHOMA',N'TULSA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9093',1194,N'ROSWELL COMMUNITY',N'Roswell',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9094',1195,N'WYHY',N'CHEYENNE',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9095',1196,N'HANSCOM',N'Hanscom AFB',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9097',1197,N'ONE VISION',N'Clarksville',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9099',1198,N'PINAL COUNTY',N'Casa Grande',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9102',1199,N'F.F.E.',N'FARGO',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9105',1200,N'SOUTHERNMOST',N'Key West',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9106',1201,N'CLASS ACT',N'Louisville',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9107',1202,N'SOUTHERN CHAUTAUQUA',N'Lakewood',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9109',1203,N'FAMILIES AND SCHOOLS TOGETHER',N'Hanford',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'911',161,N'STAR USA',N'Charleston',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9115',1204,N'HOTEL AND TRAVEL INDUSTRY',N'Honolulu',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9119',1205,N'MERCED SCHOOL EMPLOYEES',N'MERCED',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9145',1206,N'PUGET SOUND REFINERY',N'Anacortes',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9146',1207,N'B-M S',N'New Brunswick',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9148',1208,N'PATHFINDER',N'Casper',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'916',162,N'ELIZABETH (N.J.) FIREMEN''S',N'Elizabeth',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9160',1209,N'MERIDIAN TRUST',N'Cheyenne',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9163',1210,N'ELEVATE',N'BRIGHAM CITY',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9164',1211,N'CARTER',N'SPRINGHILL',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9189',1212,N'TOLEDO METRO',N'TOLEDO',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9194',1213,N'HEARTLAND AREA',N'OMAHA',N'NE',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9208',1214,N'OC',N'GARFIELD HTS',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9213',1215,N'CENTRAL KEYSTONE',N'Sunbury',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9214',1216,N'SOUTHERN',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9219',1217,N'TRAILNORTH',N'Ticonderoga',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9229',1218,N'NEIGHBORS',N'BATON ROUGE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9230',1219,N'CERTIFIED',N'El Monte',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9237',1220,N'RUTGERS',N'New Brunswick',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9246',1221,N'PASADENA MUNICIPAL',N'Pasadena',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9247',1222,N'PIONEER',N'MOUNTAIN HOME',N'ID',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9248',1223,N'UNITED MEMBERS',N'TULSA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'926',163,N'RIVER CITY',N'San Antonio',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9260',1224,N'L & N',N'Louisville',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9287',1225,N'MIAMI',N'MIAMI',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9288',1226,N'PORTLAND LOCAL NO 8',N'Portland',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9289',1227,N'LOWER COLUMBIA LONGSHOREMEN',N'LONGVIEW',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9292',1228,N'CONSOLIDATED',N'PORTLAND',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9293',1229,N'YOLO',N'Woodland',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9296',1230,N'SUN COMMUNITY',N'El Centro',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'930',164,N'AMNH EMPLOYEES',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9300',1231,N'BOSSIER',N'BOSSIER CITY',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9310',1232,N'DELTA REFINING CO EMP',N'Memphis',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'932',165,N'OTEEN V. A.',N'ASHEVILLE',N'NC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9327',1234,N'CASCO',N'Gorham',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9335',1236,N'OU',N'NORMAN',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9348',1237,N'KATAHDIN',N'Millinocket',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9349',1238,N'OTIS',N'Jay',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9358',1239,N'NEW YORK TIMES EMPLOYEES',N'NEW YORK',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9370',1240,N'EVERYONE''S',N'Tucumcari',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9373',1241,N'AMERICA''S CREDIT UNION, A',N'DuPont',N'WA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9376',1242,N'SOUTH COAST ILWU',N'NORTH BEND',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9381',1243,N'GATHER',N'Lihue',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9398',1245,N'LU 354 I B E W',N'SALT LAKE CITY',N'UT',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9408',1246,N'SAVANNAH SCHOOLS',N'SAVANNAH',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9411',1247,N'HAMILTON HORIZONS',N'Hamilton',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9413',1249,N'MERCER COUNTY W VA TEACHERS',N'Bluefield',N'WV',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'943',166,N'SOMERVILLE MASS FIREFIGHTERS',N'SOMERVILLE',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9441',1252,N'METRO NORTH',N'JACKSONVILLE',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9457',1253,N'E M O T',N'Abilene',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'946',167,N'MUSKOGEE',N'MUSKOGEE',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9469',1254,N'MARISOL',N'Phoenix',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9475',1255,N'APL',N'Laurel',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9476',1256,N'WEST PENN P&P',N'BEAVER',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9479',1257,N'VA PITTSBURGH EMPLOYEES',N'Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'948',168,N'NUSENDA',N'ALBUQUERQUE',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9483',1258,N'IBEW & UNITED WORKERS',N'PORTLAND',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9486',1259,N'NEXT STEP',N'Troy',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9496',1262,N'SP TRAINMEN',N'Houston',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9497',1263,N'SHAWNEE TVA EMPLOYEES',N'WEST PADUCAH',N'KY',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9500',1264,N'CUMBERLAND COUNTY',N'Falmouth',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95008',4309,N'COMMUNITY STAR',N'Elyria',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9501',1265,N'GUERNSEY COMMUNITY',N'GUERNSEY',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95042',4315,N'BLACKHAWK AREA',N'Savanna',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95052',4316,N'SOUTH BAY',N'Redondo Beach',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95071',4319,N'CAHP',N'SACRAMENTO',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95072',4320,N'EL MONTE COMMUNITY',N'EL MONTE',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95073',4321,N'MID-CITIES',N'Compton',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'951',169,N'POSTAL FAMILY',N'FARGO',N'ND',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95107',4327,N'OHIO EDUCATIONAL',N'Cleveland',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9517',1266,N'CHEN-DEL-O',N'FRANKLIN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9518',1267,N'EASTMILL',N'EAST MILLINOCKE',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9522',1269,N'MIDWEST COMMUNITY',N'Defiance',N'OH',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9527',1270,N'F A B CHURCH',N'Savannah',N'GA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9532',1271,N'WESTCHESTER SCHOOLS''',N'Rye Brook',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9537',1272,N'GREATER NIAGARA',N'NIAGARA FALLS',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9554',1273,N'COUNCILL',N'NORMAL',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9555',1274,N'NEW JERSEY COMMUNITY',N'MOORESTOWN',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9556',1275,N'CLEARPATH',N'Burbank',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9566',1276,N'EDDY',N'CARLSBAD',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95742',4334,N'POST OFFICE CU OF MD, INC.',N'Baltimore',N'MD',N'ISE',1,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95786',4336,N'NORTH COAST CREDIT UNION',N'FAIRVIEW PARK',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95802',4337,N'TRUPARTNER',N'CINCINNATI',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9582',1277,N'BRIDGEPORT POLICE',N'BRIDGEPORT',N'CT',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95821',3017,N'TALERIS',N'Independence',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'95826',3716,N'CHICAGO POST OFFICE EMPLOYEES',N'Chicago',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9589',1279,N'BARKSDALE',N'BARKSDALE AFB',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9590',1280,N'ESPEECO',N'Bakersfield',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'960',170,N'PACIFIC CREST',N'KLAMATH FALLS',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9604',1281,N'FIRST HERITAGE',N'Corning',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96066',4400,N'SERVICES',N'NAPERVILLE',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9607',1282,N'APCI',N'Lehigh Valley',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96071',4401,N'ABBOTT LABORATORIES',N'Gurnee',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96084',505,N'BOULDER DAM',N'BOULDER CITY',N'NV',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9613',1283,N'SARGENT',N'WASHINGTON',N'DC',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9622',1284,N'FORGE',N'Upper Darby',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9639',1285,N'F A A',N'MEMPHIS',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'964',171,N'SOUTHWEST',N'Albuquerque',N'NM',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9643',1286,N'MERITUS',N'LAFAYETTE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9644',1287,N'CIT-CO',N'Sheridan',N'WY',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9662',1288,N'ROCKET CITY',N'HUNTSVILLE',N'AL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96652',4444,N'540 I.B.E.W.',N'Massillon',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96658',4445,N'TOWPATH',N'Fairlawn',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96660',4446,N'ANTIOCH',N'Cleveland',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96672',4447,N'BUCKEYE STATE',N'Akron',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96674',4448,N'SOUTHEASTERN OHIO',N'Cambridge',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96691',4450,N'WRIGHT-DUNBAR AREA',N'Dayton',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96699',4451,N'CHRISTIAN FAMILY',N'NORTH CANTON',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'967',172,N'GOLD COAST',N'PALM SPRINGS',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96706',4452,N'FAITH COMMUNITY UNITED',N'CLEVELAND',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96707',4453,N'FALLS CATHOLIC',N'Cuyahoga Falls',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96711',4454,N'MEMBERS CHOICE',N'GREENVILLE',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96719',4456,N'GORMAN-RUPP & ASSOCIATES',N'Mansfield',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96722',4457,N'GREATER CINCINNATI SCHOOL',N'Cincinnati',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96723',4458,N'FIREFIGHTERS COMMUNITY CU',N'Cleveland',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96737',4459,N'KYGER CREEK',N'Cheshire',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96750',4460,N'FRIENDS AND FAMILY CREDIT UNION INC',N'MASSILLON',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96755',4462,N'MYUSA',N'Middletown',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96756',4463,N'MILLSTREAM AREA',N'Findlay',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9676',1289,N'LINTON',N'TONAWANDA',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96761',4464,N'AURGROUP',N'Fairfield',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96768',4465,N'PSE CREDIT UNION, INC.',N'Parma',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96770',4466,N'PRODUCERS EMPLOYEES''',N'Columbus',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96796',4468,N'TAPPAN COMMUNITY CREDIT UNION, INC.',N'MANSFIELD',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96799',4469,N'U.P.S.',N'Cincinnati',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96808',4470,N'WIREMEN''S',N'Parma',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9681',1290,N'MORRISONS COVE 1ST',N'ROARING SPRING',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'96821',3003,N'HEEKIN CAN EMPL',N'CINCINNATI',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97052',1422,N'FIREFIGHTERS',N'Indianapolis',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97053',653,N'MAUMEE VALLEY',N'Toledo',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97059',3066,N'EARTHMOVER',N'Aurora',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97063',3712,N'JACKSON COUNTY CO-OP',N'SEYMOUR',N'IN',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97066',3514,N'ST JOE VALLEY',N'ST MARIES',N'ID',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97068',3260,N'CHRISTIAN COMMUNITY',N'SAN DIMAS',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97069',3964,N'SAN FRANCISCO FIRE',N'San Francisco',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97071',2278,N'MONTEREY',N'MONTEREY',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97073',1268,N'NORTHWEST CHRISTIAN',N'NAMPA',N'ID',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97076',971,N'WINSOUTH',N'GADSDEN',N'AL',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97077',3169,N'EMERALD CREDIT UNION, INC.',N'GARFIELD HTS',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97078',3023,N'BSE',N'Cleveland',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97079',3055,N'POSTAL FAMILY CREDIT UNION, INC.',N'CINCINNATI',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97084',3080,N'DUPAGE',N'Naperville',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97085',920,N'SILVER STATE SCHOOLS',N'Las Vegas',N'NV',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97086',3076,N'ABRI',N'Romeoville',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97089',4231,N'MCT',N'Port Neches',N'TX',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97093',1133,N'SAFEAMERICA',N'Pleasanton',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97094',2999,N'ACHIEVE',N'ELYRIA',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97095',2923,N'COMMONWEALTH',N'Bourbonnais',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97096',3322,N'FRESNO POLICE DEPARTMENT',N'fresno',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97097',2558,N'ACCESS',N'BROADVIEW',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97098',1376,N'EASTEX',N'Evadale',N'TX',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97100',3064,N'AURORA POLICEMEN',N'AURORA',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97101',341,N'GLENDALE AREA SCHOOLS',N'GLENDALE',N'CA',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97102',2319,N'LATAH',N'MOSCOW',N'ID',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97103',554,N'ALLIANCE',N'Lubbock',N'TX',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97104',3133,N'IH CREDIT UNION, INC.',N'SPRINGFIELD',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97105',2978,N'DAY-MET',N'Dayton',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97106',385,N'GENFED FINANCIAL',N'Akron',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97107',1356,N'UNITED TEXAS',N'San Antonio',N'TX',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97108',2844,N'NORTHWEST COMMUNITY',N'MORTON GROVE',N'IL',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97109',816,N'RIVER VALLEY',N'Miamisburg',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97110',3421,N'ROCKY MOUNTAIN',N'Helena',N'MT',N'ISE',3,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97111',3966,N'ABBEY',N'Vandalia',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97112',4230,N'INVESTEX',N'Humble',N'TX',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'97113',2048,N'KH CREDIT UNION, INC.',N'Dayton',N'OH',N'ISE',2,3)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9715',1291,N'EMPLOYEES',N'TULSA',N'OK',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9723',1292,N'N.J.T. EMPLOYEES',N'Waldwick',N'NJ',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9759',1293,N'FORTERA',N'Clarksville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9776',1294,N'N.F.G. #2',N'WARREN',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9777',1295,N'EWEB EMPLOYEES',N'Eugene',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9778',1296,N'REDLANDS CITY EMPLOYEES',N'Redlands',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9788',1297,N'EGLIN',N'Fort Walton Bea',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9799',1298,N'ROCKET',N'McGregor',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'98',23,N'NIAGARA FALLS TEACHERS',N'Niagara Falls',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9805',1299,N'ARLINGTON MUNICIPAL',N'ARLINGTON',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9810',1301,N'FIDELIS CATHOLIC',N'Arvada',N'CO',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9812',1302,N'NORTH TOWNS',N'Clarence',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9822',1303,N'SANTO CHRISTO',N'FALL RIVER',N'MA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9823',1304,N'BEVERLY HILLS CITY EMPLOYEES',N'BEVERLY HILLS',N'CA',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9843',1305,N'FRIONA TEXAS',N'Friona',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'986',173,N'URE',N'East Pittsburgh',N'PA',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9871',1307,N'SAINT LAWRENCE',N'Ogdensburg',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9873',1308,N'KNOXVILLE FIREFIGHTERS',N'Knoxville',N'TN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9877',1309,N'EMERALD EMPIRE',N'Springfield',N'OR',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'988',174,N'AUBURN COMMUNITY',N'AUBURN',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9880',1310,N'ANDERSON COUNTY',N'Palestine',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9888',1311,N'HB TELCO',N'Huron',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9893',1312,N'BEE',N'SALISBURY',N'MD',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9897',1313,N'SOUTHEASTERN ARIZONA',N'Douglas',N'AZ',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9907',1314,N'DAKOTA RAIL LINE',N'HURON',N'SD',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9915',1315,N'MCCOY',N'ORLANDO',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9919',1316,N'CAPITAL AREA',N'Augusta',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9923',1317,N'SOLIDARITY COMMUNITY',N'Kokomo',N'IN',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9924',1318,N'WAILUKU',N'KAHULUI',N'HI',N'ISE',3,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9931',1319,N'BAYOU',N'BATON ROUGE',N'LA',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9943',1320,N'KSW',N'WATERVILLE',N'ME',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9952',1321,N'I R E B',N'Brooklyn',N'NY',N'ISE',1,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9971',1322,N'SANTA FE',N'Amarillo',N'TX',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9974',1323,N'SHELBY/BOLIVAR COUNTY',N'BOYLE',N'MS',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9976',1324,N'GROW FINANCIAL',N'TAMPA',N'FL',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9986',1325,N'REV',N'CHARLESTON',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9988',1326,N'SAFE',N'Sumter',N'SC',N'ISE',2,1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter],[Detail_Id],[Name],[CityOrSite],[State],[Model],[RegionCode],[CharterType]) VALUES (N'9994',1327,N'HEALTHNET',N'Cordova',N'TN',N'ISE',2,1)
+SET IDENTITY_INSERT [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] OFF
+PRINT(N'Operation applied to 4534 rows out of 4534')
+
+PRINT(N'Add rows to [dbo].[ASSESSMENT_DETAIL_FILTER_DATA]')
+SET IDENTITY_INSERT [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ON
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter], [Detail_Id], [Name], [CityOrSite], [State], [Model], [RegionCode], [CharterType]) VALUES (N'24965', 3482, N'TENDTO', N'Erie', N'PA', N'ISE', 1, 1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter], [Detail_Id], [Name], [CityOrSite], [State], [Model], [RegionCode], [CharterType]) VALUES (N'24967', 749, N'HARVESTERS', N'Cantonment', N'FL', N'ISE', 2, 1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter], [Detail_Id], [Name], [CityOrSite], [State], [Model], [RegionCode], [CharterType]) VALUES (N'24968', 4550, N'SOUL COMMUNITY', N'Austell', N'GA', N'ISE', 2, 1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter], [Detail_Id], [Name], [CityOrSite], [State], [Model], [RegionCode], [CharterType]) VALUES (N'24969', 3332, N'ALTURA', N'Riverside', N'CA', N'ISE', 3, 1)
+INSERT INTO [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] ([Charter], [Detail_Id], [Name], [CityOrSite], [State], [Model], [RegionCode], [CharterType]) VALUES (N'68742', 1838, N'TEAMSTERS COUNCIL #37', N'Portland', N'OR', N'ISE', 3, 2)
+SET IDENTITY_INSERT [dbo].[ASSESSMENT_DETAIL_FILTER_DATA] OFF
+PRINT(N'Operation applied to 5 rows out of 5')
+
+PRINT(N'Add rows to [dbo].[PARAMETERS]')
+SET IDENTITY_INSERT [dbo].[PARAMETERS] ON
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5693, N'[C.4: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5694, N'[C.4.a: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5695, N'[C.4.b: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5696, N'[C.5: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5697, N'[C.3: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5698, N'[D.3.b: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5699, N'[D.2.a: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5700, N'[D.2.b: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5701, N'[D.3.a: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5702, N'[D.3: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5703, N'[D.3.a; Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5704, N'[D: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5705, N'[F.1: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5706, N'[F.2: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5707, N'[F.2.a: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5708, N'[F.2.e: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5709, N'[F.2.e.i: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5710, N'[F.2.e.ii: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5711, N'[F.3: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5712, N'[F.4: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5713, N'[A: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5714, N'[F.2.d: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5715, N'[F.2.c: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5716, N'[C.2.a: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5717, N'[C.1: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5718, N'[C.2: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5719, N'[10]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5720, N'[C.1.a: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5721, N'[D.2: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5722, N'[D.4: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5723, N'[B.2: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5724, N'[C.1.b: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5725, N'[F.2.b: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5726, N'[1.d: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5727, N'[E: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5728, N'[E.1: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5729, N'[E.2: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5730, N'[E.2.a: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5731, N'[E.2.b: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5732, N'[E.3: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5733, N'[D.1.d: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5734, N'[D.2.c: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5735, N'[D.1.b: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5736, N'[D.1.c: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5737, N'[D.1.e: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5738, N'[D.1.e: MATA System Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5739, N'[B.2.b: Implementation Statement]')
+INSERT INTO [dbo].[PARAMETERS] ([Parameter_ID], [Parameter_Name]) VALUES (5740, N'[D.1: Implementation Statement]')
+SET IDENTITY_INSERT [dbo].[PARAMETERS] OFF
+PRINT(N'Operation applied to 48 rows out of 48')
+
+PRINT(N'Add row to [dbo].[SETS]')
+INSERT INTO [dbo].[SETS] ([Set_Name], [Full_Name], [Short_Name], [Is_Displayed], [Is_Pass_Fail], [Old_Std_Name], [Set_Category_Id], [Order_In_Category], [Report_Order_Section_Number], [Aggregation_Standard_Number], [Is_Question], [Is_Requirement], [Order_Framework_Standards], [Standard_ToolTip], [Is_Deprecated], [Upgrade_Set_Name], [Is_Custom], [Date], [IsEncryptedModule], [IsEncryptedModuleOpen]) VALUES (N'NCSF_V2_Index', N'Cybersecurity Framework 2.0 CIS Index ', N'CSF 2.0 Index', 1, 1, NULL, 13, 1, 22, 29, 1, 1, 18, N'Based off the NIST Cybersecurity Framework 2.0 the CIS Index is a maturity model and assesses capabilities on a a 1 to 7 scale. ', 0, NULL, 0, NULL, 0, 1)
+
+PRINT(N'Add rows to [dbo].[FILE_KEYWORDS]')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7078, N'24-CU-02')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7078, N'LTCU')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7078, N'LTCU 24-CU-02')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7079, N'25-CU-02')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7079, N'LTCU')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7079, N'LTCU 25-CU-02')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7082, N'748.1')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7082, N'CFR')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7082, N'CFR 748.1')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7083, N'749')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7083, N'CFR')
+INSERT INTO [dbo].[FILE_KEYWORDS] ([Gen_File_Id], [Keyword]) VALUES (7083, N'CFR Part 749 Appendix B')
+PRINT(N'Operation applied to 12 rows out of 12')
+
+PRINT(N'Add rows to [dbo].[GEN_FILE_LIB_PATH_CORL]')
+INSERT INTO [dbo].[GEN_FILE_LIB_PATH_CORL] ([Gen_File_Id], [Lib_Path_Id]) VALUES (7078, 516)
+INSERT INTO [dbo].[GEN_FILE_LIB_PATH_CORL] ([Gen_File_Id], [Lib_Path_Id]) VALUES (7079, 516)
+INSERT INTO [dbo].[GEN_FILE_LIB_PATH_CORL] ([Gen_File_Id], [Lib_Path_Id]) VALUES (7082, 496)
+INSERT INTO [dbo].[GEN_FILE_LIB_PATH_CORL] ([Gen_File_Id], [Lib_Path_Id]) VALUES (7083, 496)
+PRINT(N'Operation applied to 4 rows out of 4')
+
+PRINT(N'Add rows to [dbo].[ISE_ACTIONS]')
+SET IDENTITY_INSERT [dbo].[ISE_ACTIONS] ON
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (538, 7891, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7890)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (539, 7892, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7890)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (540, 7853, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (541, 7854, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (542, 7855, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (543, 7856, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (544, 7857, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (545, 7858, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (546, 7859, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (547, 7860, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (548, 7861, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (549, 7862, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (550, 7863, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (551, 7864, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (552, 7865, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7852)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (553, 7869, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7868)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (554, 7870, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7868)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (555, 7871, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7868)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (556, 7872, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7868)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (557, 7873, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7868)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (558, 7875, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (559, 7876, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (560, 7877, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (561, 7878, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (562, 7879, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (563, 7880, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (564, 7881, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (565, 7882, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (566, 7883, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (567, 7884, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (568, 7885, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7874)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (569, 7902, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7901)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (570, 7903, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7901)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (571, 7904, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7901)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (572, 7905, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7901)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (573, 7906, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7901)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (574, 7907, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7901)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (575, 7908, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7901)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (576, 7909, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7901)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (577, 7912, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7911)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (578, 7913, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7911)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (579, 7914, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7911)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (580, 7915, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7911)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (581, 7916, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7911)
+INSERT INTO [dbo].[ISE_ACTIONS] ([Action_Item_Id], [Mat_Question_Id], [Description], [Action_Items], [Regulatory_Citation], [Parent_Id]) VALUES (582, 7917, N'', N'', N'12 C.F.R. § 748.0 (b)(2)', 7911)
+SET IDENTITY_INSERT [dbo].[ISE_ACTIONS] OFF
+PRINT(N'Operation applied to 45 rows out of 45')
+
+PRINT(N'Add rows to [dbo].[MATURITY_REFERENCES]')
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (172, 692, N'GV.RM-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (172, 692, N'GV.RM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (172, 692, N'GV.RM-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (172, 692, N'GV.RR-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (174, 692, N'GV.RM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (177, 692, N'GV.RM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (178, 692, N'GV.OC-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (181, 692, N'GV.RM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (183, 692, N'GV.RM-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (183, 692, N'GV.RM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (183, 692, N'GV.RM-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (185, 692, N'GV.OC-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (190, 692, N'ID.IM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (199, 692, N'PR.PS-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (200, 692, N'GV.PO-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (200, 692, N'GV.PO-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (200, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (200, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (203, 692, N'GV.OC-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (203, 692, N'GV.RR-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (204, 692, N'GV.RM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (205, 692, N'GV.OC-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (209, 692, N'GV.OC-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (214, 692, N'GV.OC-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (215, 692, N'GV.RM-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (217, 692, N'GV.OC-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (218, 692, N'ID.AM-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (218, 692, N'ID.AM-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (219, 692, N'GV.OC-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (219, 692, N'GV.OC-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (219, 692, N'ID.AM-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (221, 692, N'ID.RA-07', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (221, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (223, 692, N'ID.AM-08', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (223, 692, N'PR.PS-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (224, 692, N'ID.AM-08', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (224, 692, N'PR.PS-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (236, 692, N'ID.IM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (246, 692, N'DE.AE-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (250, 692, N'ID.RA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (253, 692, N'ID.RA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (253, 692, N'ID.RA-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (254, 692, N'ID.RA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (254, 692, N'ID.RA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (279, 692, N'GV.RR-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (279, 692, N'GV.SC-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (283, 692, N'PR.AT-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (284, 692, N'GV.RR-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (290, 692, N'PR.AT-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (292, 692, N'PR.AT-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (292, 692, N'PR.AT-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (294, 692, N'PR.AT-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (295, 692, N'PR.AT-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (299, 692, N'PR.AT-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (299, 692, N'PR.AT-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (304, 692, N'GV.RR-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (304, 692, N'GV.SC-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (313, 692, N'ID.RA-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (314, 692, N'ID.RA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (325, 692, N'PR.PS-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (326, 692, N'PR.PS-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (327, 692, N'ID.RA-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (330, 692, N'ID.RA-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (332, 692, N'ID.RA-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (343, 692, N'ID.IM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (347, 692, N'ID.IM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (349, 692, N'GV.OC-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (358, 692, N'PR.AA-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (358, 692, N'PR.IR-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (362, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (364, 692, N'ID.AM-08', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (364, 692, N'PR.AA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (364, 692, N'PR.AA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (364, 692, N'PR.PS-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (370, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (370, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (371, 692, N'PR.IR-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (376, 692, N'PR.AA-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (376, 692, N'PR.IR-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (377, 692, N'PR.AA-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (377, 692, N'PR.AA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (377, 692, N'PR.IR-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (389, 692, N'PR.AA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (390, 692, N'PR.AA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (391, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (392, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (393, 692, N'PR.AA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (394, 692, N'PR.AA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (394, 692, N'PR.AA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (395, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (398, 692, N'PR.IR-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (399, 692, N'PR.AA-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (399, 692, N'PR.IR-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (399, 692, N'PR.IR-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (401, 692, N'PR.DS-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (402, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (403, 692, N'PR.AA-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (403, 692, N'PR.AA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (403, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (403, 692, N'PR.DS-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (403, 692, N'PR.DS-10', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (403, 692, N'PR.IR-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (404, 692, N'PR.AA-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (406, 692, N'ID.AM-08', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (412, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (412, 692, N'PR.DS-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (412, 692, N'PR.DS-10', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (420, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (427, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (427, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (432, 692, N'DE.CM-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (432, 692, N'DE.CM-09', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (434, 692, N'PR.AA-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (434, 692, N'PR.AA-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (434, 692, N'PR.IR-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (435, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (435, 692, N'PR.DS-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (435, 692, N'PR.DS-10', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (436, 692, N'DE.CM-09', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (436, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (441, 692, N'ID.AM-08', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (441, 692, N'PR.PS-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (445, 692, N'ID.AM-08', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (445, 692, N'PR.PS-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (448, 692, N'DE.CM-09', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (448, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (454, 692, N'ID.RA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (455, 692, N'DE.CM-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (455, 692, N'DE.CM-09', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (462, 692, N'ID.RA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (466, 692, N'ID.RA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (471, 692, N'ID.RA-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (488, 692, N'DE.CM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (493, 692, N'ID.AM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (494, 692, N'DE.AE-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (495, 692, N'DE.CM-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (495, 692, N'DE.CM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (495, 692, N'DE.CM-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (495, 692, N'DE.CM-09', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (496, 692, N'GV.RR-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (498, 692, N'DE.AE-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (498, 692, N'DE.AE-07', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (499, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (499, 692, N'PR.DS-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (499, 692, N'PR.DS-10', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (500, 692, N'ID.IM-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (523, 692, N'ID.RA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (523, 692, N'PR.PS-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (528, 692, N'ID.AM-08', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (528, 692, N'PR.PS-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (529, 692, N'ID.AM-08', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (529, 692, N'PR.PS-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (532, 692, N'GV.OC-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (532, 692, N'GV.OC-05', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (534, 692, N'ID.AM-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (535, 692, N'ID.AM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (540, 692, N'ID.AM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (549, 692, N'ID.AM-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (559, 692, N'PR.DS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (560, 692, N'GV.OC-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (560, 692, N'GV.RR-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (563, 692, N'GV.OC-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (563, 692, N'GV.RR-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (579, 692, N'DE.CM-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (579, 692, N'PR.PS-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (588, 692, N'ID.IM-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (588, 692, N'ID.RA-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (588, 692, N'RS.MA-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (597, 692, N'RC.CO-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (597, 692, N'RS.CO-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (601, 692, N'RC.CO-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (601, 692, N'RS.CO-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (602, 692, N'PR.AT-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (605, 692, N'ID.RA-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (606, 692, N'ID.RA-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (611, 692, N'RC.CO-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (611, 692, N'RS.CO-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (623, 692, N'DE.AE-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (623, 692, N'RC.CO-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (625, 692, N'GV.OC-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (625, 692, N'PR.DS-11', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (625, 692, N'PR.IR-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (626, 692, N'PR.IR-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (626, 692, N'RC.RP-01', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (626, 692, N'RC.RP-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (627, 692, N'ID.RA-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (629, 692, N'GV.OC-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (629, 692, N'PR.IR-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (632, 692, N'RC.CO-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (635, 692, N'DE.AE-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (635, 692, N'ID.IM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (635, 692, N'ID.IM-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (641, 692, N'ID.IM-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (641, 692, N'ID.IM-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (643, 692, N'ID.IM-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (643, 692, N'ID.IM-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (644, 692, N'DE.AE-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (646, 692, N'PR.DS-11', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (651, 692, N'ID.IM-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (653, 692, N'RS.CO-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (653, 692, N'RS.CO-03', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (655, 692, N'RC.CO-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (655, 692, N'RS.CO-02', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (656, 692, N'DE.AE-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (656, 692, N'DE.AE-06', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (656, 692, N'ID.RA-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (662, 692, N'RC.CO-04', 0, NULL, NULL, NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7853, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7854, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7855, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7856, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7857, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7858, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7859, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7860, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7861, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7862, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7863, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7864, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7865, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7869, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7870, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7871, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7872, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7873, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7875, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7876, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7877, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7878, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7879, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7880, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7881, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7882, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7883, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7884, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7885, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7891, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7892, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7902, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7903, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7904, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7905, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7906, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7907, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7908, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7909, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7912, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7913, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7914, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7915, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7916, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (7917, 6112, N'(b)(2)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (9918, 7082, N'(c)(1)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (9919, 7082, N'(c)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (9920, 7082, N'(c)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (9922, 7082, N'(c)(1)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (9923, 7082, N'(c)', 0, NULL, N'', NULL)
+INSERT INTO [dbo].[MATURITY_REFERENCES] ([Mat_Question_Id], [Gen_File_Id], [Section_Ref], [Source], [Page_Number], [Destination_String], [Sequence]) VALUES (9924, 7082, N'(c)', 0, NULL, N'', NULL)
+PRINT(N'Operation applied to 258 rows out of 258')
+
+PRINT(N'Add rows to [dbo].[PARAMETER_REQUIREMENTS]')
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37543, 5693, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37543, 5694, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37543, 5695, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37549, 5695, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37558, 5693, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37562, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37564, 5694, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37564, 5697, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37565, 5694, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37565, 5697, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37585, 5698, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37586, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37586, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37589, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37589, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37590, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37590, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37590, 5701, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37591, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37591, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37591, 5702, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37592, 5703, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37594, 5698, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37594, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37594, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37599, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37599, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5267, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5704, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5705, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5706, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5707, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5708, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5709, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5710, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5711, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5712, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37612, 5713, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37619, 5267, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37619, 5286, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37619, 5287, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37619, 5704, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37619, 5714, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37622, 5715, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37653, 5716, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37696, 5717, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37704, 5718, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37705, 5718, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37707, 5718, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37708, 5693, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37708, 5718, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37715, 5719, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37715, 5720, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37716, 5719, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37716, 5720, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37732, 5721, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37732, 5722, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37736, 5721, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37738, 5721, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37739, 5721, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37752, 5267, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37756, 5267, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37792, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37806, 5266, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37806, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37806, 5697, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37806, 5723, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37806, 5724, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37810, 5725, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37884, 5267, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37884, 5726, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37884, 5727, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37884, 5728, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37884, 5729, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37884, 5730, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37884, 5731, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37884, 5732, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37894, 5267, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37900, 5726, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37900, 5727, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37900, 5728, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37912, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37924, 5733, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37924, 5734, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37925, 5733, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37925, 5734, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37949, 5285, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37949, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37949, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37949, 5716, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37949, 5722, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37949, 5735, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37949, 5736, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37949, 5737, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37950, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37950, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37950, 5722, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37950, 5735, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37950, 5736, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37952, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37952, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37952, 5722, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37952, 5735, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37952, 5736, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37952, 5737, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37953, 5285, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37953, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37953, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37953, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37953, 5722, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37953, 5735, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37953, 5736, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37953, 5737, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37954, 5735, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37954, 5736, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37954, 5737, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37957, 5285, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37957, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37957, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37957, 5721, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37957, 5722, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37957, 5735, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37957, 5736, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37957, 5737, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37958, 5285, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37958, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37958, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37958, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37958, 5722, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5285, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5696, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5699, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5721, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5722, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5735, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5736, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37959, 5738, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37962, 5739, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37963, 5700, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37977, 5267, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37977, 5726, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37977, 5727, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37977, 5728, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37977, 5729, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37977, 5730, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37977, 5731, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37977, 5732, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37980, 5733, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (37999, 5740, NULL)
+INSERT INTO [dbo].[PARAMETER_REQUIREMENTS] ([Requirement_Id], [Parameter_Id], [ID]) VALUES (38000, 5740, NULL)
+PRINT(N'Operation applied to 151 rows out of 151')
+
+PRINT(N'Add rows to [dbo].[REQUIREMENT_SETS]')
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36403, N'NCSF_V2_Index', 32)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36404, N'NCSF_V2_Index', 33)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36405, N'NCSF_V2_Index', 34)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36406, N'NCSF_V2_Index', 35)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36407, N'NCSF_V2_Index', 36)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36408, N'NCSF_V2_Index', 37)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36409, N'NCSF_V2_Index', 39)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36410, N'NCSF_V2_Index', 40)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36411, N'NCSF_V2_Index', 41)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36412, N'NCSF_V2_Index', 42)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36413, N'NCSF_V2_Index', 43)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36414, N'NCSF_V2_Index', 44)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36415, N'NCSF_V2_Index', 59)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36416, N'NCSF_V2_Index', 60)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36417, N'NCSF_V2_Index', 61)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36418, N'NCSF_V2_Index', 62)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36419, N'NCSF_V2_Index', 48)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36420, N'NCSF_V2_Index', 80)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36421, N'NCSF_V2_Index', 81)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36422, N'NCSF_V2_Index', 82)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36423, N'NCSF_V2_Index', 83)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36424, N'NCSF_V2_Index', 75)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36425, N'NCSF_V2_Index', 76)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36426, N'NCSF_V2_Index', 77)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36427, N'NCSF_V2_Index', 78)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36428, N'NCSF_V2_Index', 95)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36429, N'NCSF_V2_Index', 96)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36430, N'NCSF_V2_Index', 91)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36431, N'NCSF_V2_Index', 97)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36432, N'NCSF_V2_Index', 98)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36433, N'NCSF_V2_Index', 99)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36434, N'NCSF_V2_Index', 100)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36435, N'NCSF_V2_Index', 101)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36436, N'NCSF_V2_Index', 102)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36437, N'NCSF_V2_Index', 103)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36438, N'NCSF_V2_Index', 105)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36439, N'NCSF_V2_Index', 38)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36440, N'NCSF_V2_Index', 45)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36441, N'NCSF_V2_Index', 46)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36442, N'NCSF_V2_Index', 47)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36443, N'NCSF_V2_Index', 49)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36444, N'NCSF_V2_Index', 50)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36445, N'NCSF_V2_Index', 51)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36446, N'NCSF_V2_Index', 52)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36447, N'NCSF_V2_Index', 53)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36448, N'NCSF_V2_Index', 54)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36449, N'NCSF_V2_Index', 55)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36450, N'NCSF_V2_Index', 56)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36451, N'NCSF_V2_Index', 57)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36452, N'NCSF_V2_Index', 58)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36453, N'NCSF_V2_Index', 63)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36454, N'NCSF_V2_Index', 64)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36455, N'NCSF_V2_Index', 65)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36456, N'NCSF_V2_Index', 66)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36457, N'NCSF_V2_Index', 67)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36458, N'NCSF_V2_Index', 68)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36459, N'NCSF_V2_Index', 69)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36460, N'NCSF_V2_Index', 70)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36461, N'NCSF_V2_Index', 71)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36462, N'NCSF_V2_Index', 72)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36463, N'NCSF_V2_Index', 73)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36464, N'NCSF_V2_Index', 74)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36465, N'NCSF_V2_Index', 84)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36466, N'NCSF_V2_Index', 85)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36467, N'NCSF_V2_Index', 79)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36468, N'NCSF_V2_Index', 86)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36469, N'NCSF_V2_Index', 87)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36470, N'NCSF_V2_Index', 88)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36471, N'NCSF_V2_Index', 89)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36472, N'NCSF_V2_Index', 90)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36473, N'NCSF_V2_Index', 92)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36474, N'NCSF_V2_Index', 93)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36475, N'NCSF_V2_Index', 94)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36476, N'NCSF_V2_Index', 104)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36477, N'NCSF_V2_Index', 106)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36478, N'NCSF_V2_Index', 1)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36479, N'NCSF_V2_Index', 2)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36480, N'NCSF_V2_Index', 3)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36481, N'NCSF_V2_Index', 4)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36482, N'NCSF_V2_Index', 5)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36483, N'NCSF_V2_Index', 6)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36484, N'NCSF_V2_Index', 7)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36485, N'NCSF_V2_Index', 8)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36486, N'NCSF_V2_Index', 9)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36487, N'NCSF_V2_Index', 10)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36488, N'NCSF_V2_Index', 11)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36489, N'NCSF_V2_Index', 12)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36490, N'NCSF_V2_Index', 22)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36491, N'NCSF_V2_Index', 23)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36492, N'NCSF_V2_Index', 24)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36493, N'NCSF_V2_Index', 25)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36494, N'NCSF_V2_Index', 26)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36495, N'NCSF_V2_Index', 27)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36496, N'NCSF_V2_Index', 28)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36497, N'NCSF_V2_Index', 29)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36498, N'NCSF_V2_Index', 30)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36499, N'NCSF_V2_Index', 31)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36500, N'NCSF_V2_Index', 13)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36501, N'NCSF_V2_Index', 14)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36502, N'NCSF_V2_Index', 15)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36503, N'NCSF_V2_Index', 16)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36504, N'NCSF_V2_Index', 17)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36505, N'NCSF_V2_Index', 18)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36506, N'NCSF_V2_Index', 19)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36507, N'NCSF_V2_Index', 20)
+INSERT INTO [dbo].[REQUIREMENT_SETS] ([Requirement_Id], [Set_Name], [Requirement_Sequence]) VALUES (36508, N'NCSF_V2_Index', 21)
+PRINT(N'Operation applied to 106 rows out of 106')
+
+PRINT(N'Add constraints to [dbo].[REQUIREMENT_SETS]')
+ALTER TABLE [dbo].[REQUIREMENT_SETS] CHECK CONSTRAINT [FK_QUESTION_SETS_SETS]
+ALTER TABLE [dbo].[REQUIREMENT_SETS] CHECK CONSTRAINT [FK_REQUIREMENT_SETS_NEW_REQUIREMENT]
+
+PRINT(N'Add constraints to [dbo].[PARAMETER_REQUIREMENTS]')
+ALTER TABLE [dbo].[PARAMETER_REQUIREMENTS] CHECK CONSTRAINT [FK_Parameter_Requirements_NEW_REQUIREMENT]
+ALTER TABLE [dbo].[PARAMETER_REQUIREMENTS] WITH CHECK CHECK CONSTRAINT [FK_Parameter_Requirements_Parameters]
+
+PRINT(N'Add constraints to [dbo].[NEW_REQUIREMENT]')
+ALTER TABLE [dbo].[NEW_REQUIREMENT] CHECK CONSTRAINT [FK_NEW_REQUIREMENT_NCSF_Category]
+ALTER TABLE [dbo].[NEW_REQUIREMENT] WITH CHECK CHECK CONSTRAINT [FK_NEW_REQUIREMENT_QUESTION_GROUP_HEADING]
+ALTER TABLE [dbo].[NEW_REQUIREMENT] CHECK CONSTRAINT [FK_NEW_REQUIREMENT_STANDARD_CATEGORY]
+ALTER TABLE [dbo].[FINANCIAL_REQUIREMENTS] WITH CHECK CHECK CONSTRAINT [FK_FINANCIAL_REQUIREMENTS_NEW_REQUIREMENT]
+ALTER TABLE [dbo].[NERC_RISK_RANKING] CHECK CONSTRAINT [FK_NERC_RISK_RANKING_NEW_REQUIREMENT]
+ALTER TABLE [dbo].[REQUIREMENT_LEVELS] CHECK CONSTRAINT [FK_REQUIREMENT_LEVELS_NEW_REQUIREMENT]
+ALTER TABLE [dbo].[REQUIREMENT_QUESTIONS_SETS] WITH CHECK CHECK CONSTRAINT [FK_REQUIREMENT_QUESTIONS_SETS_NEW_REQUIREMENT]
+ALTER TABLE [dbo].[REQUIREMENT_REFERENCE_TEXT] WITH CHECK CHECK CONSTRAINT [FK_REQUIREMENT_REFERENCE_TEXT_NEW_REQUIREMENT]
+ALTER TABLE [dbo].[REQUIREMENT_REFERENCES] CHECK CONSTRAINT [FK_REQUIREMENT_REFERENCES_NEW_REQUIREMENT]
+
+PRINT(N'Add constraints to [dbo].[MATURITY_REFERENCES]')
+ALTER TABLE [dbo].[MATURITY_REFERENCES] CHECK CONSTRAINT [FK_MATURITY_REFERENCES_GEN_FILE]
+ALTER TABLE [dbo].[MATURITY_REFERENCES] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_REFERENCES_MATURITY_QUESTIONS]
+
+PRINT(N'Add constraints to [dbo].[ISE_ACTIONS]')
+ALTER TABLE [dbo].[ISE_ACTIONS] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MAT_QUESTION_ID]
+
+PRINT(N'Add constraints to [dbo].[GEN_FILE_LIB_PATH_CORL]')
+ALTER TABLE [dbo].[GEN_FILE_LIB_PATH_CORL] CHECK CONSTRAINT [FK_GEN_FILE_LIB_PATH_CORL_GEN_FILE]
+ALTER TABLE [dbo].[GEN_FILE_LIB_PATH_CORL] CHECK CONSTRAINT [FK_GEN_FILE_LIB_PATH_CORL_REF_LIBRARY_PATH]
+
+PRINT(N'Add constraints to [dbo].[GALLERY_GROUP_DETAILS]')
+ALTER TABLE [dbo].[GALLERY_GROUP_DETAILS] WITH CHECK CHECK CONSTRAINT [FK_GALLERY_GROUP_DETAILS_GALLERY_GROUP]
+ALTER TABLE [dbo].[GALLERY_GROUP_DETAILS] WITH CHECK CHECK CONSTRAINT [FK_GALLERY_GROUP_DETAILS_GALLERY_ITEM]
+
+PRINT(N'Add constraints to [dbo].[FILE_KEYWORDS]')
+ALTER TABLE [dbo].[FILE_KEYWORDS] CHECK CONSTRAINT [FILE_KEYWORDS_GEN_FILE_FK]
+
+PRINT(N'Add constraints to [dbo].[SETS]')
+ALTER TABLE [dbo].[SETS] WITH CHECK CHECK CONSTRAINT [FK_SETS_Sets_Category]
+ALTER TABLE [dbo].[AVAILABLE_STANDARDS] WITH CHECK CHECK CONSTRAINT [FK_AVAILABLE_STANDARDS_SETS]
+ALTER TABLE [dbo].[CUSTOM_STANDARD_BASE_STANDARD] CHECK CONSTRAINT [FK_CUSTOM_STANDARD_BASE_STANDARD_SETS]
+ALTER TABLE [dbo].[CUSTOM_STANDARD_BASE_STANDARD] CHECK CONSTRAINT [FK_CUSTOM_STANDARD_BASE_STANDARD_SETS1]
+ALTER TABLE [dbo].[MODES_SETS_MATURITY_MODELS] WITH CHECK CHECK CONSTRAINT [FK_MODES_MATURITY_MODELS_SETS]
+ALTER TABLE [dbo].[NEW_QUESTION_SETS] CHECK CONSTRAINT [FK_NEW_QUESTION_SETS_SETS]
+ALTER TABLE [dbo].[REPORT_STANDARDS_SELECTION] WITH CHECK CHECK CONSTRAINT [FK_REPORT_STANDARDS_SELECTION_SETS]
+ALTER TABLE [dbo].[REQUIREMENT_QUESTIONS_SETS] WITH CHECK CHECK CONSTRAINT [FK_REQUIREMENT_QUESTIONS_SETS_SETS]
+ALTER TABLE [dbo].[SECTOR_STANDARD_RECOMMENDATIONS] CHECK CONSTRAINT [FK_SECTOR_STANDARD_RECOMMENDATIONS_SETS]
+ALTER TABLE [dbo].[SET_FILES] WITH CHECK CHECK CONSTRAINT [FK_SET_FILES_SETS]
+ALTER TABLE [dbo].[STANDARD_CATEGORY_SEQUENCE] CHECK CONSTRAINT [FK_STANDARD_CATEGORY_SEQUENCE_SETS]
+ALTER TABLE [dbo].[STANDARD_SOURCE_FILE] CHECK CONSTRAINT [FK_Standard_Source_File_SETS]
+ALTER TABLE [dbo].[UNIVERSAL_SUB_CATEGORY_HEADINGS] WITH CHECK CHECK CONSTRAINT [FK_UNIVERSAL_SUB_CATEGORY_HEADINGS_SETS]
+ALTER TABLE [dbo].[PARAMETER_ASSESSMENT] WITH CHECK CHECK CONSTRAINT [FK_ASSESSMENT_PARAMETERS_PARAMETERS]
+ALTER TABLE [dbo].[PARAMETER_VALUES] WITH CHECK CHECK CONSTRAINT [FK_PARAMETER_VALUES_PARAMETERS]
+
+PRINT(N'Add constraints to [dbo].[MATURITY_QUESTIONS]')
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] CHECK CONSTRAINT [FK__MATURITY___Matur__5B638405]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_GROUPINGS]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_LEVELS]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] CHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_MODELS]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_OPTIONS]
+ALTER TABLE [dbo].[MATURITY_QUESTIONS] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_QUESTIONS_MATURITY_QUESTION_TYPES]
+ALTER TABLE [dbo].[HYDRO_DATA] WITH CHECK CHECK CONSTRAINT [FK__HYDRO_DAT__Mat_Q__38652BE2]
+ALTER TABLE [dbo].[MATURITY_ANSWER_OPTIONS] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_ANSWER_OPTIONS_MATURITY_QUESTIONS1]
+ALTER TABLE [dbo].[MATURITY_EXTRA] WITH CHECK CHECK CONSTRAINT [fk_mat_questions]
+ALTER TABLE [dbo].[MATURITY_QUESTION_PROPS] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_QUESTION_PROPS_MATURITY_QUESTIONS]
+ALTER TABLE [dbo].[MATURITY_REFERENCE_TEXT] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_REFERENCE_TEXT_MATURITY_QUESTIONS]
+ALTER TABLE [dbo].[MATURITY_SUB_MODEL_QUESTIONS] WITH CHECK CHECK CONSTRAINT [FK_MATURITY_SUB_MODEL_QUESTIONS_MATURITY_QUESTIONS]
+ALTER TABLE [dbo].[TTP_MAT_QUESTION] WITH CHECK CHECK CONSTRAINT [FK_TTP_MAT_QUESTION_MATURITY_QUESTIONS]
+
+PRINT(N'Add constraints to [dbo].[GEN_FILE]')
+ALTER TABLE [dbo].[GEN_FILE] WITH CHECK CHECK CONSTRAINT [FK_GEN_FILE_FILE_REF_KEYS]
+ALTER TABLE [dbo].[GEN_FILE] WITH CHECK CHECK CONSTRAINT [FK_GEN_FILE_FILE_TYPE]
+ALTER TABLE [dbo].[REQUIREMENT_REFERENCES] CHECK CONSTRAINT [FK_REQUIREMENT_REFERENCES_GEN_FILE]
+ALTER TABLE [dbo].[SET_FILES] WITH CHECK CHECK CONSTRAINT [FK_SET_FILES_GEN_FILE]
+ALTER TABLE [dbo].[ASSESSMENTS] WITH CHECK CHECK CONSTRAINT [FK_ASSESSMENTS_GALLERY_ITEM]
+COMMIT TRANSACTION
+GO
diff --git a/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/VersionUpgrader.cs b/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/VersionUpgrader.cs
index ea326ee229..52f2975bee 100644
--- a/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/VersionUpgrader.cs
+++ b/CSETWebApi/CSETWeb_Api/CSETWebCore.UpgradeLibrary/VersionUpgrader/VersionUpgrader.cs
@@ -125,6 +125,7 @@ public VersionUpgrader(string path)
converters.Add("12.3.0.0", new ConvertDatabase12301(path));
converters.Add("12.3.0.1", new ConvertDatabase12302(path));
converters.Add("12.3.0.2", new ConvertDatabase12310(path));
+ converters.Add("12.3.1.0", new ConvertDatabase12400(path));
}
public void UpgradeOnly(Version currentVersion, string tempConnect)
diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/CSETWebCore.Api.csproj b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/CSETWebCore.Api.csproj
index 5a6e438229..d23ac35d66 100644
--- a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/CSETWebCore.Api.csproj
+++ b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/CSETWebCore.Api.csproj
@@ -2,7 +2,7 @@
net8.0
- 12.3.1.0
+ 12.4.0.0
diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.cfe b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.cfe
index 374d825e0b..95dbdd7f7d 100644
Binary files a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.cfe and b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.cfe differ
diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.cfs b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.cfs
index 07b0844343..aa1c80dbd8 100644
Binary files a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.cfs and b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.cfs differ
diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.si b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.si
index 61454a5337..d09788aa85 100644
Binary files a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.si and b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_0.si differ
diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_1.si b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_1.si
index 26ff0991d2..3d69921e56 100644
Binary files a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_1.si and b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_1.si differ
diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.cfe b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.cfe
index 7f51127abf..667d937d6d 100644
Binary files a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.cfe and b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.cfe differ
diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.cfs b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.cfs
index b25121cd8a..fdc3330e92 100644
Binary files a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.cfs and b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.cfs differ
diff --git a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.si b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.si
index be6908625b..5961ba0854 100644
Binary files a/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.si and b/CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/LuceneIndex/_2.si differ
diff --git a/CSETWebNg/.gitignore b/CSETWebNg/.gitignore
index c7033c9d67..448668ffaa 100644
--- a/CSETWebNg/.gitignore
+++ b/CSETWebNg/.gitignore
@@ -6,6 +6,7 @@
/tmp
/out-tsc
/electron-builds
+/temp-electron
# dependencies
/node_modules
diff --git a/CSETWebNg/package-lock.json b/CSETWebNg/package-lock.json
index 01f22ab28a..6d1778d323 100644
--- a/CSETWebNg/package-lock.json
+++ b/CSETWebNg/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "csetweb-ng",
- "version": "12.3.1",
+ "version": "12.4.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "csetweb-ng",
- "version": "12.3.1",
+ "version": "12.4.0",
"license": "MIT",
"dependencies": {
"@angular-devkit/build-webpack": "^0.1901.8",
@@ -68,7 +68,7 @@
"devDependencies": {
"@angular-builders/custom-webpack": "^19.0.0",
"@electron/packager": "^18.3.6",
- "electron": "^34.0.0",
+ "electron": "^34.0.2",
"shx": "^0.3.4"
}
},
@@ -8278,6 +8278,30 @@
"url": "https://github.com/sponsors/fb55"
}
},
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "license": "MIT"
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+ "license": "MIT"
+ },
+ "node_modules/electron": {
+ "version": "34.0.2",
+ "resolved": "https://registry.npmjs.org/electron/-/electron-34.0.2.tgz",
+ "integrity": "sha512-u3F+DSUlg9NaGS+9qnYmSRN8VjAnc3LJDDk1ye1uISJnh4gjG76y3681qLowsPMx4obvCP2eBINnmbLo0yT5WA==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "dependencies": {
+ "@electron/get": "^2.0.0",
+ "@types/node": "^20.9.0",
+ "extract-zip": "^2.0.1"
+ },
"node_modules/cssesc": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
diff --git a/CSETWebNg/package.json b/CSETWebNg/package.json
index 047b3bb232..9cc50624ae 100644
--- a/CSETWebNg/package.json
+++ b/CSETWebNg/package.json
@@ -1,6 +1,6 @@
{
"name": "csetweb-ng",
- "version": "12.3.1",
+ "version": "12.4.0",
"license": "MIT",
"main": "main-electron.js",
"private": true,
@@ -75,7 +75,7 @@
"devDependencies": {
"@angular-builders/custom-webpack": "^19.0.0",
"@electron/packager": "^18.3.6",
- "electron": "^34.0.0",
+ "electron": "^34.0.2",
"shx": "^0.3.4"
}
}
diff --git a/CSETWebNg/src/app/assessment/questions/issues/issues.component.ts b/CSETWebNg/src/app/assessment/questions/issues/issues.component.ts
index f75265908c..75e921187e 100644
--- a/CSETWebNg/src/app/assessment/questions/issues/issues.component.ts
+++ b/CSETWebNg/src/app/assessment/questions/issues/issues.component.ts
@@ -94,43 +94,43 @@ export class IssuesComponent implements OnInit {
this.questionsSvc.getDetails(this.questionID, questionType).subscribe((details) => {
this.suppGuidance = this.cleanText(details.listTabs[0].requirementsData.supplementalFact);
- });
- // Grab the finding from the db if there is one.
- this.observationSvc.getObservation(this.observation.answer_Id, this.observation.observation_Id, this.observation.question_Id, questionType).subscribe((response: Observation) => {
+ // Grab the finding from the db if there is one.
+ this.observationSvc.getObservation(this.observation.answer_Id, this.observation.observation_Id, this.observation.question_Id, questionType).subscribe((response: Observation) => {
- this.observation = response;
- this.observation.title = this.issueTitle; // using the temp name we set earlier so it's not "overriden" for the user
+ this.observation = response;
+ this.observation.title = this.issueTitle; // using the temp name we set earlier so it's not "overriden" for the user
- this.questionsSvc.getActionItems(this.questionID, this.observation.observation_Id).subscribe(
- (data: any) => {
- this.actionItems = data;
+ this.questionsSvc.getActionItems(this.questionID, this.observation.observation_Id).subscribe(
+ (data: any) => {
+ this.actionItems = data;
- this.observation.risk_Area = this.risk;
- this.observation.sub_Risk = this.subRisk;
+ this.observation.risk_Area = this.risk;
+ this.observation.sub_Risk = this.subRisk;
- if (this.autoGen === 1) {
- this.observation.auto_Generated = 1;
- } else if (this.autoGen === 0 && this.observation.auto_Generated !== 1) {
- this.observation.auto_Generated = 0;
- }
+ if (this.autoGen === 1) {
+ this.observation.auto_Generated = 1;
+ } else if (this.autoGen === 0 && this.observation.auto_Generated !== 1) {
+ this.observation.auto_Generated = 0;
+ }
- if (this.observation.title === null) {
- this.observation.title = this.issueTitle;
- }
+ if (this.observation.title === null) {
+ this.observation.title = this.issueTitle;
+ }
- if (this.observation.auto_Generated === 1 && this.observation.description === '') {
- this.observation.description = this.actionItems[0]?.description;
- }
+ if (this.observation.auto_Generated === 1 && this.observation.description === '') {
+ this.observation.description = this.actionItems[0]?.description;
+ }
- if (this.observation.supp_Guidance === null) {
- this.observation.supp_Guidance = this.suppGuidance;
- }
+ if (this.observation.supp_Guidance === null) {
+ this.observation.supp_Guidance = this.suppGuidance;
+ }
- this.answerID = this.observation.answer_Id;
- this.questionID = this.observation.question_Id;
+ this.answerID = this.observation.answer_Id;
+ this.questionID = this.observation.question_Id;
- this.loading = false;
+ this.loading = false;
+ });
});
});
}
diff --git a/CSETWebNg/src/app/assessment/results/reports/ise-warnings/ise-warnings.component.html b/CSETWebNg/src/app/assessment/results/reports/ise-warnings/ise-warnings.component.html
index f92a95d8dd..56ea26eb3d 100644
--- a/CSETWebNg/src/app/assessment/results/reports/ise-warnings/ise-warnings.component.html
+++ b/CSETWebNg/src/app/assessment/results/reports/ise-warnings/ise-warnings.component.html
@@ -44,7 +44,7 @@
-->
- There are unanswered statements. Some domains will be incomplete.
+ There are unanswered examination statements that need to be answered.