IoanPopovici
9/27/2019 - 5:08 PM

DE Software Deployments by Device or User.rdl

Lists the Application or Package Deployments for a Device or User Collection

<?xml version="1.0" encoding="utf-8"?>
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2016/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns:cl="http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition">
  <Description>Lists the application or package deployments for a device or user collection</Description>
  <Author>Ioan Popovici @https:\\SCCM.Zone</Author>
  <AutoRefresh>0</AutoRefresh>
  <DataSources>
    <DataSource Name="CMSQLDatabase">
      <DataSourceReference>/ConfigMgr_HUB/{5C6358F2-4BB6-4a1b-A16E-8D96795D8602}</DataSourceReference>
      <rd:SecurityType>None</rd:SecurityType>
      <rd:DataSourceID>11111111-1111-1111-1111-111111111111</rd:DataSourceID>
    </DataSource>
  </DataSources>
  <DataSets>
    <DataSet Name="AdminID">
      <Query>
        <DataSourceName>CMSQLDatabase</DataSourceName>
        <QueryParameters>
          <QueryParameter Name="@UserTokenSIDs">
            <Value>=Parameters!UserTokenSIDs.Value</Value>
          </QueryParameter>
        </QueryParameters>
        <CommandText>/* Get AdminID */
SELECT dbo.fn_rbac_GetAdminIDsfromUserSIDs (@UserTokenSIDs) AS UserSIDs</CommandText>
        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
      </Query>
      <Fields>
        <Field Name="UserSIDs">
          <DataField>UserSIDs</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
      </Fields>
    </DataSet>
    <DataSet Name="CollectionInfo">
      <Query>
        <DataSourceName>CMSQLDatabase</DataSourceName>
        <QueryParameters>
          <QueryParameter Name="@UserSIDs">
            <Value>=Parameters!UserSIDs.Value</Value>
          </QueryParameter>
          <QueryParameter Name="@CollectionType">
            <Value>=Parameters!CollectionType.Value</Value>
          </QueryParameter>
        </QueryParameters>
        <CommandText>/* Get Collection info */
SELECT
   CollectionID,
   Name
FROM dbo.fn_rbac_Collection(@UserSIDs)
WHERE CollectionType = @CollectionType
ORDER BY Name;</CommandText>
        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
      </Query>
      <Fields>
        <Field Name="CollectionID">
          <DataField>CollectionID</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="Name">
          <DataField>Name</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
      </Fields>
    </DataSet>
    <DataSet Name="ApplicationDeployments">
      <Query>
        <DataSourceName>CMSQLDatabase</DataSourceName>
        <QueryParameters>
          <QueryParameter Name="@UserSIDs">
            <Value>=Parameters!UserSIDs.Value</Value>
          </QueryParameter>
          <QueryParameter Name="@CollectionID">
            <Value>=Parameters!CollectionID.Value</Value>
          </QueryParameter>
          <QueryParameter Name="@CollectionType">
            <Value>=Parameters!CollectionType.Value</Value>
          </QueryParameter>
        </QueryParameters>
        <CommandText>/*
.SYNOPSIS
    Lists the Application Deployments for a Collection.
.DESCRIPTION
    Lists the Application Deployments for a Device or User Collection.
.NOTES
    Created by Ioan Popovici
    Part of a report should not be run separately.
.LINK
    https://SCCM.Zone/DE-Deployments-by-Device-or-User
.LINK
    https://SCCM.Zone/DE-Deployments-by-Device-or-User-CHANGELOG
.LINK
    https://SCCM.Zone/DE-Deployments-by-Device-or-User-GIT
.LINK
    https://SCCM.Zone/Issues
*/

/*##=============================================*/
/*## QUERY BODY                                  */
/*##=============================================*/

/* Testing variables !! Need to be commented for Production !! */

/*
DECLARE @UserSIDs VARCHAR(16)= 'Disabled';
DECLARE @CollectionID VARCHAR(16)= 'HUB005A6';
--DECLARE @CollectionID VARCHAR(16)= 'HUB00744';
DECLARE @SelectBy VARCHAR(16);
DECLARE @CollectionType VARCHAR(16);
SELECT @SelectBy = ResourceID
FROM fn_rbac_FullCollectionMembership(@UserSIDs) AS CollectionMembers
WHERE CollectionMembers.CollectionID = @CollectionID
    AND CollectionMembers.ResourceType = 5; --Device collection
IF @SelectBy &gt; 0
    SET @CollectionType = 2;
ELSE
    SET @CollectionType = 1;
*/

/* Initialize CollectionMembers table */
DECLARE @CollectionMembers TABLE (
    ResourceID     INT
    , ResourceType INT
    , SMSID        NVARCHAR(100)
)

/* Populate CollectionMembers table */
INSERT INTO @CollectionMembers (ResourceID, ResourceType, SMSID)
SELECT ResourceID, ResourceType, SMSID
FROM fn_rbac_FullCollectionMembership(@UserSIDs) AS CollectionMembers
WHERE CollectionMembers.CollectionID = @CollectionID
    AND CollectionMembers.ResourceType IN (4, 5); --Only Users or Devices

/* User collection query */
IF @CollectionType = 1
    BEGIN
        SELECT DISTINCT
            UserName           = Users.Unique_User_Name0
            , PrimaryUser      = Devices.PrimaryUser
            , TopConsoleUser   = Console.TopConsoleUser0
            , SoftwareName     = Deployments.SoftwareName
            , CollectionName   = Deployments.CollectionName
            , Device           = AssetData.MachineName
            , Manufacturer     = Enclosure.Manufacturer0
            , DeviceType       = (
                CASE
                    WHEN Enclosure.ChassisTypes0 IN (8, 9, 10, 11, 12, 14, 18, 21, 31, 32) THEN 'Laptop'
                    WHEN Enclosure.ChassisTypes0 IN (3, 4, 5, 6, 7, 15, 16) THEN 'Desktop'
                    WHEN Enclosure.ChassisTypes0 IN (17, 23, 28, 29) THEN 'Servers'
                    WHEN Enclosure.ChassisTypes0 = '30' THEN 'Tablet'
                    ELSE 'Unknown'
                END
            )
            , ChassisType      = (
                CASE Enclosure.ChassisTypes0
                    WHEN '1' THEN 'Other'
                    WHEN '2' THEN 'Unknown'
                    WHEN '3' THEN 'Desktop'
                    WHEN '4' THEN 'Low Profile Desktop'
                    WHEN '5' THEN 'Pizza Box'
                    WHEN '6' THEN 'Mini Tower'
                    WHEN '7' THEN 'Tower'
                    WHEN '8' THEN 'Portable'
                    WHEN '9' THEN 'Laptop'
                    WHEN '10' THEN 'Notebook'
                    WHEN '11' THEN 'Hand Held'
                    WHEN '12' THEN 'Docking Station'
                    WHEN '13' THEN 'All in One'
                    WHEN '14' THEN 'Sub Notebook'
                    WHEN '15' THEN 'Space-Saving'
                    WHEN '16' THEN 'Lunch Box'
                    WHEN '17' THEN 'Main System Chassis'
                    WHEN '18' THEN 'Expansion Chassis'
                    WHEN '19' THEN 'SubChassis'
                    WHEN '20' THEN 'Bus Expansion Chassis'
                    WHEN '21' THEN 'Peripheral Chassis'
                    WHEN '22' THEN 'Storage Chassis'
                    WHEN '23' THEN 'Rack Mount Chassis'
                    WHEN '24' THEN 'Sealed-Case PC'
                    WHEN '25' THEN 'Multi-system chassis'
                    WHEN '26' THEN 'Compact PCI'
                    WHEN '27' THEN 'Advanced TCA'
                    WHEN '28' THEN 'Blade'
                    WHEN '29' THEN 'Blade Enclosure'
                    WHEN '30' THEN 'Tablet'
                    WHEN '31' THEN 'Convertible'
                    WHEN '32' THEN 'Detachable'
                    ELSE 'Undefinded'
                END
            )
            , SerialNumber     = Enclosure.SerialNumber0
            , Purpose          = (
                CASE
                    WHEN Assignments.DesiredConfigType = 1
                    THEN 'Install'
                    ELSE 'Remove'
                END
            )
            , InstalledBy      = Users.Unique_User_Name0
            , EnforcementState = (
                dbo.fn_GetAppState(AssetData.ComplianceState, AssetData.EnforcementState, Assignments.OfferTypeID, 1, AssetData.DesiredState, AssetData.IsApplicable)
            )
        FROM fn_rbac_CollectionExpandedUserMembers(@UserSIDs) AS CollectionMembers
            INNER JOIN v_R_User AS Users ON Users.ResourceID = CollectionMembers.UserItemKey
            INNER JOIN v_DeploymentSummary AS Deployments ON Deployments.CollectionID = CollectionMembers.SiteID
            LEFT JOIN v_AppIntentAssetData AS AssetData ON AssetData.UserName = Users.Unique_User_Name0
                AND AssetData.AssignmentID = Deployments.AssignmentID
            INNER JOIN v_CIAssignment AS Assignments ON Assignments.AssignmentID = Deployments.AssignmentID
			LEFT JOIN v_GS_SYSTEM_ENCLOSURE AS Enclosure ON Enclosure.ResourceID = AssetData.MachineID
            LEFT JOIN v_GS_SYSTEM_CONSOLE_USAGE AS Console ON Console.ResourceID = AssetData.MachineID
			LEFT JOIN  v_CombinedDeviceResources AS Devices ON Devices.MachineID = AssetData.MachineID
        WHERE Deployments.FeatureType = 1
            AND Users.Unique_User_Name0 IN (
                SELECT SMSID
                FROM @CollectionMembers
                WHERE ResourceType = 4 --Ony Users
            )
    END;

/* Device collection query */
IF @CollectionType = 2
    BEGIN
        SELECT DISTINCT
            Device             = Devices.Name
			, PrimaryUser      = Devices.PrimaryUser
            , TopConsoleUser   = Console.TopConsoleUser0
            , Manufacturer     = Enclosure.Manufacturer0
            , DeviceType       = (
                CASE
                    WHEN Enclosure.ChassisTypes0 IN (8 , 9, 10, 11, 12, 14, 18, 21, 31, 32) THEN 'Laptop'
                    WHEN Enclosure.ChassisTypes0 IN (3, 4, 5, 6, 7, 15, 16) THEN 'Desktop'
                    WHEN Enclosure.ChassisTypes0 IN (17, 23, 28, 29) THEN 'Servers'
                    WHEN Enclosure.ChassisTypes0 = '30' THEN 'Tablet'
                    ELSE 'Unknown'
                END
            )
            , ChassisType      = (
                CASE Enclosure.ChassisTypes0
                    WHEN '1' THEN 'Other'
                    WHEN '2' THEN 'Unknown'
                    WHEN '3' THEN 'Desktop'
                    WHEN '4' THEN 'Low Profile Desktop'
                    WHEN '5' THEN 'Pizza Box'
                    WHEN '6' THEN 'Mini Tower'
                    WHEN '7' THEN 'Tower'
                    WHEN '8' THEN 'Portable'
                    WHEN '9' THEN 'Laptop'
                    WHEN '10' THEN 'Notebook'
                    WHEN '11' THEN 'Hand Held'
                    WHEN '12' THEN 'Docking Station'
                    WHEN '13' THEN 'All in One'
                    WHEN '14' THEN 'Sub Notebook'
                    WHEN '15' THEN 'Space-Saving'
                    WHEN '16' THEN 'Lunch Box'
                    WHEN '17' THEN 'Main System Chassis'
                    WHEN '18' THEN 'Expansion Chassis'
                    WHEN '19' THEN 'SubChassis'
                    WHEN '20' THEN 'Bus Expansion Chassis'
                    WHEN '21' THEN 'Peripheral Chassis'
                    WHEN '22' THEN 'Storage Chassis'
                    WHEN '23' THEN 'Rack Mount Chassis'
                    WHEN '24' THEN 'Sealed-Case PC'
                    WHEN '25' THEN 'Multi-system chassis'
                    WHEN '26' THEN 'Compact PCI'
                    WHEN '27' THEN 'Advanced TCA'
                    WHEN '28' THEN 'Blade'
                    WHEN '29' THEN 'Blade Enclosure'
                    WHEN '30' THEN 'Tablet'
                    WHEN '31' THEN 'Convertible'
                    WHEN '32' THEN 'Detachable'
                    ELSE 'Undefinded'
                END
            )
			, SerialNumber     = Enclosure.SerialNumber0
            , SoftwareName     = Deployments.SoftwareName
            , CollectionName   = Deployments.CollectionName
            , Purpose          = (
                CASE
                    WHEN Assignments.DesiredConfigType = 1
                    THEN 'Install'
                    ELSE 'Remove'
                END
            )
            , InstalledBy      = AssetData.UserName
            , EnforcementState = Dbo.fn_GetAppState(AssetData.ComplianceState, AssetData.EnforcementState, Assignments.OfferTypeID, 1, AssetData.DesiredState, AssetData.IsApplicable)
        FROM v_CombinedDeviceResources AS Devices
            INNER JOIN fn_rbac_FullCollectionMembership(@UserSIDs) AS CollectionMembers ON CollectionMembers.ResourceID = Devices.MachineID
                AND CollectionMembers.ResourceType = 5 --Only Devices
            INNER JOIN v_DeploymentSummary AS Deployments ON Deployments.CollectionID = CollectionMembers.CollectionID
                AND Deployments.FeatureType = 1
            LEFT JOIN v_AppIntentAssetData AS AssetData ON AssetData.MachineID = CollectionMembers.ResourceID
                AND AssetData.AssignmentID = Deployments.AssignmentID
            INNER JOIN v_CIAssignment AS Assignments ON Assignments.AssignmentID = Deployments.AssignmentID
			LEFT JOIN v_GS_SYSTEM_ENCLOSURE AS Enclosure ON Enclosure.ResourceID = Devices.MachineID
            LEFT JOIN v_GS_SYSTEM_CONSOLE_USAGE AS Console ON Console.ResourceID = Devices.MachineID
        WHERE Devices.isClient = 1
            AND Devices.MachineID IN (
                SELECT ResourceID
                FROM @CollectionMembers
                WHERE ResourceType = 5 --Only Devices
            )
    END;

/*##=============================================*/
/*## END QUERY BODY                              */
/*##=============================================*/</CommandText>
        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
      </Query>
      <Fields>
        <Field Name="UserName">
          <DataField>UserName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="PrimaryUser">
          <DataField>PrimaryUser</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="SoftwareName">
          <DataField>SoftwareName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="TopConsoleUser">
          <DataField>TopConsoleUser</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="CollectionName">
          <DataField>CollectionName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="Device">
          <DataField>Device</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="Manufacturer">
          <DataField>Manufacturer</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="DeviceType">
          <DataField>DeviceType</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="ChassisType">
          <DataField>ChassisType</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="SerialNumber">
          <DataField>SerialNumber</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="Purpose">
          <DataField>Purpose</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="InstalledBy">
          <DataField>InstalledBy</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="EnforcementState">
          <DataField>EnforcementState</DataField>
          <rd:TypeName>System.Int16</rd:TypeName>
        </Field>
      </Fields>
    </DataSet>
    <DataSet Name="PackageDeployments">
      <Query>
        <DataSourceName>CMSQLDatabase</DataSourceName>
        <QueryParameters>
          <QueryParameter Name="@UserSIDs">
            <Value>=Parameters!UserSIDs.Value</Value>
          </QueryParameter>
          <QueryParameter Name="@CollectionID">
            <Value>=Parameters!CollectionID.Value</Value>
          </QueryParameter>
          <QueryParameter Name="@CollectionType">
            <Value>=Parameters!CollectionType.Value</Value>
          </QueryParameter>
        </QueryParameters>
        <CommandText>/*
.SYNOPSIS
    Lists the Package Deployments for a Collection.
.DESCRIPTION
    Lists the Package Deployments for a Device or User Collection.
.NOTES
    Created by Ioan Popovici
    Part of a report should not be run separately.
.LINK
    https://SCCM.Zone/DE-Deployments-by-Device-or-User
.LINK
    https://SCCM.Zone/DE-Deployments-by-Device-or-User-CHANGELOG
.LINK
    https://SCCM.Zone/DE-Deployments-by-Device-or-User-GIT
.LINK
    https://SCCM.Zone/Issues
*/

/*##=============================================*/
/*## QUERY BODY                                  */
/*##=============================================*/

/* Testing variables !! Need to be commented for Production !! */
/*
DECLARE @UserSIDs VARCHAR(16)= 'Disabled';
DECLARE @CollectionID VARCHAR(16)= 'PC100026';
--DECLARE @CollectionID VARCHAR(16)= 'PC100025';
DECLARE @SelectBy VARCHAR(16);
DECLARE @CollectionType VARCHAR(16);
SELECT @SelectBy = ResourceID
FROM fn_rbac_FullCollectionMembership(@UserSIDs) AS CollectionMembers
WHERE CollectionMembers.CollectionID = @CollectionID
    AND CollectionMembers.ResourceType = 5; --Device collection
IF @SelectBy &gt; 0
    SET @CollectionType = 2;
ELSE
    SET @CollectionType = 1;
*/

/* Initialize CollectionMembers table */
DECLARE @CollectionMembers TABLE (
    ResourceID     INT
    , ResourceType INT
    , SMSID        NVARCHAR(100)
)

/* Populate CollectionMembers table */
INSERT INTO @CollectionMembers (ResourceID, ResourceType, SMSID)
SELECT ResourceID, ResourceType, SMSID
FROM fn_rbac_FullCollectionMembership(@UserSIDs) AS CollectionMembers
WHERE CollectionMembers.CollectionID = @CollectionID
    AND CollectionMembers.ResourceType IN (4, 5); --Only Users or Devices

/* User collection query */
IF @CollectionType = 1
    BEGIN
        SELECT DISTINCT
            UserName         = CollectionMembership.SMSID
            , PackageName    = Package.Name
            , ProgramName    = Advertisment.ProgramName
            , CollectionName = Deployment.CollectionName
            , Purpose        = (
                CASE
                    WHEN Advertisment.AssignedScheduleEnabled = 0
                    THEN 'Available'
                    ELSE 'Required'
                END
            )
            , LastStateName  = AdvertismentStatus.LastStateName
            , Device         = 'Device'         -- Needed in order to be able to save the report.
            , Manufacturer   = 'Manufacturer'   -- Needed in order to be able to save the report.
            , DeviceType     = 'DeviceType'     -- Needed in order to be able to save the report.
            , ChassisType    = 'ChassisType'    -- Needed in order to be able to save the report.
            , SerialNumber   = 'SerialNumber'   -- Needed in order to be able to save the report.
            , PrimaryUser    = 'PrimaryUser'    -- Needed in order to be able to save the report.
            , TopConsoleUser = 'TopConsoleUser' -- Needed in order to be able to save the report.
        FROM v_Advertisement AS Advertisment
            INNER JOIN v_Package AS Package ON Package.PackageID = Advertisment.PackageID
            LEFT JOIN v_ClientAdvertisementStatus AS AdvertismentStatus ON AdvertismentStatus.AdvertisementID = Advertisment.AdvertisementID
            INNER JOIN vClassicDeployments AS Deployment ON Deployment.DeploymentID = Advertisment.AdvertisementID
            INNER JOIN fn_rbac_FullCollectionMembership(@UserSIDs) AS CollectionMembership ON CollectionMembership.CollectionID = Advertisment.CollectionID
                AND ResourceType = 4 -- Ony Users
        WHERE CollectionMembership.SMSID IN (
            SELECT SMSID
            FROM @CollectionMembers
            WHERE ResourceType = 4 -- Ony Users
        )
    END;

/* Device collection query */
IF @CollectionType = 2
    BEGIN
        SELECT DISTINCT
            Device           = Devices.Name
			, PrimaryUser    = Devices.PrimaryUser
            , TopConsoleUser = Console.TopConsoleUser0
            , Manufacturer   = Enclosure.Manufacturer0
            , DeviceType     = (
                CASE
                    WHEN Enclosure.ChassisTypes0 IN (8, 9, 10, 11, 12, 14, 18, 21, 31, 32) THEN 'Laptop'
                    WHEN Enclosure.ChassisTypes0 IN (3, 4, 5, 6, 7, 15, 16) THEN 'Desktop'
                    WHEN Enclosure.ChassisTypes0 IN (17, 23, 28, 29) THEN 'Servers'
                    WHEN Enclosure.ChassisTypes0 = '30' THEN 'Tablet'
                    ELSE 'Unknown'
                END
            )
            , ChassisTypes   = (
                CASE Enclosure.ChassisTypes0
                    WHEN '1' THEN 'Other'
                    WHEN '2' THEN 'Unknown'
                    WHEN '3' THEN 'Desktop'
                    WHEN '4' THEN 'Low Profile Desktop'
                    WHEN '5' THEN 'Pizza Box'
                    WHEN '6' THEN 'Mini Tower'
                    WHEN '7' THEN 'Tower'
                    WHEN '8' THEN 'Portable'
                    WHEN '9' THEN 'Laptop'
                    WHEN '10' THEN 'Notebook'
                    WHEN '11' THEN 'Hand Held'
                    WHEN '12' THEN 'Docking Station'
                    WHEN '13' THEN 'All in One'
                    WHEN '14' THEN 'Sub Notebook'
                    WHEN '15' THEN 'Space-Saving'
                    WHEN '16' THEN 'Lunch Box'
                    WHEN '17' THEN 'Main System Chassis'
                    WHEN '18' THEN 'Expansion Chassis'
                    WHEN '19' THEN 'SubChassis'
                    WHEN '20' THEN 'Bus Expansion Chassis'
                    WHEN '21' THEN 'Peripheral Chassis'
                    WHEN '22' THEN 'Storage Chassis'
                    WHEN '23' THEN 'Rack Mount Chassis'
                    WHEN '24' THEN 'Sealed-Case PC'
                    WHEN '25' THEN 'Multi-system chassis'
                    WHEN '26' THEN 'Compact PCI'
                    WHEN '27' THEN 'Advanced TCA'
                    WHEN '28' THEN 'Blade'
                    WHEN '29' THEN 'Blade Enclosure'
                    WHEN '30' THEN 'Tablet'
                    WHEN '31' THEN 'Convertible'
                    WHEN '32' THEN 'Detachable'
                    ELSE 'Undefinded'
                END
            )
            , SerialNumber   = Enclosure.SerialNumber0
            , PackageName    = Package.Name
            , ProgramName    = Advertisment.ProgramName
            , CollectionName = Deployment.CollectionName
            , Purpose        = (
                CASE
                    WHEN Deployment.Purpose = 0
                    THEN 'Available'
                    ELSE 'Required'
                END
            )
            , LastStateName  = AdvertismentStatus.LastStateName
        FROM v_Advertisement AS Advertisment
            JOIN v_Package AS Package ON Package.PackageID = Advertisment.PackageID
            JOIN v_ClientAdvertisementStatus AS AdvertismentStatus ON AdvertismentStatus.AdvertisementID = Advertisment.AdvertisementID
            JOIN v_CombinedDeviceResources AS Devices ON Devices.MachineID = AdvertismentStatus.ResourceID
			LEFT JOIN v_GS_SYSTEM_ENCLOSURE AS Enclosure ON Enclosure.ResourceID = Devices.MachineID
			LEFT JOIN v_GS_SYSTEM_CONSOLE_USAGE AS Console ON Console.ResourceID = Devices.MachineID
            JOIN vClassicDeployments AS Deployment ON Deployment.CollectionID = Advertisment.CollectionID
                AND Advertisment.ProgramName != '*' -- Only Programs
        WHERE Devices.isClient = 1
            AND Devices.MachineID IN (
                SELECT ResourceID
                FROM @CollectionMembers
                WHERE ResourceType = 5 -- Only Devices
            )
    END;

/*##=============================================*/
/*## END QUERY BODY                              */
/*##=============================================*/</CommandText>
        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
      </Query>
      <Fields>
        <Field Name="UserName">
          <DataField>UserName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="PackageName">
          <DataField>PackageName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="ProgramName">
          <DataField>ProgramName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="CollectionName">
          <DataField>CollectionName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="Device">
          <DataField>Device</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="Manufacturer">
          <DataField>Manufacturer</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="LastStateName">
          <DataField>LastStateName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="DeviceType">
          <DataField>DeviceType</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="SerialNumber">
          <DataField>SerialNumber</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="Purpose">
          <DataField>Purpose</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="ChassisType">
          <DataField>ChassisType</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="PrimaryUser">
          <DataField>PrimaryUser</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="TopConsoleUser">
          <DataField>TopConsoleUser</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
      </Fields>
    </DataSet>
  </DataSets>
  <ReportSections>
    <ReportSection>
      <Body>
        <ReportItems>
          <Tablix Name="ReportDescriptionTablix">
            <TablixBody>
              <TablixColumns>
                <TablixColumn>
                  <Width>1.47018in</Width>
                </TablixColumn>
                <TablixColumn>
                  <Width>8.35556in</Width>
                </TablixColumn>
              </TablixColumns>
              <TablixRows>
                <TablixRow>
                  <Height>0.4in</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="Report_DescriptionLabel">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=SrsResources.Localization.GetString("Description", User!Language)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style />
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="Report_DescriptionText">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>Lists the application or package deployments for a device or user collection</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style />
                            </Paragraph>
                          </Paragraphs>
                          <Visibility>
                            <ToggleItem>Report_DescriptionLabel</ToggleItem>
                          </Visibility>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <PaddingLeft>5pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
              </TablixRows>
            </TablixBody>
            <TablixColumnHierarchy>
              <TablixMembers>
                <TablixMember />
                <TablixMember />
              </TablixMembers>
            </TablixColumnHierarchy>
            <TablixRowHierarchy>
              <TablixMembers>
                <TablixMember />
              </TablixMembers>
            </TablixRowHierarchy>
            <DataSetName>CollectionInfo</DataSetName>
            <Top>0.03194in</Top>
            <Left>0.12701cm</Left>
            <Height>0.4in</Height>
            <Width>9.82574in</Width>
            <Style>
              <Border>
                <Style>None</Style>
              </Border>
            </Style>
          </Tablix>
          <Line Name="ReportDescriptionLine2">
            <Top>0.46065in</Top>
            <Left>0.05in</Left>
            <Height>0in</Height>
            <Width>21.67536in</Width>
            <ZIndex>1</ZIndex>
            <Style>
              <Border>
                <Style>Double</Style>
                <Width>1.5pt</Width>
              </Border>
              <TopBorder>
                <Style>Double</Style>
                <Width>1.5pt</Width>
              </TopBorder>
              <BottomBorder>
                <Style>Double</Style>
                <Width>1.5pt</Width>
              </BottomBorder>
              <LeftBorder>
                <Style>Double</Style>
                <Width>1.5pt</Width>
              </LeftBorder>
              <RightBorder>
                <Style>Double</Style>
                <Width>1.5pt</Width>
              </RightBorder>
            </Style>
          </Line>
          <Tablix Name="ApplicationDeploymentsDevice">
            <TablixBody>
              <TablixColumns>
                <TablixColumn>
                  <Width>1.75917cm</Width>
                </TablixColumn>
              </TablixColumns>
              <TablixRows>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="ADD_TH_Total">
                          <CanGrow>true</CanGrow>
                          <UserSort>
                            <SortExpression>=Sum(CountDistinct(Fields!SoftwareName.Value))</SortExpression>
                            <SortExpressionScope>ADD_Device</SortExpressionScope>
                          </UserSort>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=SrsResources.Localization.GetString("Total", User!Language)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <TopBorder>
                              <Style>Solid</Style>
                            </TopBorder>
                            <BottomBorder>
                              <Style>Solid</Style>
                            </BottomBorder>
                            <BackgroundColor>LightGrey</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="ADD_TV_Total_SoftwareName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!SoftwareName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="ADD_TV_Total_CollectionName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!CollectionName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <BackgroundColor>WhiteSmoke</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="Texbox122">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value />
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="ADD_TV_Total_TotalComputers">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!Device.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <BackgroundColor>LightGrey</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
              </TablixRows>
            </TablixBody>
            <TablixColumnHierarchy>
              <TablixMembers>
                <TablixMember />
              </TablixMembers>
            </TablixColumnHierarchy>
            <TablixRowHierarchy>
              <TablixMembers>
                <TablixMember>
                  <TablixHeader>
                    <Size>4.15982cm</Size>
                    <CellContents>
                      <Textbox Name="ADD_TH_Device">
                        <CanGrow>true</CanGrow>
                        <UserSort>
                          <SortExpression>=Fields!Device.Value</SortExpression>
                          <SortExpressionScope>ADD_Device</SortExpressionScope>
                        </UserSort>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>=SrsResources.Localization.GetString("Device", User!Language)</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontWeight>Bold</FontWeight>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style>
                              <TextAlign>Center</TextAlign>
                            </Style>
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <TopBorder>
                            <Style>Solid</Style>
                          </TopBorder>
                          <BottomBorder>
                            <Style>Solid</Style>
                          </BottomBorder>
                          <BackgroundColor>LightGrey</BackgroundColor>
                          <VerticalAlign>Middle</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>3.67281cm</Size>
                        <CellContents>
                          <Textbox Name="ADD_TH_Manufacturer">
                            <CanGrow>true</CanGrow>
                            <UserSort>
                              <SortExpression>=Fields!Manufacturer.Value</SortExpression>
                              <SortExpressionScope>ADD_Device</SortExpressionScope>
                            </UserSort>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value>=SrsResources.Localization.GetString("Manufacturer", User!Language)</Value>
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontWeight>Bold</FontWeight>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style>
                                  <TextAlign>Center</TextAlign>
                                </Style>
                              </Paragraph>
                            </Paragraphs>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <TopBorder>
                                <Style>Solid</Style>
                              </TopBorder>
                              <BottomBorder>
                                <Style>Solid</Style>
                              </BottomBorder>
                              <BackgroundColor>LightGrey</BackgroundColor>
                              <VerticalAlign>Middle</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>2.963cm</Size>
                            <CellContents>
                              <Textbox Name="ADD_TH_DeviceType">
                                <CanGrow>true</CanGrow>
                                <UserSort>
                                  <SortExpression>=Fields!DeviceType.Value</SortExpression>
                                  <SortExpressionScope>ADD_Device</SortExpressionScope>
                                </UserSort>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value>=SrsResources.Localization.GetString("Type", User!Language)</Value>
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontWeight>Bold</FontWeight>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style>
                                      <TextAlign>Center</TextAlign>
                                    </Style>
                                  </Paragraph>
                                </Paragraphs>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <TopBorder>
                                    <Style>Solid</Style>
                                  </TopBorder>
                                  <BottomBorder>
                                    <Style>Solid</Style>
                                  </BottomBorder>
                                  <BackgroundColor>LightGrey</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>3.16146cm</Size>
                                <CellContents>
                                  <Textbox Name="ADD_TH_ChassisType">
                                    <CanGrow>true</CanGrow>
                                    <UserSort>
                                      <SortExpression>=Fields!ChassisType.Value</SortExpression>
                                      <SortExpressionScope>ADD_Device</SortExpressionScope>
                                    </UserSort>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value>=SrsResources.Localization.GetString("Chassis", User!Language)</Value>
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontWeight>Bold</FontWeight>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <TopBorder>
                                        <Style>Solid</Style>
                                      </TopBorder>
                                      <BottomBorder>
                                        <Style>Solid</Style>
                                      </BottomBorder>
                                      <BackgroundColor>LightGrey</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.01642cm</Size>
                                    <CellContents>
                                      <Textbox Name="ADD_TH_SerialNumber">
                                        <CanGrow>true</CanGrow>
                                        <UserSort>
                                          <SortExpression>=Fields!SerialNumber.Value</SortExpression>
                                          <SortExpressionScope>ADD_Device</SortExpressionScope>
                                        </UserSort>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=SrsResources.Localization.GetString("SerialNumber", User!Language)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <BottomBorder>
                                            <Style>Solid</Style>
                                          </BottomBorder>
                                          <BackgroundColor>LightGrey</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>2.95713cm</Size>
                                        <CellContents>
                                          <Textbox Name="ADD_TH_PrimaryUser">
                                            <CanGrow>true</CanGrow>
                                            <UserSort>
                                              <SortExpression>=Fields!PrimaryUser.Value</SortExpression>
                                              <SortExpressionScope>ADD_Device</SortExpressionScope>
                                            </UserSort>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value>=SrsResources.Localization.GetString("PrmaryUser", User!Language)</Value>
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontWeight>Bold</FontWeight>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <TopBorder>
                                                <Style>Solid</Style>
                                              </TopBorder>
                                              <BottomBorder>
                                                <Style>Solid</Style>
                                              </BottomBorder>
                                              <BackgroundColor>LightGrey</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>4.25917cm</Size>
                                            <CellContents>
                                              <Textbox Name="ADD_TH_TopConsoleUser">
                                                <CanGrow>true</CanGrow>
                                                <UserSort>
                                                  <SortExpression>=Fields!TopConsoleUser.Value</SortExpression>
                                                  <SortExpressionScope>ADD_Device</SortExpressionScope>
                                                </UserSort>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value>=SrsResources.Localization.GetString("TopConsoleUser", User!Language)</Value>
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                          <FontWeight>Bold</FontWeight>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style>
                                                      <TextAlign>Center</TextAlign>
                                                    </Style>
                                                  </Paragraph>
                                                </Paragraphs>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <TopBorder>
                                                    <Style>Solid</Style>
                                                  </TopBorder>
                                                  <BottomBorder>
                                                    <Style>Solid</Style>
                                                  </BottomBorder>
                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                  <VerticalAlign>Middle</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>11.09923cm</Size>
                                                <CellContents>
                                                  <Textbox Name="ADD_TH_SoftwareName">
                                                    <CanGrow>true</CanGrow>
                                                    <UserSort>
                                                      <SortExpression>=Fields!SoftwareName.Value</SortExpression>
                                                      <SortExpressionScope>ADD_SoftwareName</SortExpressionScope>
                                                    </UserSort>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value>=SrsResources.Localization.GetString("Software", User!Language)</Value>
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontWeight>Bold</FontWeight>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style>
                                                          <TextAlign>Center</TextAlign>
                                                        </Style>
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <TopBorder>
                                                        <Style>Solid</Style>
                                                      </TopBorder>
                                                      <BottomBorder>
                                                        <Style>Solid</Style>
                                                      </BottomBorder>
                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                      <VerticalAlign>Middle</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>7.52983cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="ADD_TH_CollectionName">
                                                        <CanGrow>true</CanGrow>
                                                        <UserSort>
                                                          <SortExpression>=Fields!CollectionName.Value</SortExpression>
                                                          <SortExpressionScope>ADD_CollectionName</SortExpressionScope>
                                                        </UserSort>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value>=SrsResources.Localization.GetString("Collection", User!Language)</Value>
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontWeight>Bold</FontWeight>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style>
                                                              <TextAlign>Center</TextAlign>
                                                            </Style>
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <TopBorder>
                                                            <Style>Solid</Style>
                                                          </TopBorder>
                                                          <BottomBorder>
                                                            <Style>Solid</Style>
                                                          </BottomBorder>
                                                          <BackgroundColor>LightGrey</BackgroundColor>
                                                          <VerticalAlign>Middle</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.5cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="ADD_TH_Purpose">
                                                            <CanGrow>true</CanGrow>
                                                            <UserSort>
                                                              <SortExpression>=Fields!Purpose.Value</SortExpression>
                                                            </UserSort>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value>=SrsResources.Localization.GetString("Purpose", User!Language)</Value>
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontWeight>Bold</FontWeight>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style>
                                                                  <TextAlign>Center</TextAlign>
                                                                </Style>
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <TopBorder>
                                                                <Color>Black</Color>
                                                                <Style>Solid</Style>
                                                                <Width>1pt</Width>
                                                              </TopBorder>
                                                              <BottomBorder>
                                                                <Color>Black</Color>
                                                                <Style>Solid</Style>
                                                                <Width>1pt</Width>
                                                              </BottomBorder>
                                                              <BackgroundColor>LightGrey</BackgroundColor>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.67343cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="ADD_TH_InstalledBy">
                                                                <CanGrow>true</CanGrow>
                                                                <UserSort>
                                                                  <SortExpression>=Fields!InstalledBy.Value</SortExpression>
                                                                </UserSort>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value>=SrsResources.Localization.GetString("Installed By", User!Language)</Value>
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontWeight>Bold</FontWeight>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style>
                                                                      <TextAlign>Center</TextAlign>
                                                                    </Style>
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <TopBorder>
                                                                    <Color>Black</Color>
                                                                    <Style>Solid</Style>
                                                                    <Width>1pt</Width>
                                                                  </TopBorder>
                                                                  <BottomBorder>
                                                                    <Color>Black</Color>
                                                                    <Style>Solid</Style>
                                                                    <Width>1pt</Width>
                                                                  </BottomBorder>
                                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.29114cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="ADD_TH_EnforcementState">
                                                                    <CanGrow>true</CanGrow>
                                                                    <UserSort>
                                                                      <SortExpression>=Fields!EnforcementState.Value</SortExpression>
                                                                    </UserSort>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value>=SrsResources.Localization.GetString("EnforcementState", User!Language)</Value>
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontWeight>Bold</FontWeight>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <TopBorder>
                                                                        <Color>Black</Color>
                                                                        <Style>Solid</Style>
                                                                        <Width>1pt</Width>
                                                                      </TopBorder>
                                                                      <BottomBorder>
                                                                        <Color>Black</Color>
                                                                        <Style>Solid</Style>
                                                                        <Width>1pt</Width>
                                                                      </BottomBorder>
                                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                </TablixMember>
                <TablixMember>
                  <Group Name="ADD_Device">
                    <GroupExpressions>
                      <GroupExpression>=Fields!Device.Value</GroupExpression>
                    </GroupExpressions>
                  </Group>
                  <SortExpressions>
                    <SortExpression>
                      <Value>=Fields!Device.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!Manufacturer.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!ChassisType.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!DeviceType.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!SerialNumber.Value</Value>
                    </SortExpression>
                  </SortExpressions>
                  <TablixHeader>
                    <Size>4.15982cm</Size>
                    <CellContents>
                      <Textbox Name="ADD_TV_Device">
                        <CanGrow>true</CanGrow>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>=Fields!Device.Value</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontSize>9pt</FontSize>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style />
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <VerticalAlign>Top</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>3.67281cm</Size>
                        <CellContents>
                          <Textbox Name="ADD_TV_Manufacturer">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value>=Fields!Manufacturer.Value</Value>
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontSize>9pt</FontSize>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <VerticalAlign>Top</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>2.963cm</Size>
                            <CellContents>
                              <Textbox Name="ADD_TV_DeviceType">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value>=Fields!DeviceType.Value</Value>
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontSize>9pt</FontSize>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <VerticalAlign>Top</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>3.16146cm</Size>
                                <CellContents>
                                  <Textbox Name="ADD_TV_ChassisType">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value>=Fields!ChassisType.Value</Value>
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style />
                                      </Paragraph>
                                    </Paragraphs>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <VerticalAlign>Top</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.01642cm</Size>
                                    <CellContents>
                                      <Textbox Name="ADD_TV_SerialNumber">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!SerialNumber.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>2.95713cm</Size>
                                        <CellContents>
                                          <Textbox Name="ADD_TV_PrimaryUser">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value>=Fields!PrimaryUser.Value</Value>
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style />
                                              </Paragraph>
                                            </Paragraphs>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <VerticalAlign>Top</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>4.25917cm</Size>
                                            <CellContents>
                                              <Textbox Name="ADD_TV_TopConsoleUser">
                                                <CanGrow>true</CanGrow>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value>=Fields!TopConsoleUser.Value</Value>
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                          <FontSize>9pt</FontSize>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style />
                                                  </Paragraph>
                                                </Paragraphs>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <VerticalAlign>Top</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>11.09923cm</Size>
                                                <CellContents>
                                                  <Textbox Name="Textbox910">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value />
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontSize>9pt</FontSize>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <rd:DefaultName>Textbox906</rd:DefaultName>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <VerticalAlign>Top</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>7.52983cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox906">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox906</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <VerticalAlign>Top</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.5cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox19">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style>
                                                                  <TextAlign>Center</TextAlign>
                                                                </Style>
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox19</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.67343cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox907">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style />
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox907</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <VerticalAlign>Top</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.29114cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox928">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox928</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                              <KeepWithGroup>After</KeepWithGroup>
                                            </TablixMember>
                                            <TablixMember>
                                              <Group Name="ADD_SoftwareName">
                                                <GroupExpressions>
                                                  <GroupExpression>=Fields!SoftwareName.Value</GroupExpression>
                                                </GroupExpressions>
                                              </Group>
                                              <SortExpressions>
                                                <SortExpression>
                                                  <Value>=Fields!SoftwareName.Value</Value>
                                                </SortExpression>
                                              </SortExpressions>
                                              <TablixHeader>
                                                <Size>11.09923cm</Size>
                                                <CellContents>
                                                  <Textbox Name="ADD_TV_SoftwareName">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value>=Fields!SoftwareName.Value</Value>
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontSize>9pt</FontSize>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                      <VerticalAlign>Top</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>7.52983cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox32">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style>
                                                              <TextAlign>Center</TextAlign>
                                                            </Style>
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox30</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                          <VerticalAlign>Middle</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.5cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox20">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style>
                                                                  <TextAlign>Center</TextAlign>
                                                                </Style>
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox20</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.67343cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox912">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style />
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox912</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                                  <VerticalAlign>Top</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.29114cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox929">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox929</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                  <KeepWithGroup>After</KeepWithGroup>
                                                </TablixMember>
                                                <TablixMember>
                                                  <Group Name="ADD_CollectionName">
                                                    <GroupExpressions>
                                                      <GroupExpression>=Fields!CollectionName.Value</GroupExpression>
                                                    </GroupExpressions>
                                                  </Group>
                                                  <SortExpressions>
                                                    <SortExpression>
                                                      <Value>=Fields!CollectionName.Value</Value>
                                                    </SortExpression>
                                                  </SortExpressions>
                                                  <TablixHeader>
                                                    <Size>7.52983cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="ADD_TV_CollectionName">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value>=Fields!CollectionName.Value</Value>
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <VerticalAlign>Top</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <Group Name="ADD_Details" />
                                                      <SortExpressions>
                                                        <SortExpression>
                                                          <Value>=Fields!Purpose.Value</Value>
                                                        </SortExpression>
                                                      </SortExpressions>
                                                      <TablixHeader>
                                                        <Size>2.5cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="ADD_TV_Purpose">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value>=Fields!Purpose.Value</Value>
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style>
                                                                  <TextAlign>Center</TextAlign>
                                                                </Style>
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.67343cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="ADD_TV_InstalledBy">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value>=Fields!InstalledBy.Value</Value>
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style />
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <VerticalAlign>Top</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.29114cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="ADD_TV_EnforcementState">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value>=SrsResources.Localization.GetStateMessage(1702, Fields!EnforcementState.Value, User!Language)</Value>
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                  <Visibility>
                                                    <Hidden>true</Hidden>
                                                    <ToggleItem>ADD_TV_SoftwareName</ToggleItem>
                                                  </Visibility>
                                                </TablixMember>
                                              </TablixMembers>
                                              <Visibility>
                                                <Hidden>true</Hidden>
                                                <ToggleItem>ADD_TV_Device</ToggleItem>
                                              </Visibility>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                </TablixMember>
                <TablixMember>
                  <TablixHeader>
                    <Size>4.15982cm</Size>
                    <CellContents>
                      <Textbox Name="ADD_TV_MachineName_Total">
                        <CanGrow>true</CanGrow>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>Total</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontWeight>Bold</FontWeight>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style />
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <BackgroundColor>LightGrey</BackgroundColor>
                          <VerticalAlign>Middle</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>3.67281cm</Size>
                        <CellContents>
                          <Textbox Name="Textbox12">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value />
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <rd:DefaultName>Textbox12</rd:DefaultName>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <BackgroundColor>LightGrey</BackgroundColor>
                              <VerticalAlign>Middle</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>2.963cm</Size>
                            <CellContents>
                              <Textbox Name="Textbox22">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value />
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <rd:DefaultName>Textbox21</rd:DefaultName>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <BackgroundColor>LightGrey</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>3.16146cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox35">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style />
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox28</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <BackgroundColor>LightGrey</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.01642cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox5">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox5</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BackgroundColor>LightGrey</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>2.95713cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox215">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style />
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox215</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <BackgroundColor>LightGrey</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>4.25917cm</Size>
                                            <CellContents>
                                              <Textbox Name="Textbox220">
                                                <CanGrow>true</CanGrow>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value />
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style />
                                                  </Paragraph>
                                                </Paragraphs>
                                                <rd:DefaultName>Textbox220</rd:DefaultName>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                  <VerticalAlign>Middle</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>11.09923cm</Size>
                                                <CellContents>
                                                  <Textbox Name="Textbox899">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value />
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <rd:DefaultName>Textbox899</rd:DefaultName>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                      <VerticalAlign>Middle</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>7.52983cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox902">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox900</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <BackgroundColor>LightGrey</BackgroundColor>
                                                          <VerticalAlign>Middle</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.5cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox27">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style>
                                                                  <TextAlign>Center</TextAlign>
                                                                </Style>
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox23</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <BackgroundColor>LightGrey</BackgroundColor>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.67343cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox903">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style />
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox901</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.29114cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox932">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox932</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                  <KeepWithGroup>Before</KeepWithGroup>
                </TablixMember>
              </TablixMembers>
            </TablixRowHierarchy>
            <DataSetName>ApplicationDeployments</DataSetName>
            <Top>4.2836cm</Top>
            <Left>0.13981cm</Left>
            <Height>3cm</Height>
            <Width>55.04261cm</Width>
            <ZIndex>2</ZIndex>
            <Visibility>
              <Hidden>=IIF((Parameters!CollectionType.Value = 2 AND Parameters!DeploymentType.Value = 1 ), False, True)</Hidden>
            </Visibility>
            <Style>
              <Border>
                <Style>None</Style>
              </Border>
            </Style>
          </Tablix>
          <Tablix Name="ApplicationDeploymentsUser">
            <TablixBody>
              <TablixColumns>
                <TablixColumn>
                  <Width>1.75917cm</Width>
                </TablixColumn>
              </TablixColumns>
              <TablixRows>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="ADU_TH_Total">
                          <CanGrow>true</CanGrow>
                          <UserSort>
                            <SortExpression>=Sum(CountDistinct(Fields!SoftwareName.Value))</SortExpression>
                            <SortExpressionScope>ADU_UserName</SortExpressionScope>
                          </UserSort>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=SrsResources.Localization.GetString("Total", User!Language)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <TopBorder>
                              <Style>Solid</Style>
                            </TopBorder>
                            <BottomBorder>
                              <Style>Solid</Style>
                            </BottomBorder>
                            <BackgroundColor>LightGrey</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="ADU_TV_Total_SoftwareName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=Count(Fields!SoftwareName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="ADU_TV_Total_CollectionName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=Count(Fields!CollectionName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <BackgroundColor>WhiteSmoke</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="Texbox123">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value />
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="ADU_TV_Total_TotalUsers">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!UserName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <BackgroundColor>LightGrey</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
              </TablixRows>
            </TablixBody>
            <TablixColumnHierarchy>
              <TablixMembers>
                <TablixMember />
              </TablixMembers>
            </TablixColumnHierarchy>
            <TablixRowHierarchy>
              <TablixMembers>
                <TablixMember>
                  <TablixHeader>
                    <Size>5.19755cm</Size>
                    <CellContents>
                      <Textbox Name="ADU_TH_UserName">
                        <CanGrow>true</CanGrow>
                        <UserSort>
                          <SortExpression>=Fields!UserName.Value</SortExpression>
                          <SortExpressionScope>ADU_UserName</SortExpressionScope>
                        </UserSort>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>=SrsResources.Localization.GetString("User", User!Language)</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontWeight>Bold</FontWeight>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style>
                              <TextAlign>Center</TextAlign>
                            </Style>
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <TopBorder>
                            <Style>Solid</Style>
                          </TopBorder>
                          <BottomBorder>
                            <Style>Solid</Style>
                          </BottomBorder>
                          <BackgroundColor>LightGrey</BackgroundColor>
                          <VerticalAlign>Middle</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>10.15889cm</Size>
                        <CellContents>
                          <Textbox Name="ADU_TH_SoftwareName">
                            <CanGrow>true</CanGrow>
                            <UserSort>
                              <SortExpression>=Fields!SoftwareName.Value</SortExpression>
                              <SortExpressionScope>ADU_SoftwareName</SortExpressionScope>
                            </UserSort>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value>=SrsResources.Localization.GetString("SoftwareName", User!Language)</Value>
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontWeight>Bold</FontWeight>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style>
                                  <TextAlign>Center</TextAlign>
                                </Style>
                              </Paragraph>
                            </Paragraphs>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <TopBorder>
                                <Style>Solid</Style>
                              </TopBorder>
                              <BottomBorder>
                                <Style>Solid</Style>
                              </BottomBorder>
                              <BackgroundColor>LightGrey</BackgroundColor>
                              <VerticalAlign>Middle</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>8.83015cm</Size>
                            <CellContents>
                              <Textbox Name="ADU_TH_CollectionName">
                                <CanGrow>true</CanGrow>
                                <UserSort>
                                  <SortExpression>=Fields!CollectionName.Value</SortExpression>
                                  <SortExpressionScope>ADU_CollectionName</SortExpressionScope>
                                </UserSort>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value>=SrsResources.Localization.GetString("Collection", User!Language)</Value>
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontWeight>Bold</FontWeight>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style>
                                      <TextAlign>Center</TextAlign>
                                    </Style>
                                  </Paragraph>
                                </Paragraphs>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <TopBorder>
                                    <Style>Solid</Style>
                                  </TopBorder>
                                  <BottomBorder>
                                    <Style>Solid</Style>
                                  </BottomBorder>
                                  <BackgroundColor>LightGrey</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>2.5cm</Size>
                                <CellContents>
                                  <Textbox Name="ADU_TH_Purpose">
                                    <CanGrow>true</CanGrow>
                                    <UserSort>
                                      <SortExpression>=Fields!Purpose.Value</SortExpression>
                                    </UserSort>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value>=SrsResources.Localization.GetString("Purpose", User!Language)</Value>
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontWeight>Bold</FontWeight>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <TopBorder>
                                        <Color>Black</Color>
                                        <Style>Solid</Style>
                                        <Width>1pt</Width>
                                      </TopBorder>
                                      <BottomBorder>
                                        <Color>Black</Color>
                                        <Style>Solid</Style>
                                        <Width>1pt</Width>
                                      </BottomBorder>
                                      <BackgroundColor>LightGrey</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.49235cm</Size>
                                    <CellContents>
                                      <Textbox Name="ADU_TH_Device">
                                        <CanGrow>true</CanGrow>
                                        <UserSort>
                                          <SortExpression>=Fields!Device.Value</SortExpression>
                                        </UserSort>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=SrsResources.Localization.GetString("Computer", User!Language)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Color>Black</Color>
                                            <Style>Solid</Style>
                                            <Width>1pt</Width>
                                          </TopBorder>
                                          <BottomBorder>
                                            <Color>Black</Color>
                                            <Style>Solid</Style>
                                            <Width>1pt</Width>
                                          </BottomBorder>
                                          <BackgroundColor>LightGrey</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>3.4184cm</Size>
                                        <CellContents>
                                          <Textbox Name="ADU_TH_Manufacturer">
                                            <CanGrow>true</CanGrow>
                                            <UserSort>
                                              <SortExpression>=Fields!Manufacturer.Value</SortExpression>
                                            </UserSort>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value>=SrsResources.Localization.GetString("Manufacturer", User!Language)</Value>
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontWeight>Bold</FontWeight>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <TopBorder>
                                                <Color>Black</Color>
                                                <Style>Solid</Style>
                                                <Width>1pt</Width>
                                              </TopBorder>
                                              <BottomBorder>
                                                <Color>Black</Color>
                                                <Style>Solid</Style>
                                                <Width>1pt</Width>
                                              </BottomBorder>
                                              <BackgroundColor>LightGrey</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>2.87071cm</Size>
                                            <CellContents>
                                              <Textbox Name="ADU_TH_DeviceType">
                                                <CanGrow>true</CanGrow>
                                                <UserSort>
                                                  <SortExpression>=Fields!DeviceType.Value</SortExpression>
                                                </UserSort>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value>=SrsResources.Localization.GetString("Type", User!Language)</Value>
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                          <FontWeight>Bold</FontWeight>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style>
                                                      <TextAlign>Center</TextAlign>
                                                    </Style>
                                                  </Paragraph>
                                                </Paragraphs>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <TopBorder>
                                                    <Color>Black</Color>
                                                    <Style>Solid</Style>
                                                    <Width>1pt</Width>
                                                  </TopBorder>
                                                  <BottomBorder>
                                                    <Color>Black</Color>
                                                    <Style>Solid</Style>
                                                    <Width>1pt</Width>
                                                  </BottomBorder>
                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                  <VerticalAlign>Middle</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>3.05563cm</Size>
                                                <CellContents>
                                                  <Textbox Name="ADU_TH_ChassisType">
                                                    <CanGrow>true</CanGrow>
                                                    <UserSort>
                                                      <SortExpression>=Fields!ChassisType.Value</SortExpression>
                                                    </UserSort>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value>=SrsResources.Localization.GetString("Chassis", User!Language)</Value>
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontWeight>Bold</FontWeight>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style>
                                                          <TextAlign>Center</TextAlign>
                                                        </Style>
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <TopBorder>
                                                        <Color>Black</Color>
                                                        <Style>Solid</Style>
                                                        <Width>1pt</Width>
                                                      </TopBorder>
                                                      <BottomBorder>
                                                        <Color>Black</Color>
                                                        <Style>Solid</Style>
                                                        <Width>1pt</Width>
                                                      </BottomBorder>
                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                      <VerticalAlign>Middle</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>2.61954cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="ADU_TH_SerialNumber">
                                                        <CanGrow>true</CanGrow>
                                                        <UserSort>
                                                          <SortExpression>=Fields!SerialNumber.Value</SortExpression>
                                                        </UserSort>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value>=SrsResources.Localization.GetString("SerialNumber", User!Language)</Value>
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontWeight>Bold</FontWeight>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style>
                                                              <TextAlign>Center</TextAlign>
                                                            </Style>
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <TopBorder>
                                                            <Color>Black</Color>
                                                            <Style>Solid</Style>
                                                            <Width>1pt</Width>
                                                          </TopBorder>
                                                          <BottomBorder>
                                                            <Color>Black</Color>
                                                            <Style>Solid</Style>
                                                            <Width>1pt</Width>
                                                          </BottomBorder>
                                                          <BackgroundColor>LightGrey</BackgroundColor>
                                                          <VerticalAlign>Middle</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.86422cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="ADU_TH_PrimaryUser">
                                                            <CanGrow>true</CanGrow>
                                                            <UserSort>
                                                              <SortExpression>=Fields!PrimaryUser.Value</SortExpression>
                                                              <SortExpressionScope>ADD_Device</SortExpressionScope>
                                                            </UserSort>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value>=SrsResources.Localization.GetString("PrmaryUser", User!Language)</Value>
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontWeight>Bold</FontWeight>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style>
                                                                  <TextAlign>Center</TextAlign>
                                                                </Style>
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <TopBorder>
                                                                <Style>Solid</Style>
                                                              </TopBorder>
                                                              <BottomBorder>
                                                                <Style>Solid</Style>
                                                              </BottomBorder>
                                                              <BackgroundColor>LightGrey</BackgroundColor>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.87582cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="ADD_TH_TopConsoleUser2">
                                                                <CanGrow>true</CanGrow>
                                                                <UserSort>
                                                                  <SortExpression>=Fields!TopConsoleUser.Value</SortExpression>
                                                                  <SortExpressionScope>ADD_Device</SortExpressionScope>
                                                                </UserSort>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value>=SrsResources.Localization.GetString("TopConsoleUser", User!Language)</Value>
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontWeight>Bold</FontWeight>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style>
                                                                      <TextAlign>Center</TextAlign>
                                                                    </Style>
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <TopBorder>
                                                                    <Style>Solid</Style>
                                                                  </TopBorder>
                                                                  <BottomBorder>
                                                                    <Style>Solid</Style>
                                                                  </BottomBorder>
                                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.40018cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="ADU_TH_EnforcementState">
                                                                    <CanGrow>true</CanGrow>
                                                                    <UserSort>
                                                                      <SortExpression>=Fields!EnforcementState.Value</SortExpression>
                                                                    </UserSort>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value>=SrsResources.Localization.GetString("EnforcementState", User!Language)</Value>
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontWeight>Bold</FontWeight>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <TopBorder>
                                                                        <Color>Black</Color>
                                                                        <Style>Solid</Style>
                                                                        <Width>1pt</Width>
                                                                      </TopBorder>
                                                                      <BottomBorder>
                                                                        <Color>Black</Color>
                                                                        <Style>Solid</Style>
                                                                        <Width>1pt</Width>
                                                                      </BottomBorder>
                                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                </TablixMember>
                <TablixMember>
                  <Group Name="ADU_UserName">
                    <GroupExpressions>
                      <GroupExpression>=Fields!UserName.Value</GroupExpression>
                    </GroupExpressions>
                  </Group>
                  <SortExpressions>
                    <SortExpression>
                      <Value>=Fields!UserName.Value</Value>
                    </SortExpression>
                  </SortExpressions>
                  <TablixHeader>
                    <Size>5.19755cm</Size>
                    <CellContents>
                      <Textbox Name="ADU_TV_UserName">
                        <CanGrow>true</CanGrow>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>=Fields!UserName.Value</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontSize>9pt</FontSize>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style />
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <VerticalAlign>Top</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                      <rd:Selected>true</rd:Selected>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>10.15889cm</Size>
                        <CellContents>
                          <Textbox Name="Textbox911">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value />
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontSize>9pt</FontSize>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <rd:DefaultName>Textbox906</rd:DefaultName>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <VerticalAlign>Top</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>8.83015cm</Size>
                            <CellContents>
                              <Textbox Name="Textbox908">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value />
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontSize>9pt</FontSize>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <rd:DefaultName>Textbox906</rd:DefaultName>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <VerticalAlign>Top</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>2.5cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox29">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox29</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.49235cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox909">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox907</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>3.4184cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox42">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style />
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox42</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <VerticalAlign>Top</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>2.87071cm</Size>
                                            <CellContents>
                                              <Textbox Name="Textbox37">
                                                <CanGrow>true</CanGrow>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value />
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                          <FontSize>9pt</FontSize>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style />
                                                  </Paragraph>
                                                </Paragraphs>
                                                <rd:DefaultName>Textbox37</rd:DefaultName>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <VerticalAlign>Top</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>3.05563cm</Size>
                                                <CellContents>
                                                  <Textbox Name="Textbox47">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value />
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontSize>9pt</FontSize>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <rd:DefaultName>Textbox47</rd:DefaultName>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <VerticalAlign>Top</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>2.61954cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox17">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox17</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <VerticalAlign>Top</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.86422cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox234">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style />
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox234</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <VerticalAlign>Top</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.87582cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox229">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style />
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox229</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <VerticalAlign>Top</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.40018cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox931">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox928</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                      <KeepWithGroup>After</KeepWithGroup>
                    </TablixMember>
                    <TablixMember>
                      <Group Name="ADU_SoftwareName">
                        <GroupExpressions>
                          <GroupExpression>=Fields!SoftwareName.Value</GroupExpression>
                        </GroupExpressions>
                      </Group>
                      <SortExpressions>
                        <SortExpression>
                          <Value>=Fields!SoftwareName.Value</Value>
                        </SortExpression>
                      </SortExpressions>
                      <TablixHeader>
                        <Size>10.15889cm</Size>
                        <CellContents>
                          <Textbox Name="ADU_TV_SoftwareName">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value>=Fields!SoftwareName.Value</Value>
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontSize>9pt</FontSize>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <BackgroundColor>WhiteSmoke</BackgroundColor>
                              <VerticalAlign>Top</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>8.83015cm</Size>
                            <CellContents>
                              <Textbox Name="Textbox31">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value />
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontSize>9pt</FontSize>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style>
                                      <TextAlign>Center</TextAlign>
                                    </Style>
                                  </Paragraph>
                                </Paragraphs>
                                <rd:DefaultName>Textbox30</rd:DefaultName>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <BackgroundColor>WhiteSmoke</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>2.5cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox30">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox30</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <BackgroundColor>WhiteSmoke</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.49235cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox913">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox912</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BackgroundColor>WhiteSmoke</BackgroundColor>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>3.4184cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox43">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style />
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox43</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <BackgroundColor>WhiteSmoke</BackgroundColor>
                                              <VerticalAlign>Top</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>2.87071cm</Size>
                                            <CellContents>
                                              <Textbox Name="Textbox38">
                                                <CanGrow>true</CanGrow>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value />
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                          <FontSize>9pt</FontSize>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style />
                                                  </Paragraph>
                                                </Paragraphs>
                                                <rd:DefaultName>Textbox38</rd:DefaultName>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                  <VerticalAlign>Top</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>3.05563cm</Size>
                                                <CellContents>
                                                  <Textbox Name="Textbox48">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value />
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontSize>9pt</FontSize>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <rd:DefaultName>Textbox48</rd:DefaultName>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                      <VerticalAlign>Top</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>2.61954cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox18">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox18</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                          <VerticalAlign>Top</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.86422cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox235">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style />
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox235</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                              <VerticalAlign>Top</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.87582cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox230">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style />
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox230</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                                  <VerticalAlign>Top</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.40018cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox933">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox929</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <BackgroundColor>WhiteSmoke</BackgroundColor>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                          <KeepWithGroup>After</KeepWithGroup>
                        </TablixMember>
                        <TablixMember>
                          <Group Name="ADU_CollectionName">
                            <GroupExpressions>
                              <GroupExpression>=Fields!CollectionName.Value</GroupExpression>
                            </GroupExpressions>
                          </Group>
                          <SortExpressions>
                            <SortExpression>
                              <Value>=Fields!CollectionName.Value</Value>
                            </SortExpression>
                          </SortExpressions>
                          <TablixHeader>
                            <Size>8.83015cm</Size>
                            <CellContents>
                              <Textbox Name="ADU_TV_CollectionName">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value>=Fields!CollectionName.Value</Value>
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontSize>9pt</FontSize>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <VerticalAlign>Top</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <Group Name="ADU_Details" />
                              <SortExpressions>
                                <SortExpression>
                                  <Value>=Fields!Purpose.Value</Value>
                                </SortExpression>
                                <SortExpression>
                                  <Value>=Fields!Manufacturer.Value</Value>
                                </SortExpression>
                                <SortExpression>
                                  <Value>=Fields!DeviceType.Value</Value>
                                </SortExpression>
                                <SortExpression>
                                  <Value>=Fields!ChassisType.Value</Value>
                                </SortExpression>
                                <SortExpression>
                                  <Value>=Fields!SerialNumber.Value</Value>
                                </SortExpression>
                                <SortExpression>
                                  <Value>=Fields!EnforcementState.Value</Value>
                                </SortExpression>
                                <SortExpression>
                                  <Value>=Fields!Device.Value</Value>
                                </SortExpression>
                              </SortExpressions>
                              <TablixHeader>
                                <Size>2.5cm</Size>
                                <CellContents>
                                  <Textbox Name="ADU_TV_Purpose">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value>=Fields!Purpose.Value</Value>
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.49235cm</Size>
                                    <CellContents>
                                      <Textbox Name="ADU_TV_MachineName">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!Device.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>3.4184cm</Size>
                                        <CellContents>
                                          <Textbox Name="ADU_TV_Manufacturer">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value>=Fields!Manufacturer.Value</Value>
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style />
                                              </Paragraph>
                                            </Paragraphs>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <VerticalAlign>Top</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>2.87071cm</Size>
                                            <CellContents>
                                              <Textbox Name="ADU_TV_ComputerType">
                                                <CanGrow>true</CanGrow>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value>=Fields!DeviceType.Value</Value>
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                          <FontSize>9pt</FontSize>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style />
                                                  </Paragraph>
                                                </Paragraphs>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <VerticalAlign>Top</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>3.05563cm</Size>
                                                <CellContents>
                                                  <Textbox Name="ADU_TV_ChassisType">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value>=Fields!ChassisType.Value</Value>
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontSize>9pt</FontSize>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <VerticalAlign>Top</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>2.61954cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="ADU_TV_SerialNumber">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value>=Fields!SerialNumber.Value</Value>
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <VerticalAlign>Top</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.86422cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="ADU_TV_PrimaryUser">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value>=Fields!PrimaryUser.Value</Value>
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style />
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <VerticalAlign>Top</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.87582cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="ADU_TV_TopConsoleUser">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value>=Fields!TopConsoleUser.Value</Value>
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style />
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <VerticalAlign>Top</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.40018cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="ADU_TV_EnforcementState">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value>=SrsResources.Localization.GetStateMessage(1702, Fields!EnforcementState.Value, User!Language)</Value>
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                          <Visibility>
                            <Hidden>true</Hidden>
                            <ToggleItem>ADU_TV_SoftwareName</ToggleItem>
                          </Visibility>
                        </TablixMember>
                      </TablixMembers>
                      <Visibility>
                        <Hidden>true</Hidden>
                        <ToggleItem>ADU_TV_UserName</ToggleItem>
                      </Visibility>
                    </TablixMember>
                  </TablixMembers>
                </TablixMember>
                <TablixMember>
                  <TablixHeader>
                    <Size>5.19755cm</Size>
                    <CellContents>
                      <Textbox Name="ADU_TV_UserName_Total">
                        <CanGrow>true</CanGrow>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>Total</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontWeight>Bold</FontWeight>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style />
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <BackgroundColor>LightGrey</BackgroundColor>
                          <VerticalAlign>Middle</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>10.15889cm</Size>
                        <CellContents>
                          <Textbox Name="Textbox904">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value />
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <rd:DefaultName>Textbox899</rd:DefaultName>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <BackgroundColor>LightGrey</BackgroundColor>
                              <VerticalAlign>Middle</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>8.83015cm</Size>
                            <CellContents>
                              <Textbox Name="Textbox905">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value />
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <rd:DefaultName>Textbox900</rd:DefaultName>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <BackgroundColor>LightGrey</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>2.5cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox33">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox33</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <BackgroundColor>LightGrey</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.49235cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox914">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox901</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BackgroundColor>LightGrey</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>3.4184cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox45">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style />
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox45</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <BackgroundColor>LightGrey</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>2.87071cm</Size>
                                            <CellContents>
                                              <Textbox Name="Textbox40">
                                                <CanGrow>true</CanGrow>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value />
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style />
                                                  </Paragraph>
                                                </Paragraphs>
                                                <rd:DefaultName>Textbox40</rd:DefaultName>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                  <VerticalAlign>Middle</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>3.05563cm</Size>
                                                <CellContents>
                                                  <Textbox Name="Textbox50">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value />
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <rd:DefaultName>Textbox50</rd:DefaultName>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                      <VerticalAlign>Middle</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>2.61954cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox23">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox22</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <BackgroundColor>LightGrey</BackgroundColor>
                                                          <VerticalAlign>Middle</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>2.86422cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox237">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style />
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox237</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <BackgroundColor>LightGrey</BackgroundColor>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>3.87582cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox232">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style />
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox232</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>4.40018cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox935">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox932</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                  <KeepWithGroup>Before</KeepWithGroup>
                </TablixMember>
              </TablixMembers>
            </TablixRowHierarchy>
            <DataSetName>ApplicationDeployments</DataSetName>
            <Top>1.26206cm</Top>
            <Left>0.1398cm</Left>
            <Height>3cm</Height>
            <Width>55.04261cm</Width>
            <ZIndex>3</ZIndex>
            <Visibility>
              <Hidden>=IIF((Parameters!CollectionType.Value = 1 AND Parameters!DeploymentType.Value = 1 ), False, True)</Hidden>
            </Visibility>
            <Style>
              <Border>
                <Style>None</Style>
              </Border>
            </Style>
          </Tablix>
          <Tablix Name="PackageDeploymentsUser">
            <TablixBody>
              <TablixColumns>
                <TablixColumn>
                  <Width>1.75917cm</Width>
                </TablixColumn>
              </TablixColumns>
              <TablixRows>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDU_TH_Total">
                          <CanGrow>true</CanGrow>
                          <UserSort>
                            <SortExpression>=Sum(CountDistinct(Fields!PackageName.Value))</SortExpression>
                            <SortExpressionScope>PDU_UserName</SortExpressionScope>
                          </UserSort>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=SrsResources.Localization.GetString("Total", User!Language)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <TopBorder>
                              <Style>Solid</Style>
                            </TopBorder>
                            <BottomBorder>
                              <Style>Solid</Style>
                            </BottomBorder>
                            <BackgroundColor>LightGrey</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDU_TV_Total_PackageName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!PackageName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDU_TV_Total_ProgramName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!ProgramName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <BackgroundColor>WhiteSmoke</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDU_TV_Total_CollectionName2">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!CollectionName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="Texbox124">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value />
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <BackgroundColor>WhiteSmoke</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDU_TV_Total_TotalUsers">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!UserName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <BackgroundColor>LightGrey</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
              </TablixRows>
            </TablixBody>
            <TablixColumnHierarchy>
              <TablixMembers>
                <TablixMember />
              </TablixMembers>
            </TablixColumnHierarchy>
            <TablixRowHierarchy>
              <TablixMembers>
                <TablixMember>
                  <TablixHeader>
                    <Size>5.09774cm</Size>
                    <CellContents>
                      <Textbox Name="PDU_TH_UserName">
                        <CanGrow>true</CanGrow>
                        <UserSort>
                          <SortExpression>=Fields!UserName.Value</SortExpression>
                          <SortExpressionScope>PDU_UserName</SortExpressionScope>
                        </UserSort>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>=SrsResources.Localization.GetString("UserName", User!Language)</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontWeight>Bold</FontWeight>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style>
                              <TextAlign>Center</TextAlign>
                            </Style>
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <TopBorder>
                            <Style>Solid</Style>
                          </TopBorder>
                          <BottomBorder>
                            <Style>Solid</Style>
                          </BottomBorder>
                          <BackgroundColor>LightGrey</BackgroundColor>
                          <VerticalAlign>Middle</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>14.82406cm</Size>
                        <CellContents>
                          <Textbox Name="PDU_TH_PackageName">
                            <CanGrow>true</CanGrow>
                            <UserSort>
                              <SortExpression>=Fields!PackageName.Value</SortExpression>
                              <SortExpressionScope>PDU_PackageName</SortExpressionScope>
                            </UserSort>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value>=SrsResources.Localization.GetString("Package", User!Language)</Value>
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontWeight>Bold</FontWeight>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style>
                                  <TextAlign>Center</TextAlign>
                                </Style>
                              </Paragraph>
                            </Paragraphs>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <TopBorder>
                                <Style>Solid</Style>
                              </TopBorder>
                              <BottomBorder>
                                <Style>Solid</Style>
                              </BottomBorder>
                              <BackgroundColor>LightGrey</BackgroundColor>
                              <VerticalAlign>Middle</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>12.52742cm</Size>
                            <CellContents>
                              <Textbox Name="PDU_TH_ProgramName">
                                <CanGrow>true</CanGrow>
                                <UserSort>
                                  <SortExpression>=Fields!ProgramName.Value</SortExpression>
                                  <SortExpressionScope>PDU_ProgramName</SortExpressionScope>
                                </UserSort>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value>=SrsResources.Localization.GetString("Program", User!Language)</Value>
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontWeight>Bold</FontWeight>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style>
                                      <TextAlign>Center</TextAlign>
                                    </Style>
                                  </Paragraph>
                                </Paragraphs>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <TopBorder>
                                    <Style>Solid</Style>
                                  </TopBorder>
                                  <BottomBorder>
                                    <Style>Solid</Style>
                                  </BottomBorder>
                                  <BackgroundColor>LightGrey</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>12.99105cm</Size>
                                <CellContents>
                                  <Textbox Name="PDU_TH_CollectionName">
                                    <CanGrow>true</CanGrow>
                                    <UserSort>
                                      <SortExpression>=Fields!CollectionName.Value</SortExpression>
                                      <SortExpressionScope>PDU_CollectionName</SortExpressionScope>
                                    </UserSort>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value>=SrsResources.Localization.GetString("Collection", User!Language)</Value>
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontWeight>Bold</FontWeight>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <TopBorder>
                                        <Style>Solid</Style>
                                      </TopBorder>
                                      <BottomBorder>
                                        <Style>Solid</Style>
                                      </BottomBorder>
                                      <BackgroundColor>LightGrey</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.51667cm</Size>
                                    <CellContents>
                                      <Textbox Name="PDU_TH_Purpose">
                                        <CanGrow>true</CanGrow>
                                        <UserSort>
                                          <SortExpression>=Fields!Purpose.Value</SortExpression>
                                        </UserSort>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=SrsResources.Localization.GetString("Purpose", User!Language)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Color>Black</Color>
                                            <Style>Solid</Style>
                                            <Width>1pt</Width>
                                          </TopBorder>
                                          <BottomBorder>
                                            <Color>Black</Color>
                                            <Style>Solid</Style>
                                            <Width>1pt</Width>
                                          </BottomBorder>
                                          <BackgroundColor>LightGrey</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>4.32651cm</Size>
                                        <CellContents>
                                          <Textbox Name="PDU_TH_LastStateName">
                                            <CanGrow>true</CanGrow>
                                            <UserSort>
                                              <SortExpression>=Fields!LastStateName.Value</SortExpression>
                                            </UserSort>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value>=SrsResources.Localization.GetString("State", User!Language)</Value>
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontWeight>Bold</FontWeight>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <TopBorder>
                                                <Style>Solid</Style>
                                              </TopBorder>
                                              <BottomBorder>
                                                <Style>Solid</Style>
                                              </BottomBorder>
                                              <BackgroundColor>LightGrey</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember />
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                </TablixMember>
                <TablixMember>
                  <Group Name="PDU_UserName">
                    <GroupExpressions>
                      <GroupExpression>=Fields!UserName.Value</GroupExpression>
                    </GroupExpressions>
                  </Group>
                  <SortExpressions>
                    <SortExpression>
                      <Value>=Fields!UserName.Value</Value>
                    </SortExpression>
                  </SortExpressions>
                  <TablixHeader>
                    <Size>5.09774cm</Size>
                    <CellContents>
                      <Textbox Name="PDU_TV_UserName">
                        <CanGrow>true</CanGrow>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>=Fields!UserName.Value</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontSize>9pt</FontSize>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style />
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <VerticalAlign>Top</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>14.82406cm</Size>
                        <CellContents>
                          <Textbox Name="Textbox915">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value />
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontSize>9pt</FontSize>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <rd:DefaultName>Textbox906</rd:DefaultName>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <VerticalAlign>Top</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>12.52742cm</Size>
                            <CellContents>
                              <Textbox Name="Textbox916">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value />
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontSize>9pt</FontSize>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <rd:DefaultName>Textbox906</rd:DefaultName>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <VerticalAlign>Top</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>12.99105cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox917">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style />
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox907</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <VerticalAlign>Top</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.51667cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox2">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox2</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>4.32651cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox934">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox928</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember />
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                      <KeepWithGroup>After</KeepWithGroup>
                    </TablixMember>
                    <TablixMember>
                      <Group Name="PDU_PackageName">
                        <GroupExpressions>
                          <GroupExpression>=Fields!PackageName.Value</GroupExpression>
                        </GroupExpressions>
                      </Group>
                      <SortExpressions>
                        <SortExpression>
                          <Value>=Fields!PackageName.Value</Value>
                        </SortExpression>
                      </SortExpressions>
                      <TablixHeader>
                        <Size>14.82406cm</Size>
                        <CellContents>
                          <Textbox Name="PDU_TV_PackageName">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value>=Fields!PackageName.Value</Value>
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontSize>9pt</FontSize>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <BackgroundColor>WhiteSmoke</BackgroundColor>
                              <VerticalAlign>Top</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>12.52742cm</Size>
                            <CellContents>
                              <Textbox Name="Textbox918">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value />
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontSize>9pt</FontSize>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <rd:DefaultName>Textbox912</rd:DefaultName>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <BackgroundColor>WhiteSmoke</BackgroundColor>
                                  <VerticalAlign>Top</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>12.99105cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox919">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style />
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox912</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <BackgroundColor>WhiteSmoke</BackgroundColor>
                                      <VerticalAlign>Top</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.51667cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox3">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox3</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BackgroundColor>WhiteSmoke</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>4.32651cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox936">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox929</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <BackgroundColor>WhiteSmoke</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember />
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                          <KeepWithGroup>After</KeepWithGroup>
                        </TablixMember>
                        <TablixMember>
                          <Group Name="PDU_ProgramName">
                            <GroupExpressions>
                              <GroupExpression>=Fields!ProgramName.Value</GroupExpression>
                            </GroupExpressions>
                          </Group>
                          <SortExpressions>
                            <SortExpression>
                              <Value>=Fields!ProgramName.Value</Value>
                            </SortExpression>
                          </SortExpressions>
                          <TablixHeader>
                            <Size>12.52742cm</Size>
                            <CellContents>
                              <Textbox Name="PDU_TV_ProgramName">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value>=Fields!ProgramName.Value</Value>
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontSize>9pt</FontSize>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <VerticalAlign>Top</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>12.99105cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox41">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox37</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.51667cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox4">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox4</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>4.32651cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox937">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox930</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember />
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                              <KeepWithGroup>After</KeepWithGroup>
                            </TablixMember>
                            <TablixMember>
                              <Group Name="PDU_CollectionName">
                                <GroupExpressions>
                                  <GroupExpression>=Fields!CollectionName.Value</GroupExpression>
                                </GroupExpressions>
                              </Group>
                              <SortExpressions>
                                <SortExpression>
                                  <Value>=Fields!CollectionName.Value</Value>
                                </SortExpression>
                              </SortExpressions>
                              <TablixHeader>
                                <Size>12.99105cm</Size>
                                <CellContents>
                                  <Textbox Name="PDU_TV_MachineName">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value>=Fields!CollectionName.Value</Value>
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style />
                                      </Paragraph>
                                    </Paragraphs>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <BackgroundColor>WhiteSmoke</BackgroundColor>
                                      <VerticalAlign>Top</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <Group Name="PDU_Details" />
                                  <SortExpressions>
                                    <SortExpression>
                                      <Value>=Fields!Purpose.Value</Value>
                                    </SortExpression>
                                  </SortExpressions>
                                  <TablixHeader>
                                    <Size>3.51667cm</Size>
                                    <CellContents>
                                      <Textbox Name="PDU_TV_Purpose">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!Purpose.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BackgroundColor>WhiteSmoke</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>4.32651cm</Size>
                                        <CellContents>
                                          <Textbox Name="PDU_TV_LastStateName">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value>=Fields!LastStateName.Value</Value>
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <BackgroundColor>WhiteSmoke</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember />
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                              <Visibility>
                                <Hidden>true</Hidden>
                                <ToggleItem>PDU_TV_ProgramName</ToggleItem>
                              </Visibility>
                            </TablixMember>
                          </TablixMembers>
                          <Visibility>
                            <Hidden>true</Hidden>
                            <ToggleItem>PDU_TV_PackageName</ToggleItem>
                          </Visibility>
                        </TablixMember>
                      </TablixMembers>
                      <Visibility>
                        <Hidden>true</Hidden>
                        <ToggleItem>PDU_TV_UserName</ToggleItem>
                      </Visibility>
                    </TablixMember>
                  </TablixMembers>
                </TablixMember>
                <TablixMember>
                  <TablixHeader>
                    <Size>5.09774cm</Size>
                    <CellContents>
                      <Textbox Name="PDU_TV_UserName_Total">
                        <CanGrow>true</CanGrow>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>Total</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontWeight>Bold</FontWeight>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style />
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <BackgroundColor>LightGrey</BackgroundColor>
                          <VerticalAlign>Middle</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>14.82406cm</Size>
                        <CellContents>
                          <Textbox Name="Textbox920">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value />
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <rd:DefaultName>Textbox899</rd:DefaultName>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <BackgroundColor>LightGrey</BackgroundColor>
                              <VerticalAlign>Middle</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>12.52742cm</Size>
                            <CellContents>
                              <Textbox Name="Textbox921">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value />
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <rd:DefaultName>Textbox900</rd:DefaultName>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <BackgroundColor>LightGrey</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>12.99105cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox922">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style />
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox901</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <BackgroundColor>LightGrey</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>3.51667cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox6">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox6</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BackgroundColor>LightGrey</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>4.32651cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox938">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox932</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <BackgroundColor>LightGrey</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember />
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                  <KeepWithGroup>Before</KeepWithGroup>
                </TablixMember>
              </TablixMembers>
            </TablixRowHierarchy>
            <DataSetName>PackageDeployments</DataSetName>
            <Top>7.30147cm</Top>
            <Left>0.13981cm</Left>
            <Height>3.6cm</Height>
            <Width>55.04261cm</Width>
            <ZIndex>4</ZIndex>
            <Visibility>
              <Hidden>=IIF((Parameters!CollectionType.Value = 1 AND Parameters!DeploymentType.Value = 2 ), False, True)</Hidden>
            </Visibility>
            <Style>
              <Border>
                <Style>None</Style>
              </Border>
            </Style>
          </Tablix>
          <Tablix Name="PackageDeploymentsDevice">
            <TablixBody>
              <TablixColumns>
                <TablixColumn>
                  <Width>1.75917cm</Width>
                </TablixColumn>
              </TablixColumns>
              <TablixRows>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDD_TH_Total">
                          <CanGrow>true</CanGrow>
                          <UserSort>
                            <SortExpression>=Sum(CountDistinct(Fields!PackageName.Value))</SortExpression>
                            <SortExpressionScope>PDD_Device</SortExpressionScope>
                          </UserSort>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=SrsResources.Localization.GetString("Total", User!Language)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <TopBorder>
                              <Style>Solid</Style>
                            </TopBorder>
                            <BottomBorder>
                              <Style>Solid</Style>
                            </BottomBorder>
                            <BackgroundColor>LightGrey</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDD_TV_Total_PackageName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!PackageName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDD_TV_Total_ProgramName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!ProgramName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDD_TV_Total_CollectionName">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!CollectionName.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="Texbox125">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value />
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>9pt</FontSize>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
                <TablixRow>
                  <Height>0.6cm</Height>
                  <TablixCells>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="PDD_TV_Total_TotalComputers">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=CountDistinct(Fields!Device.Value)</Value>
                                  <Style>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontWeight>Bold</FontWeight>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Center</TextAlign>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <BackgroundColor>LightGrey</BackgroundColor>
                            <VerticalAlign>Middle</VerticalAlign>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </CellContents>
                    </TablixCell>
                  </TablixCells>
                </TablixRow>
              </TablixRows>
            </TablixBody>
            <TablixColumnHierarchy>
              <TablixMembers>
                <TablixMember />
              </TablixMembers>
            </TablixColumnHierarchy>
            <TablixRowHierarchy>
              <TablixMembers>
                <TablixMember>
                  <TablixHeader>
                    <Size>3.46649cm</Size>
                    <CellContents>
                      <Textbox Name="PDD_TH_Device">
                        <CanGrow>true</CanGrow>
                        <UserSort>
                          <SortExpression>=Fields!Device.Value</SortExpression>
                          <SortExpressionScope>PDD_Device</SortExpressionScope>
                        </UserSort>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>=SrsResources.Localization.GetString("Device", User!Language)</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontWeight>Bold</FontWeight>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style>
                              <TextAlign>Center</TextAlign>
                            </Style>
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <TopBorder>
                            <Style>Solid</Style>
                          </TopBorder>
                          <BottomBorder>
                            <Style>Solid</Style>
                          </BottomBorder>
                          <BackgroundColor>LightGrey</BackgroundColor>
                          <VerticalAlign>Middle</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>3.50631cm</Size>
                        <CellContents>
                          <Textbox Name="PDD_TH_Manufacturer">
                            <CanGrow>true</CanGrow>
                            <UserSort>
                              <SortExpression>=Fields!Manufacturer.Value</SortExpression>
                              <SortExpressionScope>PDD_Device</SortExpressionScope>
                            </UserSort>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value>=SrsResources.Localization.GetString("Manufacturer", User!Language)</Value>
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontWeight>Bold</FontWeight>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style>
                                  <TextAlign>Center</TextAlign>
                                </Style>
                              </Paragraph>
                            </Paragraphs>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <TopBorder>
                                <Style>Solid</Style>
                              </TopBorder>
                              <BottomBorder>
                                <Style>Solid</Style>
                              </BottomBorder>
                              <BackgroundColor>LightGrey</BackgroundColor>
                              <VerticalAlign>Middle</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>2.66353cm</Size>
                            <CellContents>
                              <Textbox Name="PDD_TH_DeviceType">
                                <CanGrow>true</CanGrow>
                                <UserSort>
                                  <SortExpression>=Fields!DeviceType.Value</SortExpression>
                                  <SortExpressionScope>PDD_Device</SortExpressionScope>
                                </UserSort>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value>=SrsResources.Localization.GetString("Type", User!Language)</Value>
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontWeight>Bold</FontWeight>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style>
                                      <TextAlign>Center</TextAlign>
                                    </Style>
                                  </Paragraph>
                                </Paragraphs>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <TopBorder>
                                    <Style>Solid</Style>
                                  </TopBorder>
                                  <BottomBorder>
                                    <Style>Solid</Style>
                                  </BottomBorder>
                                  <BackgroundColor>LightGrey</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>3.135cm</Size>
                                <CellContents>
                                  <Textbox Name="PDD_TH_ChassisType">
                                    <CanGrow>true</CanGrow>
                                    <UserSort>
                                      <SortExpression>=Fields!ChassisType.Value</SortExpression>
                                      <SortExpressionScope>PDD_Device</SortExpressionScope>
                                    </UserSort>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value>=SrsResources.Localization.GetString("Chassis", User!Language)</Value>
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontWeight>Bold</FontWeight>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style>
                                          <TextAlign>Center</TextAlign>
                                        </Style>
                                      </Paragraph>
                                    </Paragraphs>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <TopBorder>
                                        <Style>Solid</Style>
                                      </TopBorder>
                                      <BottomBorder>
                                        <Style>Solid</Style>
                                      </BottomBorder>
                                      <BackgroundColor>LightGrey</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>2.8175cm</Size>
                                    <CellContents>
                                      <Textbox Name="PDD_TH_SerialNumber">
                                        <CanGrow>true</CanGrow>
                                        <UserSort>
                                          <SortExpression>=Fields!SerialNumber.Value</SortExpression>
                                          <SortExpressionScope>PDD_Device</SortExpressionScope>
                                        </UserSort>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=SrsResources.Localization.GetString("SerialNumber", User!Language)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Center</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <BottomBorder>
                                            <Style>Solid</Style>
                                          </BottomBorder>
                                          <BackgroundColor>LightGrey</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>2.8175cm</Size>
                                        <CellContents>
                                          <Textbox Name="PDD_TH_PrimaryUser">
                                            <CanGrow>true</CanGrow>
                                            <UserSort>
                                              <SortExpression>=Fields!PrimaryUser.Value</SortExpression>
                                              <SortExpressionScope>PDD_Device</SortExpressionScope>
                                            </UserSort>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value>=SrsResources.Localization.GetString("PrmaryUser", User!Language)</Value>
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontWeight>Bold</FontWeight>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style>
                                                  <TextAlign>Center</TextAlign>
                                                </Style>
                                              </Paragraph>
                                            </Paragraphs>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <TopBorder>
                                                <Style>Solid</Style>
                                              </TopBorder>
                                              <BottomBorder>
                                                <Style>Solid</Style>
                                              </BottomBorder>
                                              <BackgroundColor>LightGrey</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>3.50542cm</Size>
                                            <CellContents>
                                              <Textbox Name="PDD_TH_TopConsoleUser">
                                                <CanGrow>true</CanGrow>
                                                <UserSort>
                                                  <SortExpression>=Fields!TopConsoleUser.Value</SortExpression>
                                                  <SortExpressionScope>PDD_Device</SortExpressionScope>
                                                </UserSort>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value>=SrsResources.Localization.GetString("TopConsoleUser", User!Language)</Value>
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                          <FontWeight>Bold</FontWeight>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style>
                                                      <TextAlign>Center</TextAlign>
                                                    </Style>
                                                  </Paragraph>
                                                </Paragraphs>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <TopBorder>
                                                    <Style>Solid</Style>
                                                  </TopBorder>
                                                  <BottomBorder>
                                                    <Style>Solid</Style>
                                                  </BottomBorder>
                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                  <VerticalAlign>Middle</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>9.23052cm</Size>
                                                <CellContents>
                                                  <Textbox Name="PDD_TH_PackageName">
                                                    <CanGrow>true</CanGrow>
                                                    <UserSort>
                                                      <SortExpression>=Fields!PackageName.Value</SortExpression>
                                                      <SortExpressionScope>PDD_PackageName</SortExpressionScope>
                                                    </UserSort>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value>=SrsResources.Localization.GetString("Package", User!Language)</Value>
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontWeight>Bold</FontWeight>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style>
                                                          <TextAlign>Center</TextAlign>
                                                        </Style>
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <TopBorder>
                                                        <Style>Solid</Style>
                                                      </TopBorder>
                                                      <BottomBorder>
                                                        <Style>Solid</Style>
                                                      </BottomBorder>
                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                      <VerticalAlign>Middle</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>8.09165cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="PDD_TH_ProgramName">
                                                        <CanGrow>true</CanGrow>
                                                        <UserSort>
                                                          <SortExpression>=Fields!ProgramName.Value</SortExpression>
                                                          <SortExpressionScope>PDD_PackageName</SortExpressionScope>
                                                        </UserSort>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value>=SrsResources.Localization.GetString("Program", User!Language)</Value>
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontWeight>Bold</FontWeight>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style>
                                                              <TextAlign>Center</TextAlign>
                                                            </Style>
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <TopBorder>
                                                            <Style>Solid</Style>
                                                          </TopBorder>
                                                          <BottomBorder>
                                                            <Style>Solid</Style>
                                                          </BottomBorder>
                                                          <BackgroundColor>LightGrey</BackgroundColor>
                                                          <VerticalAlign>Middle</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>7.87167cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="PDD_TH_CollectionName">
                                                            <CanGrow>true</CanGrow>
                                                            <UserSort>
                                                              <SortExpression>=Fields!CollectionName.Value</SortExpression>
                                                              <SortExpressionScope>PDD_CollectionName</SortExpressionScope>
                                                            </UserSort>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value>=SrsResources.Localization.GetString("Colection", User!Language)</Value>
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontWeight>Bold</FontWeight>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style>
                                                                  <TextAlign>Center</TextAlign>
                                                                </Style>
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <TopBorder>
                                                                <Style>Solid</Style>
                                                              </TopBorder>
                                                              <BottomBorder>
                                                                <Style>Solid</Style>
                                                              </BottomBorder>
                                                              <BackgroundColor>LightGrey</BackgroundColor>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>2.5cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="PDD_TH_Purpose">
                                                                <CanGrow>true</CanGrow>
                                                                <UserSort>
                                                                  <SortExpression>=Fields!Purpose.Value</SortExpression>
                                                                </UserSort>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value>=SrsResources.Localization.GetString("Purpose", User!Language)</Value>
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontWeight>Bold</FontWeight>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style>
                                                                      <TextAlign>Center</TextAlign>
                                                                    </Style>
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <TopBorder>
                                                                    <Color>Black</Color>
                                                                    <Style>Solid</Style>
                                                                    <Width>1pt</Width>
                                                                  </TopBorder>
                                                                  <BottomBorder>
                                                                    <Color>Black</Color>
                                                                    <Style>Solid</Style>
                                                                    <Width>1pt</Width>
                                                                  </BottomBorder>
                                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>3.67785cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="PDD_TH_LastStateName">
                                                                    <CanGrow>true</CanGrow>
                                                                    <UserSort>
                                                                      <SortExpression>=Fields!LastStateName.Value</SortExpression>
                                                                    </UserSort>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value>=SrsResources.Localization.GetString("State", User!Language)</Value>
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontWeight>Bold</FontWeight>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <TopBorder>
                                                                        <Color>Black</Color>
                                                                        <Style>Solid</Style>
                                                                        <Width>1pt</Width>
                                                                      </TopBorder>
                                                                      <BottomBorder>
                                                                        <Color>Black</Color>
                                                                        <Style>Solid</Style>
                                                                        <Width>1pt</Width>
                                                                      </BottomBorder>
                                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                </TablixMember>
                <TablixMember>
                  <Group Name="PDD_Device">
                    <GroupExpressions>
                      <GroupExpression>=Fields!Device.Value</GroupExpression>
                    </GroupExpressions>
                  </Group>
                  <SortExpressions>
                    <SortExpression>
                      <Value>=Fields!Device.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!Manufacturer.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!DeviceType.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!ChassisType.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!SerialNumber.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!PrimaryUser.Value</Value>
                    </SortExpression>
                    <SortExpression>
                      <Value>=Fields!TopConsoleUser.Value</Value>
                    </SortExpression>
                  </SortExpressions>
                  <TablixHeader>
                    <Size>3.46649cm</Size>
                    <CellContents>
                      <Textbox Name="PDD_TV_Device">
                        <CanGrow>true</CanGrow>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>=Fields!Device.Value</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontSize>9pt</FontSize>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style />
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <VerticalAlign>Top</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>3.50631cm</Size>
                        <CellContents>
                          <Textbox Name="PDD_TV_Manufacturer">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value>=Fields!Manufacturer.Value</Value>
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                      <FontSize>9pt</FontSize>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <VerticalAlign>Top</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>2.66353cm</Size>
                            <CellContents>
                              <Textbox Name="PDD_TV_DeviceType">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value>=Fields!DeviceType.Value</Value>
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                          <FontSize>9pt</FontSize>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <VerticalAlign>Top</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>3.135cm</Size>
                                <CellContents>
                                  <Textbox Name="PDD_TV_ChassisType">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value>=Fields!ChassisType.Value</Value>
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                              <FontSize>9pt</FontSize>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style />
                                      </Paragraph>
                                    </Paragraphs>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <VerticalAlign>Top</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>2.8175cm</Size>
                                    <CellContents>
                                      <Textbox Name="PDD_TV_SerialNumber">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!SerialNumber.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>9pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>2.8175cm</Size>
                                        <CellContents>
                                          <Textbox Name="PDD_TV_PrimaryUser">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value>=Fields!PrimaryUser.Value</Value>
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                      <FontSize>9pt</FontSize>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style />
                                              </Paragraph>
                                            </Paragraphs>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <VerticalAlign>Top</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>3.50542cm</Size>
                                            <CellContents>
                                              <Textbox Name="PDD_TV_TopConsoleUser">
                                                <CanGrow>true</CanGrow>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value>=Fields!TopConsoleUser.Value</Value>
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                          <FontSize>9pt</FontSize>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style />
                                                  </Paragraph>
                                                </Paragraphs>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <VerticalAlign>Top</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>9.23052cm</Size>
                                                <CellContents>
                                                  <Textbox Name="Textbox923">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value />
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontSize>9pt</FontSize>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <rd:DefaultName>Textbox906</rd:DefaultName>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <VerticalAlign>Top</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>8.09165cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox924">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox906</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <VerticalAlign>Top</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>7.87167cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox925">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style />
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox907</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <VerticalAlign>Top</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>2.5cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox36">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style>
                                                                      <TextAlign>Center</TextAlign>
                                                                    </Style>
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox35</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>3.67785cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox930">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox928</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                              <KeepWithGroup>After</KeepWithGroup>
                                            </TablixMember>
                                            <TablixMember>
                                              <Group Name="PDD_PackageName">
                                                <GroupExpressions>
                                                  <GroupExpression>=Fields!PackageName.Value</GroupExpression>
                                                </GroupExpressions>
                                              </Group>
                                              <SortExpressions>
                                                <SortExpression>
                                                  <Value>=Fields!PackageName.Value</Value>
                                                </SortExpression>
                                              </SortExpressions>
                                              <TablixHeader>
                                                <Size>9.23052cm</Size>
                                                <CellContents>
                                                  <Textbox Name="PDD_TV_PackageName">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value>=Fields!PackageName.Value</Value>
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                              <FontSize>9pt</FontSize>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <VerticalAlign>Top</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>8.09165cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox926">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox912</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <VerticalAlign>Top</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>7.87167cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox927">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style />
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox912</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <VerticalAlign>Top</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>2.5cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox39">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style>
                                                                      <TextAlign>Center</TextAlign>
                                                                    </Style>
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox36</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>3.67785cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox939">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox929</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                  <KeepWithGroup>After</KeepWithGroup>
                                                </TablixMember>
                                                <TablixMember>
                                                  <Group Name="PDD_ProgramName">
                                                    <GroupExpressions>
                                                      <GroupExpression>=Fields!ProgramName.Value</GroupExpression>
                                                    </GroupExpressions>
                                                  </Group>
                                                  <SortExpressions>
                                                    <SortExpression>
                                                      <Value>=Fields!ProgramName.Value</Value>
                                                    </SortExpression>
                                                  </SortExpressions>
                                                  <TablixHeader>
                                                    <Size>8.09165cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="PDD_TV_ProgramName">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value>=Fields!ProgramName.Value</Value>
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                  <FontSize>9pt</FontSize>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <VerticalAlign>Top</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>7.87167cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox44">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style>
                                                                  <TextAlign>Center</TextAlign>
                                                                </Style>
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox37</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>2.5cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox46">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style>
                                                                      <TextAlign>Center</TextAlign>
                                                                    </Style>
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox37</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>3.67785cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox940">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox930</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                      <KeepWithGroup>After</KeepWithGroup>
                                                    </TablixMember>
                                                    <TablixMember>
                                                      <Group Name="PDD_CollectionName">
                                                        <GroupExpressions>
                                                          <GroupExpression>=Fields!CollectionName.Value</GroupExpression>
                                                        </GroupExpressions>
                                                      </Group>
                                                      <SortExpressions>
                                                        <SortExpression>
                                                          <Value>=Fields!CollectionName.Value</Value>
                                                        </SortExpression>
                                                      </SortExpressions>
                                                      <TablixHeader>
                                                        <Size>7.87167cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="PDD_TV_CollectionName">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value>=Fields!CollectionName.Value</Value>
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                      <FontSize>9pt</FontSize>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style />
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <VerticalAlign>Top</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <Group Name="PDD_Details" />
                                                          <SortExpressions>
                                                            <SortExpression>
                                                              <Value>=Fields!Purpose.Value</Value>
                                                            </SortExpression>
                                                            <SortExpression>
                                                              <Value>=Fields!LastStateName.Value</Value>
                                                            </SortExpression>
                                                            <SortExpression>
                                                              <Value>=Fields!PackageName.Value</Value>
                                                            </SortExpression>
                                                            <SortExpression>
                                                              <Value>=Sum(CountDistinct(Fields!Device.Value))</Value>
                                                            </SortExpression>
                                                          </SortExpressions>
                                                          <TablixHeader>
                                                            <Size>2.5cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="PDD_TV_Purpose">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value>=Fields!Purpose.Value</Value>
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                          <FontSize>9pt</FontSize>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style>
                                                                      <TextAlign>Center</TextAlign>
                                                                    </Style>
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>3.67785cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="PDD_TV_LastStateName">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value>=Fields!LastStateName.Value</Value>
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                              <FontSize>9pt</FontSize>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                      <Visibility>
                                                        <Hidden>true</Hidden>
                                                        <ToggleItem>PDD_TV_ProgramName</ToggleItem>
                                                      </Visibility>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                  <Visibility>
                                                    <Hidden>true</Hidden>
                                                    <ToggleItem>PDD_TV_PackageName</ToggleItem>
                                                  </Visibility>
                                                </TablixMember>
                                              </TablixMembers>
                                              <Visibility>
                                                <Hidden>true</Hidden>
                                                <ToggleItem>PDD_TV_Device</ToggleItem>
                                              </Visibility>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                </TablixMember>
                <TablixMember>
                  <TablixHeader>
                    <Size>3.46649cm</Size>
                    <CellContents>
                      <Textbox Name="PDD_TV_MachineName_Total">
                        <CanGrow>true</CanGrow>
                        <KeepTogether>true</KeepTogether>
                        <Paragraphs>
                          <Paragraph>
                            <TextRuns>
                              <TextRun>
                                <Value>Total</Value>
                                <Style>
                                  <FontFamily>Segoe UI</FontFamily>
                                  <FontWeight>Bold</FontWeight>
                                </Style>
                              </TextRun>
                            </TextRuns>
                            <Style />
                          </Paragraph>
                        </Paragraphs>
                        <Style>
                          <Border>
                            <Style>None</Style>
                          </Border>
                          <BackgroundColor>LightGrey</BackgroundColor>
                          <VerticalAlign>Middle</VerticalAlign>
                          <PaddingLeft>2pt</PaddingLeft>
                          <PaddingRight>2pt</PaddingRight>
                          <PaddingTop>2pt</PaddingTop>
                          <PaddingBottom>2pt</PaddingBottom>
                        </Style>
                      </Textbox>
                    </CellContents>
                  </TablixHeader>
                  <TablixMembers>
                    <TablixMember>
                      <TablixHeader>
                        <Size>3.50631cm</Size>
                        <CellContents>
                          <Textbox Name="Textbox10">
                            <CanGrow>true</CanGrow>
                            <KeepTogether>true</KeepTogether>
                            <Paragraphs>
                              <Paragraph>
                                <TextRuns>
                                  <TextRun>
                                    <Value />
                                    <Style>
                                      <FontFamily>Segoe UI</FontFamily>
                                    </Style>
                                  </TextRun>
                                </TextRuns>
                                <Style />
                              </Paragraph>
                            </Paragraphs>
                            <rd:DefaultName>Textbox10</rd:DefaultName>
                            <Style>
                              <Border>
                                <Style>None</Style>
                              </Border>
                              <BackgroundColor>LightGrey</BackgroundColor>
                              <VerticalAlign>Middle</VerticalAlign>
                              <PaddingLeft>2pt</PaddingLeft>
                              <PaddingRight>2pt</PaddingRight>
                              <PaddingTop>2pt</PaddingTop>
                              <PaddingBottom>2pt</PaddingBottom>
                            </Style>
                          </Textbox>
                        </CellContents>
                      </TablixHeader>
                      <TablixMembers>
                        <TablixMember>
                          <TablixHeader>
                            <Size>2.66353cm</Size>
                            <CellContents>
                              <Textbox Name="Textbox16">
                                <CanGrow>true</CanGrow>
                                <KeepTogether>true</KeepTogether>
                                <Paragraphs>
                                  <Paragraph>
                                    <TextRuns>
                                      <TextRun>
                                        <Value />
                                        <Style>
                                          <FontFamily>Segoe UI</FontFamily>
                                        </Style>
                                      </TextRun>
                                    </TextRuns>
                                    <Style />
                                  </Paragraph>
                                </Paragraphs>
                                <rd:DefaultName>Textbox16</rd:DefaultName>
                                <Style>
                                  <Border>
                                    <Style>None</Style>
                                  </Border>
                                  <BackgroundColor>LightGrey</BackgroundColor>
                                  <VerticalAlign>Middle</VerticalAlign>
                                  <PaddingLeft>2pt</PaddingLeft>
                                  <PaddingRight>2pt</PaddingRight>
                                  <PaddingTop>2pt</PaddingTop>
                                  <PaddingBottom>2pt</PaddingBottom>
                                </Style>
                              </Textbox>
                            </CellContents>
                          </TablixHeader>
                          <TablixMembers>
                            <TablixMember>
                              <TablixHeader>
                                <Size>3.135cm</Size>
                                <CellContents>
                                  <Textbox Name="Textbox24">
                                    <CanGrow>true</CanGrow>
                                    <KeepTogether>true</KeepTogether>
                                    <Paragraphs>
                                      <Paragraph>
                                        <TextRuns>
                                          <TextRun>
                                            <Value />
                                            <Style>
                                              <FontFamily>Segoe UI</FontFamily>
                                            </Style>
                                          </TextRun>
                                        </TextRuns>
                                        <Style />
                                      </Paragraph>
                                    </Paragraphs>
                                    <rd:DefaultName>Textbox22</rd:DefaultName>
                                    <Style>
                                      <Border>
                                        <Style>None</Style>
                                      </Border>
                                      <BackgroundColor>LightGrey</BackgroundColor>
                                      <VerticalAlign>Middle</VerticalAlign>
                                      <PaddingLeft>2pt</PaddingLeft>
                                      <PaddingRight>2pt</PaddingRight>
                                      <PaddingTop>2pt</PaddingTop>
                                      <PaddingBottom>2pt</PaddingBottom>
                                    </Style>
                                  </Textbox>
                                </CellContents>
                              </TablixHeader>
                              <TablixMembers>
                                <TablixMember>
                                  <TablixHeader>
                                    <Size>2.8175cm</Size>
                                    <CellContents>
                                      <Textbox Name="Textbox28">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox28</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BackgroundColor>LightGrey</BackgroundColor>
                                          <VerticalAlign>Middle</VerticalAlign>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixHeader>
                                  <TablixMembers>
                                    <TablixMember>
                                      <TablixHeader>
                                        <Size>2.8175cm</Size>
                                        <CellContents>
                                          <Textbox Name="Textbox202">
                                            <CanGrow>true</CanGrow>
                                            <KeepTogether>true</KeepTogether>
                                            <Paragraphs>
                                              <Paragraph>
                                                <TextRuns>
                                                  <TextRun>
                                                    <Value />
                                                    <Style>
                                                      <FontFamily>Segoe UI</FontFamily>
                                                    </Style>
                                                  </TextRun>
                                                </TextRuns>
                                                <Style />
                                              </Paragraph>
                                            </Paragraphs>
                                            <rd:DefaultName>Textbox202</rd:DefaultName>
                                            <Style>
                                              <Border>
                                                <Style>None</Style>
                                              </Border>
                                              <BackgroundColor>LightGrey</BackgroundColor>
                                              <VerticalAlign>Middle</VerticalAlign>
                                              <PaddingLeft>2pt</PaddingLeft>
                                              <PaddingRight>2pt</PaddingRight>
                                              <PaddingTop>2pt</PaddingTop>
                                              <PaddingBottom>2pt</PaddingBottom>
                                            </Style>
                                          </Textbox>
                                        </CellContents>
                                      </TablixHeader>
                                      <TablixMembers>
                                        <TablixMember>
                                          <TablixHeader>
                                            <Size>3.50542cm</Size>
                                            <CellContents>
                                              <Textbox Name="Textbox208">
                                                <CanGrow>true</CanGrow>
                                                <KeepTogether>true</KeepTogether>
                                                <Paragraphs>
                                                  <Paragraph>
                                                    <TextRuns>
                                                      <TextRun>
                                                        <Value />
                                                        <Style>
                                                          <FontFamily>Segoe UI</FontFamily>
                                                        </Style>
                                                      </TextRun>
                                                    </TextRuns>
                                                    <Style />
                                                  </Paragraph>
                                                </Paragraphs>
                                                <rd:DefaultName>Textbox208</rd:DefaultName>
                                                <Style>
                                                  <Border>
                                                    <Style>None</Style>
                                                  </Border>
                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                  <VerticalAlign>Middle</VerticalAlign>
                                                  <PaddingLeft>2pt</PaddingLeft>
                                                  <PaddingRight>2pt</PaddingRight>
                                                  <PaddingTop>2pt</PaddingTop>
                                                  <PaddingBottom>2pt</PaddingBottom>
                                                </Style>
                                              </Textbox>
                                            </CellContents>
                                          </TablixHeader>
                                          <TablixMembers>
                                            <TablixMember>
                                              <TablixHeader>
                                                <Size>9.23052cm</Size>
                                                <CellContents>
                                                  <Textbox Name="Textbox900">
                                                    <CanGrow>true</CanGrow>
                                                    <KeepTogether>true</KeepTogether>
                                                    <Paragraphs>
                                                      <Paragraph>
                                                        <TextRuns>
                                                          <TextRun>
                                                            <Value />
                                                            <Style>
                                                              <FontFamily>Segoe UI</FontFamily>
                                                            </Style>
                                                          </TextRun>
                                                        </TextRuns>
                                                        <Style />
                                                      </Paragraph>
                                                    </Paragraphs>
                                                    <rd:DefaultName>Textbox899</rd:DefaultName>
                                                    <Style>
                                                      <Border>
                                                        <Style>None</Style>
                                                      </Border>
                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                      <VerticalAlign>Middle</VerticalAlign>
                                                      <PaddingLeft>2pt</PaddingLeft>
                                                      <PaddingRight>2pt</PaddingRight>
                                                      <PaddingTop>2pt</PaddingTop>
                                                      <PaddingBottom>2pt</PaddingBottom>
                                                    </Style>
                                                  </Textbox>
                                                </CellContents>
                                              </TablixHeader>
                                              <TablixMembers>
                                                <TablixMember>
                                                  <TablixHeader>
                                                    <Size>8.09165cm</Size>
                                                    <CellContents>
                                                      <Textbox Name="Textbox901">
                                                        <CanGrow>true</CanGrow>
                                                        <KeepTogether>true</KeepTogether>
                                                        <Paragraphs>
                                                          <Paragraph>
                                                            <TextRuns>
                                                              <TextRun>
                                                                <Value />
                                                                <Style>
                                                                  <FontFamily>Segoe UI</FontFamily>
                                                                </Style>
                                                              </TextRun>
                                                            </TextRuns>
                                                            <Style />
                                                          </Paragraph>
                                                        </Paragraphs>
                                                        <rd:DefaultName>Textbox900</rd:DefaultName>
                                                        <Style>
                                                          <Border>
                                                            <Style>None</Style>
                                                          </Border>
                                                          <BackgroundColor>LightGrey</BackgroundColor>
                                                          <VerticalAlign>Middle</VerticalAlign>
                                                          <PaddingLeft>2pt</PaddingLeft>
                                                          <PaddingRight>2pt</PaddingRight>
                                                          <PaddingTop>2pt</PaddingTop>
                                                          <PaddingBottom>2pt</PaddingBottom>
                                                        </Style>
                                                      </Textbox>
                                                    </CellContents>
                                                  </TablixHeader>
                                                  <TablixMembers>
                                                    <TablixMember>
                                                      <TablixHeader>
                                                        <Size>7.87167cm</Size>
                                                        <CellContents>
                                                          <Textbox Name="Textbox941">
                                                            <CanGrow>true</CanGrow>
                                                            <KeepTogether>true</KeepTogether>
                                                            <Paragraphs>
                                                              <Paragraph>
                                                                <TextRuns>
                                                                  <TextRun>
                                                                    <Value />
                                                                    <Style>
                                                                      <FontFamily>Segoe UI</FontFamily>
                                                                    </Style>
                                                                  </TextRun>
                                                                </TextRuns>
                                                                <Style />
                                                              </Paragraph>
                                                            </Paragraphs>
                                                            <rd:DefaultName>Textbox901</rd:DefaultName>
                                                            <Style>
                                                              <Border>
                                                                <Style>None</Style>
                                                              </Border>
                                                              <BackgroundColor>LightGrey</BackgroundColor>
                                                              <VerticalAlign>Middle</VerticalAlign>
                                                              <PaddingLeft>2pt</PaddingLeft>
                                                              <PaddingRight>2pt</PaddingRight>
                                                              <PaddingTop>2pt</PaddingTop>
                                                              <PaddingBottom>2pt</PaddingBottom>
                                                            </Style>
                                                          </Textbox>
                                                        </CellContents>
                                                      </TablixHeader>
                                                      <TablixMembers>
                                                        <TablixMember>
                                                          <TablixHeader>
                                                            <Size>2.5cm</Size>
                                                            <CellContents>
                                                              <Textbox Name="Textbox49">
                                                                <CanGrow>true</CanGrow>
                                                                <KeepTogether>true</KeepTogether>
                                                                <Paragraphs>
                                                                  <Paragraph>
                                                                    <TextRuns>
                                                                      <TextRun>
                                                                        <Value />
                                                                        <Style>
                                                                          <FontFamily>Segoe UI</FontFamily>
                                                                        </Style>
                                                                      </TextRun>
                                                                    </TextRuns>
                                                                    <Style>
                                                                      <TextAlign>Center</TextAlign>
                                                                    </Style>
                                                                  </Paragraph>
                                                                </Paragraphs>
                                                                <rd:DefaultName>Textbox39</rd:DefaultName>
                                                                <Style>
                                                                  <Border>
                                                                    <Style>None</Style>
                                                                  </Border>
                                                                  <BackgroundColor>LightGrey</BackgroundColor>
                                                                  <VerticalAlign>Middle</VerticalAlign>
                                                                  <PaddingLeft>2pt</PaddingLeft>
                                                                  <PaddingRight>2pt</PaddingRight>
                                                                  <PaddingTop>2pt</PaddingTop>
                                                                  <PaddingBottom>2pt</PaddingBottom>
                                                                </Style>
                                                              </Textbox>
                                                            </CellContents>
                                                          </TablixHeader>
                                                          <TablixMembers>
                                                            <TablixMember>
                                                              <TablixHeader>
                                                                <Size>3.67785cm</Size>
                                                                <CellContents>
                                                                  <Textbox Name="Textbox942">
                                                                    <CanGrow>true</CanGrow>
                                                                    <KeepTogether>true</KeepTogether>
                                                                    <Paragraphs>
                                                                      <Paragraph>
                                                                        <TextRuns>
                                                                          <TextRun>
                                                                            <Value />
                                                                            <Style>
                                                                              <FontFamily>Segoe UI</FontFamily>
                                                                            </Style>
                                                                          </TextRun>
                                                                        </TextRuns>
                                                                        <Style>
                                                                          <TextAlign>Center</TextAlign>
                                                                        </Style>
                                                                      </Paragraph>
                                                                    </Paragraphs>
                                                                    <rd:DefaultName>Textbox932</rd:DefaultName>
                                                                    <Style>
                                                                      <Border>
                                                                        <Style>None</Style>
                                                                      </Border>
                                                                      <BackgroundColor>LightGrey</BackgroundColor>
                                                                      <VerticalAlign>Middle</VerticalAlign>
                                                                      <PaddingLeft>2pt</PaddingLeft>
                                                                      <PaddingRight>2pt</PaddingRight>
                                                                      <PaddingTop>2pt</PaddingTop>
                                                                      <PaddingBottom>2pt</PaddingBottom>
                                                                    </Style>
                                                                  </Textbox>
                                                                </CellContents>
                                                              </TablixHeader>
                                                              <TablixMembers>
                                                                <TablixMember />
                                                              </TablixMembers>
                                                            </TablixMember>
                                                          </TablixMembers>
                                                        </TablixMember>
                                                      </TablixMembers>
                                                    </TablixMember>
                                                  </TablixMembers>
                                                </TablixMember>
                                              </TablixMembers>
                                            </TablixMember>
                                          </TablixMembers>
                                        </TablixMember>
                                      </TablixMembers>
                                    </TablixMember>
                                  </TablixMembers>
                                </TablixMember>
                              </TablixMembers>
                            </TablixMember>
                          </TablixMembers>
                        </TablixMember>
                      </TablixMembers>
                    </TablixMember>
                  </TablixMembers>
                  <KeepWithGroup>Before</KeepWithGroup>
                </TablixMember>
              </TablixMembers>
            </TablixRowHierarchy>
            <DataSetName>PackageDeployments</DataSetName>
            <Top>10.90231cm</Top>
            <Left>0.13981cm</Left>
            <Height>3.6cm</Height>
            <Width>55.04261cm</Width>
            <ZIndex>5</ZIndex>
            <Visibility>
              <Hidden>=IIF((Parameters!CollectionType.Value = 2 AND Parameters!DeploymentType.Value = 2 ), False, True)</Hidden>
            </Visibility>
            <Style>
              <Border>
                <Style>None</Style>
              </Border>
              <FontFamily>Segoe UI</FontFamily>
            </Style>
          </Tablix>
        </ReportItems>
        <Height>14.54881cm</Height>
        <Style>
          <Border>
            <Style>None</Style>
          </Border>
        </Style>
      </Body>
      <Width>55.447cm</Width>
      <Page>
        <PageHeader>
          <Height>2.60098cm</Height>
          <PrintOnFirstPage>true</PrintOnFirstPage>
          <PrintOnLastPage>true</PrintOnLastPage>
          <ReportItems>
            <Textbox Name="ReportName">
              <CanGrow>true</CanGrow>
              <KeepTogether>true</KeepTogether>
              <Paragraphs>
                <Paragraph>
                  <TextRuns>
                    <TextRun>
                      <Value>=SrsResources.Localization.GetString(Globals!ReportName, User!Language)</Value>
                      <Style>
                        <FontFamily>Segoe UI</FontFamily>
                        <FontSize>17pt</FontSize>
                        <FontWeight>Bold</FontWeight>
                      </Style>
                    </TextRun>
                  </TextRuns>
                  <Style>
                    <TextAlign>Left</TextAlign>
                  </Style>
                </Paragraph>
              </Paragraphs>
              <Top>1.59698cm</Top>
              <Left>0.127cm</Left>
              <Height>0.89817cm</Height>
              <Width>24.95739cm</Width>
              <Style>
                <Border>
                  <Style>None</Style>
                </Border>
                <VerticalAlign>Middle</VerticalAlign>
                <PaddingLeft>2pt</PaddingLeft>
                <PaddingRight>2pt</PaddingRight>
                <PaddingTop>2pt</PaddingTop>
                <PaddingBottom>2pt</PaddingBottom>
              </Style>
            </Textbox>
            <Image Name="Report_Logo">
              <Source>Embedded</Source>
              <Value>Report_Logo</Value>
              <Sizing>FitProportional</Sizing>
              <Top>0.0617cm</Top>
              <Left>0.127cm</Left>
              <Height>1.35889cm</Height>
              <Width>1.5cm</Width>
              <ZIndex>1</ZIndex>
              <Style>
                <Border>
                  <Style>None</Style>
                </Border>
              </Style>
            </Image>
            <Line Name="ReportDescriptionLine">
              <Top>0.60444in</Top>
              <Left>0.05in</Left>
              <Height>0in</Height>
              <Width>21.67536in</Width>
              <ZIndex>2</ZIndex>
              <Style>
                <Border>
                  <Style>Double</Style>
                  <Width>0.75pt</Width>
                </Border>
                <TopBorder>
                  <Style>Double</Style>
                  <Width>0.75pt</Width>
                </TopBorder>
                <BottomBorder>
                  <Style>Double</Style>
                  <Width>0.75pt</Width>
                </BottomBorder>
                <LeftBorder>
                  <Style>Double</Style>
                  <Width>0.75pt</Width>
                </LeftBorder>
                <RightBorder>
                  <Style>Double</Style>
                  <Width>0.75pt</Width>
                </RightBorder>
              </Style>
            </Line>
          </ReportItems>
          <Style>
            <Border>
              <Style>None</Style>
            </Border>
          </Style>
        </PageHeader>
        <PageFooter>
          <Height>1.19856cm</Height>
          <PrintOnFirstPage>true</PrintOnFirstPage>
          <PrintOnLastPage>true</PrintOnLastPage>
          <ReportItems>
            <Textbox Name="Report_PageNumbers">
              <CanGrow>true</CanGrow>
              <KeepTogether>true</KeepTogether>
              <Paragraphs>
                <Paragraph>
                  <TextRuns>
                    <TextRun>
                      <Value>="Page: " + Globals!PageNumber.ToString() + "of " + Globals!TotalPages.ToString()</Value>
                      <Style>
                        <FontFamily>Segoe UI</FontFamily>
                        <FontWeight>Bold</FontWeight>
                      </Style>
                    </TextRun>
                  </TextRuns>
                  <Style>
                    <TextAlign>Left</TextAlign>
                  </Style>
                </Paragraph>
              </Paragraphs>
              <Top>0.35631cm</Top>
              <Left>0.13981cm</Left>
              <Height>0.63492cm</Height>
              <Width>2.79292cm</Width>
              <Style>
                <VerticalAlign>Middle</VerticalAlign>
                <PaddingLeft>2pt</PaddingLeft>
                <PaddingRight>2pt</PaddingRight>
                <PaddingTop>2pt</PaddingTop>
                <PaddingBottom>2pt</PaddingBottom>
              </Style>
            </Textbox>
            <Line Name="ReportDescriptionLine3">
              <Top>0.06944in</Top>
              <Left>0.04889in</Left>
              <Height>0in</Height>
              <Width>21.69222in</Width>
              <ZIndex>1</ZIndex>
              <Style>
                <Border>
                  <Style>Double</Style>
                  <Width>1.5pt</Width>
                </Border>
                <TopBorder>
                  <Style>Double</Style>
                  <Width>1.5pt</Width>
                </TopBorder>
                <BottomBorder>
                  <Style>Double</Style>
                  <Width>1.5pt</Width>
                </BottomBorder>
                <LeftBorder>
                  <Style>Double</Style>
                  <Width>1.5pt</Width>
                </LeftBorder>
                <RightBorder>
                  <Style>Double</Style>
                  <Width>1.5pt</Width>
                </RightBorder>
              </Style>
            </Line>
          </ReportItems>
          <Style>
            <Border>
              <Style>None</Style>
            </Border>
          </Style>
        </PageFooter>
        <PageHeight>21cm</PageHeight>
        <PageWidth>29.7cm</PageWidth>
        <LeftMargin>2.54cm</LeftMargin>
        <RightMargin>2.54cm</RightMargin>
        <TopMargin>2.54cm</TopMargin>
        <BottomMargin>2.54cm</BottomMargin>
        <ColumnSpacing>1.27cm</ColumnSpacing>
        <Style />
      </Page>
    </ReportSection>
  </ReportSections>
  <ReportParameters>
    <ReportParameter Name="UserTokenSIDs">
      <DataType>String</DataType>
      <DefaultValue>
        <Values>
          <Value>=SrsResources.UserIdentity.GetUserSIDs(User!UserID)</Value>
        </Values>
      </DefaultValue>
      <Prompt>UserTokenSIDs</Prompt>
      <Hidden>true</Hidden>
      <cl:ComponentMetadata>
        <cl:ComponentId>7b5f538e-1262-4705-a7df-7d4d398a195e</cl:ComponentId>
        <cl:SourcePath>/Report Parts/UserTokenSIDs</cl:SourcePath>
        <cl:SyncDate>2015-02-25T10:56:20.9330000+01:00</cl:SyncDate>
      </cl:ComponentMetadata>
    </ReportParameter>
    <ReportParameter Name="UserSIDs">
      <DataType>String</DataType>
      <DefaultValue>
        <DataSetReference>
          <DataSetName>AdminID</DataSetName>
          <ValueField>UserSIDs</ValueField>
        </DataSetReference>
      </DefaultValue>
      <Hidden>true</Hidden>
      <cl:ComponentMetadata>
        <cl:ComponentId>2c7b7dc1-c255-43f4-b6eb-9836f5be644e</cl:ComponentId>
        <cl:SourcePath>/Report Parts/UserSIDs</cl:SourcePath>
        <cl:SyncDate>2015-02-25T10:56:21.3870000+01:00</cl:SyncDate>
      </cl:ComponentMetadata>
    </ReportParameter>
    <ReportParameter Name="ReportName">
      <DataType>String</DataType>
      <Nullable>true</Nullable>
      <DefaultValue>
        <Values>
          <Value>=Globals!ReportName</Value>
        </Values>
      </DefaultValue>
      <AllowBlank>true</AllowBlank>
      <Hidden>true</Hidden>
    </ReportParameter>
    <ReportParameter Name="CollectionType">
      <DataType>String</DataType>
      <DefaultValue>
        <Values>
          <Value>2</Value>
        </Values>
      </DefaultValue>
      <Prompt>Collection type</Prompt>
      <ValidValues>
        <ParameterValues>
          <ParameterValue>
            <Value>2</Value>
            <Label>Devices</Label>
          </ParameterValue>
          <ParameterValue>
            <Value>1</Value>
            <Label>Users</Label>
          </ParameterValue>
        </ParameterValues>
      </ValidValues>
      <UsedInQuery>True</UsedInQuery>
    </ReportParameter>
    <ReportParameter Name="CollectionID">
      <DataType>String</DataType>
      <Prompt>Collection Name</Prompt>
      <ValidValues>
        <DataSetReference>
          <DataSetName>CollectionInfo</DataSetName>
          <ValueField>CollectionID</ValueField>
          <LabelField>Name</LabelField>
        </DataSetReference>
      </ValidValues>
    </ReportParameter>
    <ReportParameter Name="DeploymentType">
      <DataType>String</DataType>
      <DefaultValue>
        <Values>
          <Value>1</Value>
        </Values>
      </DefaultValue>
      <Prompt>Deployment type</Prompt>
      <ValidValues>
        <ParameterValues>
          <ParameterValue>
            <Value>1</Value>
            <Label>Application</Label>
          </ParameterValue>
          <ParameterValue>
            <Value>2</Value>
            <Label>Package</Label>
          </ParameterValue>
        </ParameterValues>
      </ValidValues>
    </ReportParameter>
  </ReportParameters>
  <ReportParametersLayout>
    <GridLayoutDefinition>
      <NumberOfColumns>4</NumberOfColumns>
      <NumberOfRows>3</NumberOfRows>
      <CellDefinitions>
        <CellDefinition>
          <ColumnIndex>0</ColumnIndex>
          <RowIndex>0</RowIndex>
          <ParameterName>UserTokenSIDs</ParameterName>
        </CellDefinition>
        <CellDefinition>
          <ColumnIndex>1</ColumnIndex>
          <RowIndex>0</RowIndex>
          <ParameterName>UserSIDs</ParameterName>
        </CellDefinition>
        <CellDefinition>
          <ColumnIndex>2</ColumnIndex>
          <RowIndex>0</RowIndex>
          <ParameterName>ReportName</ParameterName>
        </CellDefinition>
        <CellDefinition>
          <ColumnIndex>0</ColumnIndex>
          <RowIndex>1</RowIndex>
          <ParameterName>CollectionType</ParameterName>
        </CellDefinition>
        <CellDefinition>
          <ColumnIndex>2</ColumnIndex>
          <RowIndex>1</RowIndex>
          <ParameterName>DeploymentType</ParameterName>
        </CellDefinition>
        <CellDefinition>
          <ColumnIndex>1</ColumnIndex>
          <RowIndex>1</RowIndex>
          <ParameterName>CollectionID</ParameterName>
        </CellDefinition>
      </CellDefinitions>
    </GridLayoutDefinition>
  </ReportParametersLayout>
  <EmbeddedImages>
    <EmbeddedImage Name="Report_Logo">
      <MIMEType>image/png</MIMEType>
      <ImageData>iVBORw0KGgoAAAANSUhEUgAAAGYAAABWCAYAAAA9pePPAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg3NEVGMjdBM0E0MDExRTY5OTdEODFBQUNFNjhGMjcyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjg3NEVGMjdCM0E0MDExRTY5OTdEODFBQUNFNjhGMjcyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ODc0RUYyNzgzQTQwMTFFNjk5N0Q4MUFB
Q0U2OEYyNzIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODc0RUYyNzkzQTQwMTFFNjk5N0Q4MUFBQ0U2OEYyNzIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4UFKFDAAAhtElEQVR42uydCXSPV/rHb35ZJCkSkiC2WGpfWlq0qBZVy9BNdRlae3WUTjstqtqqbpgyqKpWW9XBGFXLlFKqpYtllKpSuyIEFVtIIolI5n3P+dz5Pbnum/wS/I8553/PuSfJ7/cu9z7L9/k+z73vm6CGo9er/4FWyukxTq/k9EZOr+v0qvxdxumRTr/o9GCnhzr9nNNPOf2Q039z+g6nb3H6Xqef5LtruoVcw2Or7PQbnH6L01s6vQWC1y3D6aedfhClVXD6GRTgKixKnKtbrtPXOv07p//g9M1OP/r/igmstXb6fQi0kfj8gNNd997F74dRzHGnD3b6EKfvdnpHp1dxemmnl3R6WacnOL2+029CwS245r+d/o3T/+H0bYWQWXGM4H9SMa5AqmHB6QEc3wEBt0Sgbtvn9FlOX+X0RKw7w3JuFj/DnX4e6DKb+108Smrr9O5Ob0bv5fRFTn/L6fsLGGcO5zzk9JmM7Yo331VQtIv/7zv9PfA8o4BzXLj6zOnLnN7J6UFOn+v0dk6/0emvOP1bBOZ1rUiPuNTF6Y86vR4xyL3Gaqe/5PSGeNe/gL0/OX2r0191erkCFOOOZ6fTP3f6Oqff6/TrrlXF3Or0d53+q9PbO30k0JLjcXys04czsa5OP+b0j4CZh52+0umpAd77gog7DZw+yumbENzfgam7jXPca3+JUFth/dkozY1Dj2Aktube569Of504ttDp84x4dlktuOyd/S73Gi7evuj0yU5vDiNyY8TGfM5xJzDV6X1hUS5cPcNnx4swBlc4bYCrCKzXtej5QM0SAv5p
j/OPItwNTi/BPLpCQH5kTra2htjlokQNpz8AwVjHzyK3oMuky/FAlrTGQU6fks85g/CmWOLPCGAsJ4D7aaG5XlEL9hVGLEvgGJci/wIa7MKD13jEHVsLw1vGAGmbGfNaj+MrovzrxWcucgxjjkdEDLyqinEZTx0mPAko0G0umH7BY8JvOv1Z/p6Cgk7mNz7yFDcWdHN6E9hWcD6QFmQhNVlApes1C5y+wulpHvB6CiOp6fR3iHWupw10+j897nsXsSpcfDYKefwFRPj2akGZa4F9EO4cWMmfxPeupQ5AAGaLdvqHTn/c6clY4JswKC+F3ITVfUDMqQFEJeEJ34Hr07hmE+LKw8DPFih1BnBZkYD/EMI+jhLSUbZrcOPw/oUYzKdAtUvh7+GcTZbx7uNaHUVcaoyy9vIzE6gMCOICpcvFCHTPgaOutT0lvneD5vMeuUAcQb0LecjT5A9e7SYU/kfihYIt/cDE/m2BpTh+RgA5ay3MT1Pj21DiIq65Ayg8jxJThfAyiX17YGvvIou3LXKcBrQO57OSeJlrKMtRuju+0TDEy1aMawEvoJTlQMFo3F638VhFGSN4xzDgLvy9Jx+luBMeitdV4LPFJH//LiC/0FTVC+K20N2x1CZOPQ4JMZnU58DYbvHZRWTlY64ZXEvGvspQ+2iBJF0gB685/X4Y3x4g7rLpckcUo8hPNKTpNgdr+gNkQCp9LDHoANDQHfZWzLiHK6ylXKcC2XhrvOafASR9F0WOUVBz2dp0xrvc8v3dzDOGv8cSa6Iwymw85xFxzllRsXgS+NX5VUegbitxdnwBeVJAirmObDgE4fxM1qyh42OE1wWh7xTnjoAOJ5E4DsDSBkGLNUzdA6tpQ92rD8F0dSHymEx+pqvAm2soEzy+u0OMeSjz/xsEZDCe6cqlqTCMIyixGd44ke8eZHw6+FdABkUK/jqAuaWKnijwe9x3NIH4BQbdgSRuPpausJzJWFJPYssOegfyjgr0
aWTprmf05hq5BZR6mpAUdsbyOwIloeB8K5hjBZhSssc1DxBzqlq+u5l5hOJhz8H6fsJgO1CZWEB80ojQFwN9G4X0wINCgTOdZixg3imFiTEVcNk7BW5vZZIu7DyGIAdiJekCc6tBhUPIjr8U113I5Kah9F54xTCCY04BkNoJgdWHLZmtjEFKNFvcQi6zEEangKLVlINaW65ViZ//hABIBvkKY+jI/PvBRmcTT+aRB43ifo1Q1jniUTyGU4ZEfHcgUBYLvFwQg8vlBnFA11JKGO8goDGCJo/lxis8oGKJkQ98D0zk5KOQ1Ux2EN4WhmeNQcCTBLloDc5PxZgq4VmjOce13vIIaDRZf67H/U+DDGeNz9PJT/bjITreTAQdipGjrcAoVgHTO0TsiQMC+zOfAhXTBa84w+AVHH0frh/FzXsAeUuBLYUrd2VCwzyKjt3wlEwYXAcsLdqSyM5CkbcDBWsQRCUUNhwl7xO0fTXB+Unw/nqEuxWF9CMXaYUBjoUlVbUkgVHkX/EeJOJNfh8JWUglRh7g8zuRVSfgdJ2Qe3lg8QERqzwVE4El7EEpoXyuk7p+WEEdPv8FapiNYJ9GWRMgCmZrinWXogLwCO79IB6oleNa+Nco2gdt7gq1nY5CsyzV5WLi91zgZx+ecSPe/jWsqDv3q4HFJloyex+kZJbFcBRKW0Z56M98tgNh7xY51hwIwToBiWEQhvPUGvNVzP0U5FJx7RwRJO812NTPDCCRv3uA/3sEtJj4/z7W9yFx6Bs8IAVlTGSCc4lVW7nu3XhOfrmWZkdZ+ZTr5+Bp/QwG2QSPWedxbhtiYLjlu6FAW3+WFxQe2Qkj0HKehBHsFJ+lIev2oJSnYvryWQgnXBBrG+MEWViJxe0RcekJfn/Tgsk+YOdG3He4+O4zPCcJBjcRq58KrM4OgPqmCuFnB7BE8BGCmy4C/XBQ4QVlX27uAzMz2zYMrhzooWV0HjgfKxbqdMqQyfcyIe7upZi6
AqKimWSGqPtEY41jgbubhfe0x1p+MViYbs1hS9nkNyeM75dBt3XbAPM5mE9+VQt6PRqv0gKej3F0hlp7VQP2oxi9MaM/xGE0ZZSDFq98WfmXpWXTi4IDqBooFHUvCeXD3Kei+P4cBhgmvDLIppiWInGsYCRu1xHQe1ITe4bjz3MxnTDNthQxg6mz+ch3bNn2o1Bv1/J/JxbNsQTd0ljWYpHBP0+Q17Hmfqx/MR49hYTRRIfO0OdoUeObj3K+gxh8YXh/KPmJuVq5mxgZArHR8bcZxGg+ELobkqARKUoYdwLLGZcopoGwrgqiXK4Q1oMEx9ew1NV81wgKmwRDUxYBtMJiJloSvcZ8HoK1diWmtQHmEkQ2/imBuDXetxZBreCYYyjlE6dvh8AMgK5OJ/dQMMEZGOJk/l6AkF4DttIY+2OG9zSAJZptEbGyD9CfTQx9iHttJRnegpzTOa6ECAf1bYopY1imDqbZWOlKEqYXKWV/wTE9+bnOYzFqIF41n8HJVhJllEa4k6DE3VBOc4iCXttoi5dOgIreD1nQbOoMuU0v4tO9fJfLOOci+BlY7mygNQmv3wZUfQT8KIqzw0Q9LhTjMdt6IDgG79A523HkNxe4uxs5hOCtxQWjjDcV4zOSnGgGcIF48jWx5WWxIJaCwO/is+WWcvatwFImuYWysMB2wMXTYvFqI0LdhAJexnC+AUKfJef43ahghAqv/w2h9gZSVhBHXyT2zIDspInl5fFibNXEtebieTPEwlhdS71Os7CHBTFYLvLDz7hfT8ZaUuXdSBJsKibHEGpJiMDHwMJb0EI9Ab0e0YyA61rCVx5ZezReYOY1MbCYIJS+w1Kqn2OU49vD6nJFgK0rgmYk0BePEN6BwPwoGKRi9fUD5lnaMEhpNN3E3x+Ri+wmiHe0zHc5saMx8cNtbyj/XoM2QOYxCI9JTrKlYoIEDChB7aKBn2cMmviqWHO5hUC4x8JiSuIxStBS2W7Dm/ZjAGbG
/azIrDUG9zKO684En0ZZ8cSgZcDNbyKZ0/h9GKP4nJj4GXOKIBndLMbwkEiyNdWeJchShMWYDhC7NCHZBVzr1grDTjFQKgMZujEnPIRfrjMSrnDgpROLO7p9YQj5Bn7avKUOikkTVWdZPH1MrPEcNarH78OKTMp9I9fdQ4mjL1VlEz4vYqnvktS9jBVruIvAcPSaS2vGOZZFuSkkz1kWsrIQRbpGVd1YtdVbcOuTTmhSMlksJSiu3ZvMX7cTQLg7li0h1JLisJQ0lJQGxj4vXO0wjCdLwEYVfretStbmWsvVpduGYmE8p6GmSmD3OEkbjRZJzNM5VqSwtlQEncP4I2GXk4FAqXhba4mRHoKEtPdY3zlA8G5AtcBcTl8H5NU0vOElcq/qfDYAI0/BO49RRXHXe8740GQJGMURQY/vElamyEUOiLJEGcHktlmSsYb8/p2lmNkSy92KpwYT5EfkoxQzMY40Fr3CuW8w3vAM42of4MJZR+7/HvHlB+Y/ylJZ1ttiq3ssYyuKlMEingZj6DnCcJso/y6h7/E410ma+8D6cmSivwqoqSku/Bnw0kkEtXJcJNlSwogQg/7VMvhW/Nyu/FuDvhKfF7atggZ/YYmVgbZgkZFv5jqVRdIta26bRbXEXNP6DQGXVv59EXFA92eC+UVBVHRR81MMzvXom3xgYS3xpYJbFxeV5WfB92aifhZD32NZy4hEsVlAoNluMhbfBhVRIceBiBdYlOtMaeWwKno7C1pUY14lLMdohldDXbpvOp1xRQmWl0V+1BAPXCvicDwEYT3Q64aHCj6+qEuCs4gMPUYkOy+Cfb3RcKoQvg/4y7YE90pAom1bagIT+BHDqFgEAR4Dy18nLsii6JuqCLsfRQwKw/tCbGsloMQZBBlsKZIeRjElBeMtKXK1wcB7RTxrlqiCuEhTwodwG8CwzpOUleakpSRVumCYZAR/fdMoegk8LZrvTzPJKDHQKkDdaSZYHgHswAgC3cr6
PGO1te3Ke79xQS2LXGMNsimBkcUCSWWZ4zF+j+fzeOZSmWQzVNDhLOLzY5RzflL+zRo5ooB7B7LIDeGkOILvBpK63ihpDCcMYYC7jIKezmgbQ1Ez+BkJzlYna84iMGcz2SggbCbKCgUe3mDSdTyEdpBx1VT5bxqsLay1sC2SvOocY7yOCkQOY4/AS4qJFKI4dS/pPafE3xnEnrbM8Q5Iht5FtB9H0NuNc0KAlGKs7k1lwqnkHhu4SG8hGJvre1HQCMHOlMH3I1XezXaVjUUvs51iLBeJhSNIfKMF7ueIhPZBMu3CtFwEFcX4grnfRRTkw7jSGWc4c88WpZ2zGFq4qKxkizphC8jO29TSMlFce5F+pITAqEqxnuLWreZxwjpOGscNThnsSwthBYE3TBQ+i1PiP44Az+CiF/g5i89msU5zDu+8QXk/AHQKKGiMh1ekEtBXrJXMETj/YxEUo5PlKdxnAh7aCSUFMW8XsqZhFN1U3t2nGcS9lirvzppflf8B3uEUUFcJFjlYHJsYghfUFV+6BOAfBPUegkHtFMvISlhIqijeyXJMJlbzvcGSqjNAH8L9BmZ1kcKkT1hvkEEYRonvllEMrMFnJntaSS4TVgilBME8++AJEdTGNhvHZWMciYzZ3JhYjvlnGQtzu5B1OcLDOBFbbpCroj4WdGTi14RJJeFyMqAmG7QyB+GaXL4Yx8aLtZ0IEdxLI8jGeNxW7rWKGpaGzQWCnocajKyJiEX7xXmlofZtjXMCbXWx5jYYyQHLMZqNHbPMPRTjO2sssu3Hi3XriuGesKQLP/rUpTvj/4wLNhZZeI669PGDs7hhFUtcOC8mpGn3eGpMoUJRlSiRx2B5Y42EtJ/Ku4MklYloJpSC57yCkIKB1Q2wtqAiEoCHhbBuE3meuXa131K2CWc+p9WlS+hrRWqRQF2sBPdQovS1y4e1yhcS3A52NhFJ5jGLYpK5cRlL8E8TZZraxK8/GYIqxn1u47t53ONb
xpNATPkrcWQX5wcZpRltiSW51h89PCWjEIpJFddYZ8BkkIDPbZZ8qbooSp4VeV05iFWi4VldRDFVr4Qe9SH0leKLUtC2UoYb/oawgkXWfVK4v1ne2EYsqA2s5NcGi/LJRuJSEFl8eVjWcoiBXnnch8AGUo/bzGplhMc9PlH2/Qbp1LeGU8Gup/x7xM5SbNxkeERzfrflXPrdBIdEZTqWeLjNCB2xyDpYLLa5iimri4GzhIu5muxgTHATSrhX1H/OCJamA9edHLOe4HYOxRTEjkoLyMsF0jIRUn+u210sWPWmrjZFFFar5UPb9drNaYsXbQElxuAd24mbPhLYo0bpPwbPTDIW33RrItZhlChodobgrBTXSzCWLVZApLr6wLmVKu+GuorCvTKxtGKskcgHlnaItZIYVgwXwuTqAi91LWsrylLC6WyUzvVStIv1i7n+EhR+AdY4CAt9RNkfMdSWexBYflhSUuV/oYNkbvFiQc72zOVdWPgmsRAnW1NirFyxbcZ1y5GQpopCZriIy2+BFPf5mJT74UjBukJFySUF3E+ABdWT7AEh1aRsXsMy0BIB4rqZ7Y+kLBLL4H8j5phWfwYh2Db65eC1ORa6m4ElNxUpgSKeVWfO31mu2UssZ5jPkNZkfeu4wcCaIYeKePhRUQXRhj4OCHd30tT2QS1bg31DhOvFCMxPQ+ixxhqN3hBRgWLk75dR1Y0x/q5nuHksVeQYy7lRHotaPlGaTzI+rwkKHBXWfTOx5iIwaeYnN5O5H1H+XUKytWUsG43x1AOuy/P3ZuXfV1YBlHkdKHYT5VQfg3gZd/4EWluRi+Uo/7JwVSZYy7DWtdwghsWloramoiTRCJZWiWrxN8Dic1jiQKAhmLHOQNDa4t6gUPgryWtHw4J9xiLbGbxyEkjxL+5rtkGcu0rlXYrX19Q7huYZLK4yspOKcedTH/n1h90NJ0at96HdO8gFFEpaKGpDuwTtVUJ4us0R369R+b8RI79W
hVhUmYnp6vYTrCjOxlCqYs1bqDcNhrIvJdP/htynCWgwk0y+Lt8thpykYZTJlI+mEiuPIItci7d04hzbpnm3JngLnrDc8PQIkZjqNS4f8a8fxjFQsMHlIdSGHmEx7BADHIiAbiKniFL+XSaVlH/PmWIQBzh2DFYzFM+6rxCKSSY4LgTjFzEOTcl7AB/d8Yo4UZk4ARUdQpCfB6Fxj/sLYzlDnNrNPcozpxhBPDJQrrkxMYyaXhzlqh8t4+/E+N81VlFlZaS8YJ7nWZ9xCdTd5Gs6DVkbgiulMqHxBPt/EAS/5KKlBd6HY6FJgk1MgVE8SSY+nGC3Dg8sHoBiwmBNVaCNPdSlb6+Yg8U3wQt6CKscKo5rDROrKlhPNGlAB+JKIrAlSceHYhXXFHo3jGSk5fvyyv8k9wxL9V3nKXGMJ5ilhQUUjqeL4q0r+0O6FrRElEncdYJHgYqRgqGVFFgab2Tg84CAO+gKNuQqa3KAHhMlYLIpCVmYR1ZuvrvFtqZSR3mv+cfDlBqIqrfCw1wFfyDYUmWsOZzYtddyvQeEl28Vsiyu8r5iRS8kJuKBNyHvGOEtbk550X1q+SIZ7oMMshhaTEKTet2hp1gAW4Si9FMAKfx9B8Kdrfw7O79m4ro2FkgLR0i1COBmzekpaGuwuvx2jqD+O4lsO5jnQYxzOrFnCUQi01I3m8WYhwhS0IHxVQGqgvDUecBuFc6TVZMJyO6/7GQ1AVC34gTWh8DlLFFr0tuDwgi8GqY+5tgWAmJ0e5M4tiJAYen84EEUO0Ll3SpUr4iVY1u7iNCeVnm35LYgt7gHIx2q7I9+j8ADl4i8pzWxcC8xJsjIn2IhJfLVki6jnGjSxgvA1i8GtEzFiuQWpWBymg3AxQuiTK8fsxipLt1gkYjLTwnQYyaRzcfD8Rfz2a1cf9sVUkw083yV2KhjZxcM7yRoYauLtaEAewrjSwO6ppDHpAkmpovBrpLeV3kfgEqCfZ608fmjxJYk
o6D5EVn/VoNp5AIzQ5R/n+40vK+SoN8mbDwFK9LtNJ+fg85OAKaeAxpnY2l1OHcpQdOW0Re1heKdKcTFTFGxmG5ZCNQKfZ1z3xVpwjjG+oNYNFNisfF55X8Rg84Fe1GjsyZaioptV2PFsTLuuluUPTRD201cGsMA9duK0ig0drdMqL3ybzaXld+WZM5/AVazyaF6AA1zGVc059+qrtyrIzOh3rnAZDHmkAvbut9yzsuMYRUK0l6mi6VbjPWoU+Q6/cU1UlDKSrMCb76ypBsHrSbglRFV0GME+1jlfxNGSRRZjfiyhSB6htygIdama3D3ooQ4aOXPTK4xbGursr/gLZFMfAnGk8zkz/LzAmMr6sLYaaj9EAzBjXGPUz2+i0B+UMDnH6mAJyKzZMjNWyTarqxeIxw8CbzpRcUYsSDWk9ysH7Fnj5diquLSc0gcy4tAWwK4qwQZ+BQlPIYVx8DWMnDrskxKv2+lLbCgX5XVj+Q2ArxtSTk92SiZy3aKxSYXCt29WJ/Dck5y/TSg7izKD/R9bNdRtqkPZR1IPvEt82jB9XdxrH6xaW9irY43QyFFO6HBjTgmBMXoBHMDBvA91x1B3LzgBWXLCdBP4AGPAi2p5A31REW0kcq707I5VFNntkNIUFsgwE84b4byv+8lneP6cp1mGMXflfHcu0c+cwA4PcLkjzPmZ1XhXxOvX+bTVrCzbMY6EeObgYWXgSx8KeR4n0gSt4kyTSnl35mqY1Znanm3Y+BfmEjhs2Dte7CUwfw9AWv4DsEGQZGbGIMIgV4XE4J7HAu/DU+ZC2ZnGqX56Sx8fYkHPcp6x3sswhVUOSglqG8a14wqhFJOALP9LWwvi7g5k2uWRSnyPTn6FSpKFCn1opne7ZrM9fvy+/0gSY6yPAZpC54zufDb0L4qyr9Ha4QgBrdgZfKhpA5GwnSI4PazgAyvfcrblP+tFRtJZgdwrt4d2sRD4GZ5fh3jPxKAUtIZ4+f5sLx2zFdR
BRhpWbVMEIa2knm2x+s+xTg/xNtGA8Fu7BmmLC98sL2vLJMgdA8Xawv2bcZrvsdCO4HB32JRweDrMdxU71o8QSy5mZyoNfBzwEMIm4khe/G+6pT071H+98k0xQAqM1G9fH2GWl0Lxlxb2V/QI9swI7k22wAQpCIpwIvGAlg20KmLvAdQXE/G/RQelg6CvKH8L9ueS/5zyVt3vV7vG8QAXhWfrcbl5qGEAeDuRKxN0z29R/dhsHOrKObpR/hOYzXjC8hFoqlntYOK3mhZoUxFOKWU/zW+8SqwjX7TgZccD3gczTwvUJKfKr4fwn3eho3qWuLbIEsLjOw45/Y0Mv2fQJhk28Dye73vGlhEY7FecjdM6zCsSK/U5QiuXwp2lkqw3IsHpvF5FEGvHRa3RXm/nTwDSroKOPsQWN2Hd1wURdYwxnGevpvzPsZAqqu8+xXmUiPLsMB7G753UWE/Fj5XkISxeNoQPKW7ID3PYJxHQZz5xEzpubvw/kNewi/ohdjhBOCelu9WkOV+A+RsUP79ADOh0QtgK4/xmW5uvBhF0EwFt2fmA28FtYdQ3A6Vd0+CuRD3V+65gPKOuSesLlT5Sf6eTwVCj6skQb8PRtKfPE3vApqFEm4B9myPGf5MHpTv4yaBvKk8lMz+GY8EbhYWVJ0gF4a11CUWLEBxTxt1svq4vN65sh3lzFf2bUGqgDjwHteoV8CxQZbVyQaMow8llN0Y3QfimBig/EGguDmQvh7WuAcPbE4+Y9vftghYSyxoQoG8qTwH7ziCa4ZbllQ7UQD9nTWGSJK+2dS7agCBqUxErz0sot5WFVp8J7ir9/4eClAxzWF0ycr+Bg6vdieQ9BIxLFz5XzbxlbE8/AE5nl5Qm4nymjDvf1EF6GmpfKcQs1+wLGEU2WNMWjiaGBFiKdUvBCpaoKhWlFwW40nZVHDHGeeWJukaKiw+HXefy/mJxANboB6IN/4q2JEtNQgnUb4bD6nFPLIgApPNYiJj
+0j5Hyo6zHmNiV3ZwHhTlfctGzpGLlD+l1ZkKO/X5hdZMZFY/l4w9UmEUME4bj/HliWOvAL+y812I6GN5rtnimG5/WFgZYzrfgXh2I5HnoNU9AL7dyCg4ighkmvUw5PbiTwqi7ksQvC2zXuxQLWMFfol3Uvx7kSVd5tVKuiyHu/bhiHHYLi5V8NjWjLI91geqMXfNwBHlQmywWLyLltbi1XJ5eCJuHeax70aQrubkY/UMShwJkLRD6LqQqhedoiFVcq4eBJP3sJxy5T3Q7TXozD5iPsH5CLTlH/LUSJGk6j8byRfxbyiiSk1WLcJ+LnQovybkkEMbhZ5SYrwqASEUpHB3AB9HoUVzTEqAwuoxR0s4J4JCKo6lezrMQT9pEEoQgqmn6VWdhih7RFJ7Q516ashzdYC4Ztj7Ums/AOeu5frH1B5d4LWAy7vg8n9QfnfdHvVFKOXU1/HSjayKLQGa5R5QQnlf7n2Xn4fB16HC04/THk/gewFq9dxjXAj3uWipEziVKqy/z8br4R2EAwyRiwFTwZ60zCSZK4dDkokoMSGQHBFjGYniLGjsAK+nP+49AS5gHxkOhtLTWLwv/NTW/ABWEkjaGdD5X+4dAEC2AsdzVRXv+lHxCtjLA+ovE8zbKSwmkY8rYGxxdFDhZeaZGgp8JVYlIFd7r/CuosFoaaFPO+4WIptY1DwxQTX1cCffv1JWeV/f0AJYc3HUPg+GFtdjq+M1evX6J7gWH38KaC2F0G8oqhi53BMGRXYnjjZ9kCnJ6qivwTishWjGHxveq0inJ9GmWUzsKbfiJ6g/M+E6oJlsCGA4yguEqYWJOJaCsfHGYo/yn1+piC7hjE0VP4XUdwsljUCbVtgXZ8WBbquhmJ0q0qidw+e5LUechYhrkcou3D3FHGdP5Mw1jTOPUI1Vi9X6xed6iB9ilwijZjwCYq7jeSuhmWtZScKelfkMLEYQm1gtz6Gojfv6ar5Qdab1nOdQ1dKmEFX+J9g
hwI3qQihhvK/w1nHmEQCZ6ZBElqQG92uLn2mJouC6IsopAyCHsB3n5H4JlNWGQqMfc1xmyELz7MAGJWP574DjU63JKf6Wf+LjD8bb61H4rjtWlVMBazzLItVp/PJwisRC9pQva3mcexhhDuTBLQn3hALG3xJ+V81LHOQNyAYit8nK/87nd+gHOPVtpOzbITI6GQ2V7DCsjCwbnj9qCspyKCr8G/jK5GbNKBEsl9MSv/vlCrAQ0EFx2V4yU9g/6vkBxlA2niV/39ZeoJz4vCG10R5aDA9oYAxaIg6KXKl0sSkkhjGpCstxKuhGF3BdUv9f7PUjwJlNn8jiU3lWq8ixH0IdFkhCpzvECvSEaJ+E0ddlNdPeT/t7NU+x0t+uioCvEqK0a0cbE3/zxevVcVsMHo7QXiZ8q/svULhM4yyTm9LobGgVln5d8C4bQmFz0PK/zjgY0BfHPcyk9ZMPH85MLdBFe7dAdeUYv67vAC23wrTKo1A0okh26mnyUJiBIXJAfz9A4XQpCKOIRrl3CfobT+V9wm4MCCqDkZVGuGfApY3BlDO+Z9STFFIxETlX/9wB9lVBbbrJb9WXPn/E60i2exTCFj8P2s+dW22UOV/+4Reij1yBa6r97rpN+oVU0XfVnt1IeYK/Nv4q9HOQIFdvHeXtTddwWu7zGoFeYkbv1ZeiwL4jwADAFtHb/2BP6CTAAAAAElFTkSuQmCC</ImageData>
    </EmbeddedImage>
  </EmbeddedImages>
  <CodeModules>
    <CodeModule>SrsResources, culture=neutral</CodeModule>
  </CodeModules>
  <rd:ReportUnitType>Cm</rd:ReportUnitType>
  <rd:ReportServerUrl></rd:ReportServerUrl>
  <rd:ReportID>6fbd236a-d836-4950-8788-14b828deb616</rd:ReportID>
</Report>