Archive

Author Archive

Update #ProjectOnline Resource custom field values using #PowerShell with data from #AzureAD user attributes #PPM #Offce365 #ProjectServer #CSOM

November 7, 2016 Leave a comment
Paul Mather
I am a Project Server and SharePoint consultant but my main focus currently is around Project Server.
I have been working with Project Server for nearly five years since 2007 for a Microsoft Gold Certified Partner in the UK, I have also been awared with the Microsoft Community Contributor Award 2011.
I am also a certified Prince2 Practitioner.

This article has been cross posted from pwmather.wordpress.com (original article)

This blog post will demonstrate a simple example of how Microsoft’s PPM tool, Project Online, can include / sync metadata from Azure AD user attributes to resource custom fields in Project Online. This example script will update the resource custom field “Job Title” on my test tenant with the data from the Azure AD user “Title” attribute.

This script example can be downloaded here: http://bit.ly/2exqPXw

The script does require some additional modules / DLLs to work. Firstly you will need the Azure AD module installed, this can be downloaded here: http://bit.ly/2fV43Ou. You will also need the SharePoint Online and Project Online CSOM DLLs. The DLL’s used are from the NuGet package here: http://bit.ly/2eMprBu. There are later version available, check here: http://bit.ly/1SO8x4X. Download those as required. These modules can be seen here on line 3,5 and 14 in the example script, the location will need to be updated to reference the correct location for your SP / PS Online CSOM DLLs.

The user setting up the script will need to update the correct location to the DLLs required, the AD username, AD password, CSV file location, PWA instance URL, username, password and the custom field internal name. The PWA account specified will need edit access to all of the resources in PWA and the AD account will need access to read all the users in Azure AD. Ensure the variables have been updated correctly, placeholder values seen below:

image_thumb.png

In this example all users in the Azure AD will be exported, clearly if you have a large organisation it would be efficient the filter for only those users that exist in Project Online. The code matches users and resources based on the AD display name and PWA resource name when updating the resources in PWA.

To get the correct custom field internal ID I use the REST API, <PWA Site URL> + /_api/ProjectServer/CustomFields. Find the resource level custom field and copy the InternalName as seen below:

image_thumb.png

Once the PowerShell script has been updated, save it and it can then be tested on a test / non-production environment. Once executed in PowerShell, each resource found in the CSV file will be outputted as seen in the example below. In this example there are many AD users in the CSV export that do not exist in the PWA instance.

image_thumb.png

Checking in the Resource Center after the script has run you can see for the resources that exist in the CSV file created, the Job Title has been updated with the values found in Azure AD / the export CSV file:

image_thumb.png

The CSV file generated can be seen here:

image_thumb.png

This PowerShell script could be run on a schedule from a server on-prem or even in Azure / webjob. The script would just need access to save / access a CSV file and the DLLs / modules required. Fully test this script on a test / non-production PWA instance before running on a Production PWA instance.

The script is provided “As is” with no warranties etc.

Categories: Paul Mather, Work Tags:

Update #ProjectOnline Project custom field values using #PowerShell with data from a CSV file #PPM #ProjectServer #CSOM

November 6, 2016 Leave a comment
Paul Mather
I am a Project Server and SharePoint consultant but my main focus currently is around Project Server.
I have been working with Project Server for nearly five years since 2007 for a Microsoft Gold Certified Partner in the UK, I have also been awared with the Microsoft Community Contributor Award 2011.
I am also a certified Prince2 Practitioner.

This article has been cross posted from pwmather.wordpress.com (original article)

This blog post will demonstrate a simple example of how Microsoft’s PPM tool, Project Online, can include data from an external system. This is a very simple example using a demo CSV mock up of data that could be from an external system. The CSV part could easily be replaced by a SQL query or a REST API query to the source system etc.

Example CSV data used can be seen below:

image

As you can see, my imagination for example project names has not improved! The code uses the Project Name as the key between the two data sets – the CSV file and PWA so the names will need to match.

This script example can be downloaded here: http://bit.ly/2edq0Ii

The user setting up the script will need to update the correct location to the DLLs required, the PWA instance URL, username, password, the custom field internal name and the location of the CSV file. The account specified will need edit access to all of the projects in PWA. Ensure the variables have been updated correctly, placeholder values seen below:

image

image

The DLL’s used are from the NuGet package here: http://bit.ly/2eMprBu. There are later version available, check here: http://bit.ly/1SO8x4X. Download those as required.

The get the correct custom field internal ID I use the REST API, <PWA Site URL> + /_api/ProjectServer/CustomFields. Find the project level custom field and copy the InternalName as seen below:

image

Once the PowerShell script has been updated, save it and it can then be tested on a test / non-production environment. Once executed in PowerShell, each project found in the CSV file will be outputted as seen in the example below. In this example two projects exist in the CSV data but not in my example Project Online PWA instance (remember for this example, the names need to match in the CSV file and PWA):

image

Checking in the Project Center after the script has run you can see for the projects that exist in the CSV file, the project budget includes the values found in the CSV file:

image

This PowerShell script could be run on a schedule from a server on-prem or even in Azure. The script would just need access to the data to import (CSV file etc.) and the DLLs. Fully test this script on a test / non-production PWA instance before running on a Production PWA instance.

The script is provided "As is" with no warranties etc.

Categories: Paul Mather, Work Tags:

Using PnP PowerShell to export and import Taxonomy

November 2, 2016 Leave a comment

PnP provides export taxonomy cmdlet which allows to export all term groups, term sets, terms and child terms to a file with one line of code

Connect-SPOnline -Url <siteurl> -CurrentCredentials 
Export-SPOTaxonomy -IncludeID -Path "C:\temp\Metadata\terms.txt"

PnP also provides an equivalent import taxonomy cmdlet to import all term groups, term sets, terms and child terms from a file with one line of code

Connect-SPOnline -Url <siteurl> -CurrentCredentials
Import-SPOTaxonomy -Path "C:\temp\Metadata\terms.txt"

However if IncludeId switch parameter is used with the export, the import would fail if the October 2016 PnP PowerShell release is used.

The error message appears

Import-SPOTaxonomy : Exception on line 5: Failed to read from or write to database. 
Refresh and try again. If the problem persists, please contact the administrator

I decided to enable Trace on the PnP to get debug messages using the Set-SPOTraceLog

  Set-SPOTraceLog -On -Level Debug

Debug messages appear to monitor progress of execution but was not helpful.

errorimportingterm

I tried to google the message, found out that the error happened as the code is trying to create a term or term set with an unique identifier (GUID)  which already exists in the taxonomy store.

I inspected the taxonomy file exported and found that terms having child terms were wrongly formatted.In the example below the term group EDRMS is repeated 3 times.

EDRMS;#383eab6e-a944-430d-9a18-f8b872322c2c|EDRMS;#383eab6e-a944-430d-9a18-f8b872322c2c|Directorate;#a99db510-121a-407b-87ec-0b4911e59469|EDRMS;#383eab6e-a944-430d-9a18-f8b872322c2c|Directorate;#a99db510-121a-407b-87ec-0b4911e59469|Finance;#fbab08b3-bc7d-4363-a1c4-1f5d4a466b07|Credit and Collections;#0ec6cefe-c92c-4dfe-81d4-1fe56183f8a2

The Export-SPOTaxonomy was wrongly formatting child terms in the export file.

I raised the issue 532 on PnP PowerShell project.

However I was not sure how quick the issue was going to get fixed so decided to debug PnP powershell command  and found that the issue was with the core PnP project . I fixed it with pull request Taxonomy import export which got merged into pull request Fixed issue with subterms not exported correctly when using ExportAll” .

With the PnP PowerShell November 2016 release, you will be able to use PnP to import and export taxonomy.

 

 

from reshmeeauckloo http://bit.ly/2fcsciR

Reshmee Auckloo
Reshmee Auckloo – Reshmee is a certified Microsoft professional and has been involved in delivering solutions across a wide variety of industry sectors in a range of assignments from SSRS to Microsoft SharePoint, Project Server development, CRM Dynamics and .Net including business requirements gathering and software quality assurance.

This article has been cross posted from reshmeeauckloo.wordpress.com (original article)

Instantiate SharePoint Client Context using current user credentials in PowerShell

November 2, 2016 Leave a comment

In C# managed code, SharePoint Client Context can be created using System.Net.CredentialCache to pass logged in user credentials.

ICredentials credentials = CredentialCache.DefaultCredentials;
clientContext.Credentials = credentials;

I could not find anywhere how to achieve it in PowerShell.

If using PnP PowerShell module, the switch parameter CurrentCredentials can be used with the cmdlet Connect-Online.

Connect-SPOnline -Url “http://dev-sp-001a:1214/Teams/Legal” -CurrentCredentials 
$ctx= Get-SPOContext

In most of my CSOM code without use of PnP I used to get current user name using [Environment]::UserName

[Environment]::UserName

I used to prompt the current user to enter password

$AdminPassword = Read-Host "Enter password: " -AsSecureString

Lately I discovered I could use  system.net.credentialcache in PowerShell  to pass current user credentials when instantiating the ClientContext object.

 $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($siteUrl) 
 $Credentials = [System.Net.CredentialCache]::DefaultNetworkCredentials
 $ctx.Credentials = $Credentials;
 $web = $ctx.Web
 $ctx.Load($web);
 $ctx.ExecuteQuery();

This means you can start Windows PowerShell as the user having appropriate permissions to the SharePoint Environment and run CSOM code without prompting credentials.

from reshmeeauckloo http://bit.ly/2e34K7M

Reshmee Auckloo
Reshmee Auckloo – Reshmee is a certified Microsoft professional and has been involved in delivering solutions across a wide variety of industry sectors in a range of assignments from SSRS to Microsoft SharePoint, Project Server development, CRM Dynamics and .Net including business requirements gathering and software quality assurance.

This article has been cross posted from reshmeeauckloo.wordpress.com (original article)

Export Lists Schema to XML using CSOM and PnP

October 22, 2016 Leave a comment

I had to automate deployment of lists and libraries into different environments, e.g. on premises and online.

There are different elements to consider when deploying lists or libraries namely

– List Properties

– List Content Types

– Views

– Fields

I could have written a configuration file in xml manually to specify the details above. Instead I have decided to configure lists and libraries from a SharePoint 2013 On Premises Dev environment and export the list schemaXML property to a XML file. The list’s SchemaXML property is not accessible using SharePoint CSOM assemblies. Instead a remote procedure call using HTTP Get request  has to be executed.

http://Server_Name/[sites/][Site_Name/]_vti_bin/owssvr.dll?Cmd=ExportList&List=GUID

I am interested only in custom lists, I have built a list of out of the box lists/libraries which do not need to be exported, i.e. _catalogs,Lists/ContentTypeSyncLog,/IWConvertedForms,FormServerTemplates,Lists/PublishedFeed,/ProjectPolicyItemList,SiteAssets,SitePages,Style Library,Lists/TaxonomyHiddenList.

I have used the PnP PowerShell commands

  •  To connect to SharePoint

Connect-SPOnline -Url $SiteUrl -CurrentCredentials

  •  To retrieve all lists
$SPOLists = Get-SPOList

Download SharePointPnPPowerShell2016.msi from http://bit.ly/2f1PeJp to use PnP PowerShell Commands.

After all the lists are retrieved, if the list is not in the exclusions criteria, its schemaXML is downloaded using HTTP get request with URL and to XML file.

$ListSchemaUrl = “$SiteUrl/_vti_bin/owssvr.dll?Cmd=ExportList&List={” + $list.Id.ToString() + “}”;

The script can be downloaded from technet gallery

 Param( 
 [Parameter(Mandatory=$true)] 
 [string]$SiteUrl, 
 [Parameter(Mandatory=$false)] 
 [string]$XMLListsFileName = "SiteLists.xml" 
 ) 
##OOB SharePoint Lists to exclude from Export 
 $ListsNameToExclude  = "_catalogs,Lists/ContentTypeSyncLog,/IWConvertedForms,FormServerTemplates,Lists/PublishedFeed,/ProjectPolicyItemList,SiteAssets,SitePages,Style Library,Lists/TaxonomyHiddenList"   
 $ArrayListtoExcl = $ListsNameToExclude.Split(",");  
Set-Location $PSScriptRoot 
 
function LoadAndConnectToSharePoint($url) 
{ 
  ##Using PnP library 
  Connect-SPOnline -Url $SiteUrl -CurrentCredentials 
  $spContext =  Get-SPOContext 
  return $spContext 
} 
 
$Context = LoadAndConnectToSharePoint $SiteUrl 
 
$SPOLists = Get-SPOList 
$PathToExportXMLSiteLists = $PSScriptRoot 
 
$xmlFilePath = "$PathToExportXMLSiteLists\$XMLListsFileName" 
 
 #Create Export Files 
 New-Item $xmlFilePath -type file -force 
 
 #Export Site Columns to XML file 
 Add-Content $xmlFilePath "<?xml version=`"1.0`" encoding=`"utf-8`"?>" 
 Add-Content $xmlFilePath "`n<Lists>" 
 
foreach($list in $SPOLists) 
{ 
  $exclude = $false; 
  foreach($lsEx in $ArrayListtoExcl) 
  { 
   if($list.DefaultViewUrl -match $lsEx) 
   { 
    $exclude =$true; 
    break; 
   } 
  } 
  if($exclude  -eq $false) 
  { 
    $ListSchemaUrl = "$SiteUrl/_vti_bin/owssvr.dll?Cmd=ExportList&List={" + $list.Id.ToString() + "}"; 
    $listSchemaXML = Invoke-WebRequest -Uri $ListSchemaUrl -UseDefaultCredentials 
    Add-Content $xmlFilePath $listSchemaXML; 
  } 
} 
Add-Content $xmlFilePath "</Lists>" 
 
 

Provide the siteURL (url of the SharePoint site from which you want to export list definitions) parameter value and optionally provide the XMLListsFileName (name of te XML file to store the list schema) parameter value.

The output of running the script is as below.

To create lists/libraries using the XML config file, refer to tech net article Create Lists Libraries from Schema as XML using CSOM

<?xml version="1.0" encoding="utf-8"?> 
 
<Lists  <List Name="{999137BC-274B-4F74-AF93-BA1068806BEE}" Title="Documents" Description="" Direction="0" BaseType="1" FeatureId="{00BFEA71-E717-4E80-AA17-D0C71B360101}" SendToLocation="|" ServerTemplate="101" Url="Shared Documents" DisableAttachments="TRUE" EnableContentTypes="TRUE" NavigateForFormsPages="TRUE" BrowserFileHandling="permissive" Version="7"    <MetaData      <Views        <View Name="{B6022AAF-88E4-4DA2-BECC-416178FC8ABB}" DefaultView="TRUE" MobileView="TRUE" MobileDefaultView="TRUE" Type="HTML" DisplayName="All Documents" Url="Shared Documents/Forms/AllItems.aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/dlicon.png?rev=23"          <ViewFields            <FieldRef Name="DocIcon"/> 
            <FieldRef Name="LinkFilename"/> 
            <FieldRef Name="Modified"/> 
            <FieldRef Name="MigrationSourceURL"/> 
            <FieldRef Name="Level0"/> 
            <FieldRef Name="Level1"/> 
          </ViewFields> 
          <ViewData/> 
          <Query            <OrderBy              <FieldRef Name="FileLeafRef"/> 
            </OrderBy> 
          </Query> 
          <Aggregations Value="Off"/> 
          <RowLimit Paged="TRUE">30</RowLimit> 
          <Mobile MobileItemLimit="3" MobileSimpleViewField="LinkFilename"/> 
          <XslLink>main.xsl</XslLink> 
          <JSLink>clienttemplates.js</JSLink> 
          <Toolbar Type="Standard"/> 
          <ParameterBindings            <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noitemsinview_doclibrary)"/> 
            <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noitemsinview_doclibrary_howto2)"/> 
          </ParameterBindings> 
        </View> 
        <View Name="{43D7A4A0-85DC-4BAF-A317-1B7114C80E2B}" Type="HTML" Hidden="TRUE" TabularView="FALSE" DisplayName="Merge Documents" Url="Shared Documents/Forms/Combine.aspx" Level="1" BaseViewID="7" ContentTypeID="0x" ToolbarTemplate="MergeToolBar" ImageUrl="/_layouts/15/images/dlicon.png?rev=23"          <XslLink>main.xsl</XslLink> 
          <Query            <OrderBy              <FieldRef Name="FileLeafRef"/> 
            </OrderBy> 
          </Query> 
          <ViewFields            <FieldRef Name="DocIcon"/> 
            <FieldRef Name="LinkFilename"/> 
            <FieldRef Name="Combine"/> 
            <FieldRef Name="Modified"/> 
            <FieldRef Name="Editor"/> 
          </ViewFields> 
          <RowLimit Paged="TRUE">30</RowLimit> 
          <JSLink>clienttemplates.js</JSLink> 
          <Toolbar Type="Standard"/> 
          <ParameterBindings            <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noitemsinview_doclibrary)"/> 
            <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noitemsinview_doclibrary_howto2)"/> 
          </ParameterBindings> 
        </View> 
        <View Name="{9E9F7CB8-CBC6-44DC-92E7-E43231556A9D}" Type="HTML" Hidden="TRUE" TabularView="FALSE" DisplayName="Relink Documents" Url="Shared Documents/Forms/repair.aspx" Level="1" BaseViewID="9" ContentTypeID="0x" ToolbarTemplate="RelinkToolBar" ImageUrl="/_layouts/15/images/dlicon.png?rev=23"          <XslLink>main.xsl</XslLink> 
          <Query            <OrderBy              <FieldRef Name="FileLeafRef"/> 
            </OrderBy> 
            <Where              <Neq                <FieldRef Name="xd_Signature"/> 
                <Value Type="Boolean">1</Value> 
              </Neq> 
            </Where> 
          </Query> 
          <ViewFields            <FieldRef Name="DocIcon"/> 
            <FieldRef Name="LinkFilenameNoMenu"/> 
            <FieldRef Name="RepairDocument"/> 
            <FieldRef Name="Modified"/> 
            <FieldRef Name="Editor"/> 
            <FieldRef Name="ContentType"/> 
            <FieldRef Name="TemplateUrl"/> 
          </ViewFields> 
          <RowLimit Paged="TRUE">30</RowLimit> 
          <Toolbar Type="Standard"/> 
          <ParameterBindings            <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noitemsinview_doclibrary)"/> 
            <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noitemsinview_doclibrary_howto2)"/> 
          </ParameterBindings> 
        </View> 
        <View Name="{086F7F40-F379-43C8-97DD-618EF9E7B0E1}" Type="HTML" Hidden="TRUE" DisplayName="assetLibTemp" Url="Shared Documents/Forms/Thumbnails.aspx" Level="1" BaseViewID="40" ContentTypeID="0x" ImageUrl="/_layouts/15/images/dlicon.png?rev=23"          <Query            <OrderBy              <FieldRef Name="LinkFilename"/> 
            </OrderBy> 
          </Query> 
          <ViewFields            <FieldRef Name="LinkFilename"/> 
          </ViewFields> 
          <RowLimit>20</RowLimit> 
        </View> 
        <View Name="{952ADDDF-B3F3-4FC9-A676-457BF6FAB561}" Type="HTML" Hidden="TRUE" DisplayName="" Url="SitePages/Home.aspx" Level="1" BaseViewID="50" ContentTypeID="0x"          <XslLink Default="TRUE">main.xsl</XslLink> 
          <JSLink>clienttemplates.js</JSLink> 
          <RowLimit Paged="TRUE">15</RowLimit> 
          <Toolbar Type="Standard"/> 
          <ViewFields            <FieldRef Name="DocIcon"/> 
            <FieldRef Name="LinkFilename"/> 
          </ViewFields> 
          <ParameterBindings            <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noitemsinview_doclibrary)"/> 
            <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noitemsinview_doclibrary_howto2)"/> 
          </ParameterBindings> 
          <Query            <OrderBy              <FieldRef Name="Modified" Ascending="FALSE"/> 
            </OrderBy> 
          </Query> 
        </View> 
      </Views> 
      <Fields        <Field ID="{1d22ea11-1e32-424e-89ab-9fedbadb6ce1}" ColName="tp_ID" RowOrdinal="0" ReadOnly="TRUE" Type="Counter" Name="ID" DisplayName="ID" SourceID="http://bit.ly/2evXbnJ" StaticName="ID" FromBaseType="TRUE"/> 
        <Field ID="{03e45e84-1992-4d42-9116-26f756012634}" RowOrdinal="0" Type="ContentTypeId" Sealed="TRUE" ReadOnly="TRUE" Hidden="TRUE" DisplayName="Content Type ID" Name="ContentTypeId" DisplaceOnUpgrade="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="ContentTypeId" ColName="tp_ContentTypeId" FromBaseType="TRUE"/> 
        <Field ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Type="Computed" DisplayName="Content Type" Name="ContentType" DisplaceOnUpgrade="TRUE" RenderXMLUsingPattern="TRUE" Sortable="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="ContentType" Group="_Hidden" PITarget="MicrosoftWindowsSharePointServices" PIAttribute="ContentTypeID" FromBaseType="TRUE"          <FieldRefs            <FieldRef Name="ContentTypeId"/> 
          </FieldRefs> 
          <DisplayPattern            <MapToContentType              <Column Name="ContentTypeId"/> 
            </MapToContentType> 
          </DisplayPattern> 
        </Field> 
        <Field ID="{8c06beca-0777-48f7-91c7-6da68bc07b69}" ColName="tp_Created" RowOrdinal="0" ReadOnly="TRUE" Type="DateTime" Name="Created" DisplayName="Created" StorageTZ="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Created" FromBaseType="TRUE"/> 
        <Field ID="{1df5e554-ec7e-46a6-901d-d85a3881cb18}" ColName="tp_Author" RowOrdinal="0" ReadOnly="TRUE" Type="User" List="UserInfo" Name="Author" DisplayName="Created By" SourceID="http://bit.ly/2evXbnJ" StaticName="Author" FromBaseType="TRUE"/> 
        <Field ID="{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}" ColName="tp_Modified" RowOrdinal="0" ReadOnly="TRUE" Type="DateTime" Name="Modified" DisplayName="Modified" StorageTZ="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Modified" FromBaseType="TRUE"/> 
        <Field ID="{d31655d1-1d5b-4511-95a1-7a09e9b75bf2}" ColName="tp_Editor" RowOrdinal="0" ReadOnly="TRUE" Type="User" List="UserInfo" Name="Editor" DisplayName="Modified By" SourceID="http://bit.ly/2evXbnJ" StaticName="Editor" FromBaseType="TRUE"/> 
        <Field ID="{26d0756c-986a-48a7-af35-bf18ab85ff4a}" ColName="tp_HasCopyDestinations" RowOrdinal="0" Sealed="TRUE" Hidden="TRUE" ReadOnly="TRUE" Type="Boolean" Name="_HasCopyDestinations" DisplaceOnUpgrade="TRUE" DisplayName="Has Copy Destinations" SourceID="http://bit.ly/2evXbnJ" StaticName="_HasCopyDestinations" FromBaseType="TRUE"/> 
        <Field ID="{6b4e226d-3d88-4a36-808d-a129bf52bccf}" ColName="tp_CopySource" RowOrdinal="0" Sealed="TRUE" Hidden="FALSE" ReadOnly="TRUE" Type="Text" Name="_CopySource" DisplaceOnUpgrade="TRUE" DisplayName="Copy Source" SourceID="http://bit.ly/2evXbnJ" StaticName="_CopySource" FromBaseType="TRUE"/> 
        <Field ID="{fdc3b2ed-5bf2-4835-a4bc-b885f3396a61}" ColName="tp_ModerationStatus" RowOrdinal="0" ReadOnly="TRUE" Type="ModStat" Name="_ModerationStatus" DisplayName="Approval Status" Hidden="TRUE" CanToggleHidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_ModerationStatus" FromBaseType="TRUE"          <CHOICES            <CHOICE>0;#Approved</CHOICE> 
            <CHOICE>1;#Rejected</CHOICE> 
            <CHOICE>2;#Pending</CHOICE> 
            <CHOICE>3;#Draft</CHOICE> 
            <CHOICE>4;#Scheduled</CHOICE> 
          </CHOICES> 
          <Default>0</Default> 
        </Field> 
        <Field ID="{34ad21eb-75bd-4544-8c73-0e08330291fe}" ReadOnly="TRUE" Type="Note" Name="_ModerationComments" DisplayName="Approver Comments" Hidden="TRUE" CanToggleHidden="TRUE" Filterable="FALSE" Sortable="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_ModerationComments" FromBaseType="TRUE" ColName="ntext1" RowOrdinal="0"/> 
        <Field ID="{94f89715-e097-4e8b-ba79-ea02aa8b7adb}" Name="FileRef" ReadOnly="TRUE" Hidden="TRUE" Type="Lookup" DisplayName="URL Path" List="Docs" FieldRef="ID" ShowField="FullUrl" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FileRef" FromBaseType="TRUE"/> 
        <Field ID="{56605df6-8fa1-47e4-a04c-5b384d59609f}" Name="FileDirRef" ReadOnly="TRUE" Hidden="TRUE" Type="Lookup" DisplayName="Path" List="Docs" FieldRef="ID" ShowField="DirName" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FileDirRef" FromBaseType="TRUE"/> 
        <Field ID="{173f76c8-aebd-446a-9bc9-769a2bd2c18f}" Name="Last_x0020_Modified" ReadOnly="TRUE" Hidden="TRUE" DisplayName="Modified" Type="Lookup" List="Docs" FieldRef="ID" ShowField="TimeLastModified" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="Last_x0020_Modified" FromBaseType="TRUE"/> 
        <Field ID="{998b5cff-4a35-47a7-92f3-3914aa6aa4a2}" Name="Created_x0020_Date" ReadOnly="TRUE" Hidden="TRUE" DisplayName="Created" Type="Lookup" List="Docs" FieldRef="ID" ShowField="TimeCreated" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="Created_x0020_Date" FromBaseType="TRUE"/> 
        <Field ID="{8fca95c0-9b7d-456f-8dae-b41ee2728b85}" Name="File_x0020_Size" Hidden="TRUE" ReadOnly="TRUE" Type="Lookup" DisplayName="File Size" List="Docs" FieldRef="ID" ShowField="SizeInKB" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="File_x0020_Size" FromBaseType="TRUE"/> 
        <Field ID="{30bb605f-5bae-48fe-b4e3-1f81d9772af9}" Name="FSObjType" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Item Type" List="Docs" FieldRef="ID" ShowField="FSType" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FSObjType" FromBaseType="TRUE"/> 
        <Field ID="{423874f8-c300-4bfb-b7a1-42e2159e3b19}" Name="SortBehavior" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Sort Type" List="Docs" FieldRef="ID" ShowField="SortBehavior" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="SortBehavior" FromBaseType="TRUE"/> 
        <Field ID="{ba3c27ee-4791-4867-8821-ff99000bac98}" Name="PermMask" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" RenderXMLUsingPattern="TRUE" ShowInFileDlg="FALSE" Type="Computed" DisplayName="Effective Permissions Mask" SourceID="http://bit.ly/2evXbnJ" StaticName="PermMask" FromBaseType="TRUE"          <FieldRefs            <FieldRef Name="ID"/> 
          </FieldRefs> 
          <DisplayPattern            <CurrentRights/> 
          </DisplayPattern> 
        </Field> 
        <Field ID="{a7b731a3-1df1-4d74-a5c6-e2efba617ae2}" Name="CheckedOutUserId" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="ID of the User who has the item Checked Out" List="Docs" FieldRef="ID" ShowField="CheckoutUserId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="CheckedOutUserId" FromBaseType="TRUE"/> 
        <Field ID="{cfaabd0f-bdbd-4bc2-b375-1e779e2cad08}" Name="IsCheckedoutToLocal" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Is Checked out to local" List="Docs" FieldRef="ID" ShowField="IsCheckoutToLocal" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="IsCheckedoutToLocal" FromBaseType="TRUE"/> 
        <Field ID="{3881510a-4e4a-4ee8-b102-8ee8e2d0dd4b}" ColName="tp_CheckoutUserId" RowOrdinal="0" ReadOnly="TRUE" Type="User" List="UserInfo" Name="CheckoutUser" DisplaceOnUpgrade="TRUE" DisplayName="Checked Out To" SourceID="http://bit.ly/2evXbnJ" StaticName="CheckoutUser" FromBaseType="TRUE"/> 
        <Field ID="{8553196d-ec8d-4564-9861-3dbe931050c8}" ShowInFileDlg="FALSE" ShowInVersionHistory="FALSE" Type="File" Name="FileLeafRef" DisplayName="Name" AuthoringInfo="(for use in forms)" List="Docs" FieldRef="ID" ShowField="LeafName" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" Required="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="FileLeafRef" FromBaseType="TRUE"/> 
        <Field ID="{4b7403de-8d94-43e8-9f0f-137a3e298126}" Name="UniqueId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Unique Id" List="Docs" FieldRef="ID" ShowField="UniqueId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="UniqueId" FromBaseType="TRUE"/> 
        <Field ID="{6d2c4fde-3605-428e-a236-ce5f3dc2b4d4}" Name="SyncClientId" DisplaceOnUpgrade="TRUE" Hidden="TRUE" ReadOnly="TRUE" DisplayName="Client Id" ShowInFileDlg="FALSE" Type="Lookup" List="Docs" FieldRef="ID" ShowField="SyncClientId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="SyncClientId" FromBaseType="TRUE"/> 
        <Field ID="{c5c4b81c-f1d9-4b43-a6a2-090df32ebb68}" Name="ProgId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="ProgId" List="Docs" FieldRef="ID" ShowField="ProgId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ProgId" FromBaseType="TRUE"/> 
        <Field ID="{dddd2420-b270-4735-93b5-92b713d0944d}" Name="ScopeId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="ScopeId" List="Docs" FieldRef="ID" ShowField="ScopeId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ScopeId" FromBaseType="TRUE"/> 
        <Field ID="{4a389cb9-54dd-4287-a71a-90ff362028bc}" Name="VirusStatus" Hidden="TRUE" ReadOnly="TRUE" Type="Lookup" DisplayName="Virus Status" List="Docs" FieldRef="ID" ShowField="Size" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="VirusStatus" FromBaseType="TRUE"/> 
        <Field ID="{9d4adc35-7cc8-498c-8424-ee5fd541e43a}" Name="CheckedOutTitle" Hidden="TRUE" ReadOnly="TRUE" Type="Lookup" DisplayName="Checked Out To" List="Docs" FieldRef="ID" ShowField="CheckedOutTitle" Format="TRUE" JoinColName="DoclibRowId" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="CheckedOutTitle" FromBaseType="TRUE"/> 
        <Field ID="{58014f77-5463-437b-ab67-eec79532da67}" Name="_CheckinComment" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Type="Lookup" DisplayName="Check In Comment" List="Docs" FieldRef="ID" ShowField="CheckinComment" Filterable="FALSE" Format="TRUE" JoinColName="DoclibRowId" JoinType="INNER" Sortable="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_CheckinComment" FromBaseType="TRUE"/> 
        <Field ID="{e2a15dfd-6ab8-4aec-91ab-02f6b64045b0}" ReadOnly="TRUE" Hidden="TRUE" Type="Computed" Name="LinkCheckedOutTitle" DisplayName="Checked Out To" Filterable="TRUE" AuthoringInfo="(link to username to user details page)" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkCheckedOutTitle" FromBaseType="TRUE"          <FieldRefs            <FieldRef Name="CheckedOutTitle"/> 
            <FieldRef Name="CheckedOutUserId"/> 
          </FieldRefs> 
          <DisplayPattern            <IfEqual              <Expr1                <Field Name="CheckedOutUserId"/> 
              </Expr1> 
              <Expr2/> 
              <Then/> 
              <Else                <HTML><![CDATA[<a href="]]></HTML> 
                <HttpVDir CurrentWeb="TRUE"/> 
                <HTML><![CDATA[/_layouts/15/userdisp.aspx?id=]]></HTML> 
                <Field Name="CheckedOutUserId"/> 
                <HTML><![CDATA[">]]></HTML> 
                <Field HTMLEncode="TRUE" Name="CheckedOutTitle"/> 
                <HTML><![CDATA[</a>]]></HTML> 
              </Else> 
            </IfEqual> 
          </DisplayPattern> 
        </Field> 
        <Field ID="{822c78e3-1ea9-4943-b449-57863ad33ca9}" ReadOnly="TRUE" Hidden="TRUE" Type="Text" Name="Modified_x0020_By" DisplayName="Document Modified By" SourceID="http://bit.ly/2evXbnJ" StaticName="Modified_x0020_By" FromBaseType="TRUE" ColName="nvarchar10" RowOrdinal="0"/> 
        <Field ID="{4dd7e525-8d6b-4cb4-9d3e-44ee25f973eb}" ReadOnly="TRUE" Hidden="TRUE" Type="Text" Name="Created_x0020_By" DisplayName="Document Created By" SourceID="http://bit.ly/2evXbnJ" StaticName="Created_x0020_By" FromBaseType="TRUE" ColName="nvarchar11" RowOrdinal="0"/> 
        <Field ID="{39360f11-34cf-4356-9945-25c44e68dade}" ReadOnly="TRUE" Hidden="TRUE" Type="Text" Name="File_x0020_Type" DisplayName="File Type" SourceID="http://bit.ly/2evXbnJ" StaticName="File_x0020_Type" FromBaseType="TRUE" ColName="nvarchar12" RowOrdinal="0"/> 
        <Field ID="{0c5e0085-eb30-494b-9cdd-ece1d3c649a2}" ReadOnly="TRUE" Hidden="TRUE" Type="Text" Name="HTML_x0020_File_x0020_Type" DisplayName="HTML File Type" SourceID="http://bit.ly/2evXbnJ" StaticName="HTML_x0020_File_x0020_Type" FromBaseType="TRUE" ColName="nvarchar13" RowOrdinal="0"/> 
        <Field ID="{c63a459d-54ba-4ab7-933a-dcf1c6fadec2}" Name="_SourceUrl" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Text" DisplayName="Source URL" SourceID="http://bit.ly/2evXbnJ" StaticName="_SourceUrl" FromBaseType="TRUE" ColName="nvarchar14" RowOrdinal="0"/> 
        <Field ID="{034998e9-bf1c-4288-bbbd-00eacfc64410}" Name="_SharedFileIndex" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Text" DisplayName="Shared File Index" SourceID="http://bit.ly/2evXbnJ" StaticName="_SharedFileIndex" FromBaseType="TRUE" ColName="nvarchar15" RowOrdinal="0"/> 
        <Field ID="{3c6303be-e21f-4366-80d7-d6d0a3b22c7a}" Hidden="TRUE" ReadOnly="TRUE" Type="Computed" Name="_EditMenuTableStart" DisplaceOnUpgrade="TRUE" DisplayName="Edit Menu Table Start" ClassInfo="Menu" SourceID="http://bit.ly/2evXbnJ" StaticName="_EditMenuTableStart" FromBaseType="TRUE"> 
          <FieldRefs> 
            <FieldRef Name="FileLeafRef"/> 
            <FieldRef Name="FileDirRef"/> 
            <FieldRef Name="FSObjType"/> 
            <FieldRef Name="ID"/> 
            <FieldRef Name="ServerUrl"/> 
            <FieldRef Name="HTML_x0020_File_x0020_Type"/> 
            <FieldRef Name="File_x0020_Type"/> 
            <FieldRef Name="PermMask"/> 
            <FieldRef Name="IsCheckedoutToLocal"/> 
            <FieldRef Name="CheckoutUser"/> 
            <FieldRef Name="_SourceUrl"/> 
            <FieldRef Name="_HasCopyDestinations"/> 
            <FieldRef Name="_CopySource"/> 
            <FieldRef Name="ContentType"/> 
            <FieldRef Name="ContentTypeId"/> 
            <FieldRef Name="_ModerationStatus"/> 
            <FieldRef Name="_UIVersion"/> 
          </FieldRefs> 
          <DisplayPattern> 
            <HTML><![CDATA[
                            " id="                            " Url="                            " DRef="                            " Perm="                            " type="                            " Ext="                            " Icon="                                              |                                            " OType="                            " COUId="                            " SRed="                                              |                                            " DefaultIO="                            " COut="                            " HCD="                            " CSrc="                            " MS="                                                                                    " UIS="                                          " SUrl="                            ]]>                                                                                                              " id="                                                                                                              ]]></HTML>              <HTML><![CDATA[
]]>               ]]>              ]]>               ]]>              ]]></HTML>            </DisplayPattern>          </Field>          <Field ID="{9d30f126-ba48-446b-b8f9-83745f322ebe}" ReadOnly="TRUE" Type="Computed" Name="LinkFilenameNoMenu" DisplayName="Name" DisplayNameSrcField="FileLeafRef" Filterable="FALSE" AuthoringInfo="(linked to document)" ListItemMenuAllowed="Prohibited" LinkToItemAllowed="Prohibited" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkFilenameNoMenu" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="FSObjType"/>              <FieldRef Name="Created_x0020_Date"/>              <FieldRef Name="FileRef"/>              <FieldRef Name="File_x0020_Type"/>              <FieldRef Name="HTML_x0020_File_x0020_Type"/>              <FieldRef Name="ContentTypeId"/>              <FieldRef Name="PermMask"/>              <FieldRef Name="CheckoutUser"/>              <FieldRef Name="IsCheckedoutToLocal"/>              <FieldRef Name="ServerUrl"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>1</Expr2>                <Then>                  <FieldSwitch>                    <Expr>                      <GetVar Name="RecursiveView"/>                    </Expr>                    <Case Value="1">                      <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                    </Case>                    <Default>                      <SetVar Name="UnencodedFilterLink">                        <SetVar Name="RootFolder">                          <HTML>/</HTML>                          <LookupColumn Name="FileRef"/>                        </SetVar>                        <SetVar Name="SkipHost">1</SetVar>                        <SetVar Name="FolderCTID">                          <FieldSwitch>                            <Expr>                              <ListProperty Select="EnableContentTypes"/>                            </Expr>                            <Case Value="1">                              <Column Name="ContentTypeId"/>                            </Case>                          </FieldSwitch>                        </SetVar>                        <FilterLink Default="" Paged="FALSE"/>                      </SetVar>                      <HTML><![CDATA[<a onfocus="OnLink(this)" href="]]></HTML>                      <GetVar Name="UnencodedFilterLink" HTMLEncode="TRUE"/>                      <HTML><![CDATA[" onmousedown="javascript:VerifyFolderHref(this,event, ']]></HTML>                                                                                                                                                                                                                                                                                                                                                                                                                                  |                                                                                                                                                                                                                                                                                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |                                                                                                                                                                                                                                                                                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ]]>                                                                                                                                              1                                                  ]]>                                                                    ]]>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |                                                                                                                                                                                                                                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                ]]>                                                                                                                                                            1                                          ]]>                                                        ]]>                                                          New                    ]]>                                                                                                                                                                                                                                                                                                                                                                    ]]>                                    ]]>                  ]]>                   ]]>                  ]]>                   ]]>                  ]]>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1                                                                  0x0120D5                                                                                                                            Document Collection:                                                                                                     Folder:                                                                                                                                                                                                                                                                                                                                                                                                                                                             1                                                                                                                                          |                                                                                                                    |                                                                                      folder.gif                                                                                                                                                                                          |                                                                                                                                                                                                                                                                                                                                                                                                    folder.gif                                                                                                                                                                                                                                                                                                                                                        |                                                                                                                                                                                                                                                                                                                                                                                      ]]>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ]]>                                                                                                                                                                                    ]]>                                                                                                                                1                                                                                                                                                                                                                                                                                /                                                                          1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |                                                                                                                                                                                                                                                                                                                                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |                                                                                                                                                                                                                                                                                                                                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ]]>                                                                              ]]>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |                                                                                                                                                                                                                                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                ]]>                                                      ]]>                                                                                                                              /                                                                                                                            /                                                                                                                                                                                              1                                                                                                                                                                                                                                                                                                                                                                             KB                                                                                                                                                                                                                                                                                                                                                            Selected                  ]]>                                                                                                                                                                                                                                                                              ]]>                                    Normal                  ]]>                  ]]>                                                                                                                                                                                                                                                                                      Selected                  ]]>                                                                                                                                                                                                                                                                              ]]>                                    Normal                  ]]>                  ]]>                                                                                                                                                                                                                                                                                                                                                                                      1                                                                                                                                                                                                                                                                                                                1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ]]>                                    Edit Document Properties                  ]]>                  ]]>                                                                                                                                                                                                                                                                                                                                                                                                                                    0                                                                      ]]>                                                      ]]>                                                        |                                                                                                  ]]>                                                                                                                                                                                                              0                                                                      ]]>                                                                                                                                                                                                                                                                                                                                    PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvRGlzcGxheT48RWRpdD5Eb2N1bWVudExpYnJhcnlGb3JtPC9FZGl0PjxOZXc+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=                                                                                                                                                        PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=                                                                                                                                                                                                                          PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvRGlzcGxheT48RWRpdD5Eb2N1bWVudExpYnJhcnlGb3JtPC9FZGl0PjxOZXc+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=                                                                                              1          1          0                Shared Documents/Forms/template.dotx                              Content Following Item Updated Event Receiver 101            2            10002            10000            Microsoft.Office.Server.UserProfiles, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c            Microsoft.Office.Server.UserProfiles.ContentFollowingItemEventReceiver                                                                                main.xsl            clienttemplates.js            30                                                                                                                                                                                                                                                    main.xsl            clienttemplates.js            30                                                                                                                                                                                                                                                                  main.xsl            30                                                                                                                                                                                                                                                                                                                    1                                                                                                                20                                                                                                                                                                                                                        30                        main.xsl            clienttemplates.js                                                                                                                                                                                                                                                                                                    FALSE                                FALSE                                                                                                                                                                                                                                                                                                                                                                        1                                                                                        /                                                                    /_w/                                                                                          _                                                                                          .jpg                                                                                                                                                                0                                                                                                                                    |                                                                                                                                                                                                                                                                                                                                                                                                          |                                                                                                                                                                                                                  /                                                                                            /_w/                                                                                                                          _                                                                                                                          .jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ]]>                                                                                                                                                                                                                                                                                              0                                                                                                                                                                                                                                                                                    0                                                                          ]]>                                                                                                                                                              ]]>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1                                                                                        /                                                                    /_t/                                                                                          _                                                                                          .jpg                                                                                                                                                                0                                                                                                                                    |                                                                                                                                                                                                                                                                                                                                                                                                          |                                                                                                                                                                                                                  /                                                                                            /_t/                                                                                                                          _                                                                                                                          .jpg                                                                                                                                                                                                                                                                                                                                                                                            0                                                      fSelectFieldAppeared = true; firstIdWithCheckbox =']]>                                                                                                <input type=checkbox disabled style="visibility:hidden" title='selection checkbox' name="selectionCheckBox" id="cbx_]]>                  </HTML>                  <Column Name="ID"/>                  <HTML><![CDATA[" onfocus="if (!IsImgLibJssLoaded()) return; HiLiteRow(]]></HTML>                  <Column Name="ID"/>                  <HTML><![CDATA[)" onclick="if (!IsImgLibJssLoaded()) return; ToggleSelection(]]></HTML>                  <Column Name="ID"/>                  <HTML><![CDATA[)">]]></HTML>                </Then>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{76d1cc87-56de-432c-8a2a-16e5ba5331b3}" ReadOnly="TRUE" Type="Computed" Group="_Hidden" Name="NameOrTitle" ClassInfo="Menu" DisplayName="Name" DisplayNameSrcField="FileLeafRef" Filterable="FALSE" AuthoringInfo="(linked to display items)" SourceID="http://bit.ly/2f1P5Ga" StaticName="NameOrTitle" Customization="">            <FieldRefs>              <FieldRef ID="{687C7F94-686A-42d3-9B67-2782EAC4B4F8}" Name="FileLeafRef"/>              <FieldRef ID="{56605DF6-8FA1-47e4-A04C-5B384D59609F}" Name="FileDirRef"/>              <FieldRef ID="{FA564E0F-0C70-4ab9-B863-0177E6DDD247}" Name="Title"/>              <FieldRef ID="{081C6E4C-5C14-4f20-B23E-1A71CEB6A67C}" Name="DocIcon"/>              <FieldRef ID="{94F89715-E097-4e8b-BA79-EA02AA8B7ADB}" Name="FileRef"/>              <FieldRef ID="{9DA97A8A-1DA5-4a77-98D3-4BC10456E700}" Name="Description"/>              <FieldRef ID="{30BB605F-5BAE-48fe-B4E3-1F81D9772AF9}" Name="FSObjType"/>              <FieldRef ID="{3881510A-4E4A-4ee8-B102-8EE8E2D0DD4B}" Name="CheckedOutUserId"/>              <FieldRef ID="{105F76CE-724A-4bba-AECE-F81F2FCE58F5}" Name="ServerUrl"/>              <FieldRef ID="{998b5cff-4a35-47a7-92f3-3914aa6aa4a2}" Name="Created_x0020_Date"/>            </FieldRefs>            <DisplayPattern>              <HTML>                <![CDATA[              <table cellspacing="0" class="ms-unselectedtitle" NameOrTitle="true"              Url="]]>              </HTML>              <Field Name="ServerUrl" URLEncodeAsURL="TRUE"/>              <HTML>                <![CDATA["               DRef="]]>              </HTML>              <Field Name="FileDirRef"/>              <HTML>                <![CDATA["              COUId="]]>              </HTML>              <Field Name="CheckedOutUserId"/>              <HTML>                <![CDATA["              Type="]]>              </HTML>              <Column Name="HTML_x0020_File_x0020_Type"/>              <HTML>                &quot;                Icon=&quot;              </HTML>              <MapToAll>                <Column Name="HTML_x0020_File_x0020_Type"/>                <HTML>|</HTML>                <Column Name="File_x0020_Type"/>              </MapToAll>              <HTML>&quot; OType=&quot;</HTML>              <LookupColumn Name="FSObjType"/>              <HTML>                <![CDATA["                          Ext="]]>              </HTML>              <Column Name="File_x0020_Type"/>              <HTML><![CDATA[" cellspacing="0" cellpadding="0"><tr id="title]]></HTML>              <Column Name="ID"/>              <HTML><![CDATA[" onclick="if (!IsImgLibJssLoaded()) return; ClickRow(]]></HTML>              <Column Name="ID"/>              <HTML><![CDATA[)" oncontextmenu="if (!IsImgLibJssLoaded()) return true; return ContextMenuOnRow(]]></HTML>              <Column Name="ID"/>              <HTML><![CDATA[);" onmouseover="if (!IsImgLibJssLoaded()) return; MouseOverRow(]]></HTML>              <Column Name="ID"/>              <HTML><![CDATA[)" onmouseout="if (!IsImgLibJssLoaded()) return; MouseOutRow(]]></HTML>              <Column Name="ID"/>              <HTML>                <![CDATA[)">              <td width="100%" class="ms-vb">]]>              </HTML>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>0</Expr2>                <Then>                  <IfEqual>                    <Expr1>                      <LookupColumn Name="ImageWidth"/>                    </Expr1>                    <Expr2/>                    <Then>                      <HTML><![CDATA[<a href="]]></HTML>                      <Field Name="EncodedAbsUrl"/>                      <HTML><![CDATA[" onclick="if (!IsImgLibJssLoaded()) return; javascript:DisplayItemOnFileRef(]]></HTML>                      <Column Name="ID"/>                      <HTML><![CDATA[);return false;" onmouseover="if (!IsImgLibJssLoaded()) return; javascript:MouseOverRow(]]></HTML>                      <Column Name="ID"/>                      <HTML><![CDATA[)" target="_self">]]></HTML>                      <UrlBaseName HTMLEncode="TRUE">                        <LookupColumn Name="FileLeafRef"/>                      </UrlBaseName>                      <HTML><![CDATA[</a>]]></HTML>                    </Then>                    <Else>                      <HTML><![CDATA[<a href="]]></HTML>                      <URL Cmd="Display"/>                      <HTML><![CDATA[" ]]></HTML>                      <HTML><![CDATA[onclick="if (!IsImgLibJssLoaded()) return; javascript:DisplayItemOnFileRef(]]></HTML>                      <Column Name="ID"/>                      <HTML><![CDATA[);return false;" onmouseover="if (!IsImgLibJssLoaded()) return; javascript:MouseOverRow(]]></HTML>                      <Column Name="ID"/>                      <HTML><![CDATA[)" target="_self">]]></HTML>                      <UrlBaseName HTMLEncode="TRUE">                        <LookupColumn Name="FileLeafRef"/>                      </UrlBaseName>                      <HTML><![CDATA[</a>]]></HTML>                    </Else>                  </IfEqual>                  <IfNew Name="Created_x0020_Date">                    <HTML><![CDATA[<img src="/_layouts/15/1033/images/new.gif" alt="]]></HTML>                    <HTML>New</HTML>                    <HTML><![CDATA[" class="ms-newgif" />]]></HTML>                  </IfNew>                </Then>                <Else>                  <Switch>                    <Expr>                      <GetVar Name="RecursiveView"/>                    </Expr>                    <Case Value="1">                      <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                    </Case>                    <Default>                      <HTML><![CDATA[<a href="]]></HTML>                      <SetVar Name="RootFolder">                        <HTML>/</HTML>                        <LookupColumn Name="FileRef"/>                      </SetVar>                      <FilterLink Default="" Paged="FALSE"/>                      <HTML><![CDATA[" target="_self">]]></HTML>                      <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                      <HTML><![CDATA[</a>]]></HTML>                    </Default>                  </Switch>                </Else>              </IfEqual>              <HTML>                <![CDATA[</td>                  <td class='ms-menuimagecell' style='visibility:hidden' width="10" id="menuTd]]>              </HTML>              <Column Name="ID"/>              <HTML><![CDATA["><a id="menuHref]]></HTML>              <Column Name="ID"/>              <HTML><![CDATA[" href="javascript:ClickRow(]]></HTML>              <Column Name="ID"/>              <HTML><![CDATA[)" onclick="JavaScript:ClickRow(]]></HTML>              <Column Name="ID"/>              <HTML><![CDATA[); JavaScript:return false;"><img border="0" width="13" src="/_layouts/15/images/menudark.gif?rev=23" alt="]]></HTML>              <HTML>Edit Menu</HTML>              <HTML>                <![CDATA["></a></td>              </tr></table>              ]]>              </HTML>            </DisplayPattern>          </Field>          <Field ID="{de1baa4b-2117-473b-aa0c-4d824034142d}" ReadOnly="TRUE" Type="Computed" Group="_Hidden" Name="RequiredField" DisplayName="Required Field" AuthoringInfo="(must be selected for picture library details view)" Sortable="FALSE" Filterable="FALSE" SourceID="http://bit.ly/2f1P5Ga" StaticName="RequiredField" Customization="">            <FieldRefs>              <FieldRef ID="{94F89715-E097-4e8b-BA79-EA02AA8B7ADB}" Name="FileRef"/>              <FieldRef ID="{687C7F94-686A-42d3-9B67-2782EAC4B4F8}" Name="FileLeafRef"/>              <FieldRef ID="{FA564E0F-0C70-4ab9-B863-0177E6DDD247}" Name="Title"/>              <FieldRef ID="{9DA97A8A-1DA5-4a77-98D3-4BC10456E700}" Name="Description"/>              <FieldRef ID="{922551B8-C7E0-46a6-B7E3-3CF02917F68A}" Name="ImageSize"/>              <FieldRef ID="{081C6E4C-5C14-4f20-B23E-1A71CEB6A67C}" Name="DocIcon"/>            </FieldRefs>            <DisplayPattern/>          </Field>          <Field ID="{ac7bb138-02dc-40eb-b07a-84c15575b6e9}" ReadOnly="TRUE" Type="Computed" Group="_Hidden" Name="Thumbnail" ShowInNewForm="FALSE" ShowInFileDlg="FALSE" ShowInEditForm="FALSE" DisplayName="Thumbnail" Sealed="TRUE" Sortable="FALSE" SourceID="http://bit.ly/2f1P5Ga" StaticName="Thumbnail" Customization="">            <FieldRefs>              <FieldRef ID="{7E68A0F9-AF76-404c-9613-6F82BC6DC28C}" Name="ImageWidth"/>              <FieldRef ID="{1944C034-D61B-42af-AA84-647F2E74CA70}" Name="ImageHeight"/>              <FieldRef ID="{30BB605F-5BAE-48fe-B4E3-1F81D9772AF9}" Name="FSObjType"/>              <FieldRef ID="{B9E6F3AE-5632-4b13-B636-9D1A2BD67120}" Name="EncodedAbsThumbnailUrl"/>              <FieldRef ID="{1F43CD21-53C5-44c5-8675-B8BB86083244}" Name="ThumbnailExists"/>              <FieldRef ID="{F39D44AF-D3F3-4ae6-B43F-AC7330B5E9BD}" Name="AlternateThumbnailUrl"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>0</Expr2>                <Then>                  <IfEqual>                    <Expr1>                      <LookupColumn Name="ImageWidth"/>                    </Expr1>                    <Expr2/>                    <Then/>                    <Else>                      <IfEqual>                        <Expr1>                          <LookupColumn Name="ImageWidth"/>                        </Expr1>                        <Expr2>0</Expr2>                        <Then/>                        <Else>                          <HTML><![CDATA[<a href="]]></HTML>                          <URL Cmd="Display"/>                          <HTML><![CDATA["><img border="0" ALT="Thumbnail" src="]]></HTML>                          <Field Name="EncodedAbsThumbnailUrl"/>                          <HTML>                            <![CDATA[">                                      </a>                                      ]]>                          </HTML>                        </Else>                      </IfEqual>                    </Else>                  </IfEqual>                </Then>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{bd716b26-546d-43f2-b229-62699581fa9f}" ReadOnly="TRUE" Type="Computed" Group="_Hidden" Name="Preview" ShowInNewForm="FALSE" ShowInFileDlg="FALSE" ShowInEditForm="FALSE" DisplayName="Web Preview" Sealed="TRUE" Sortable="FALSE" SourceID="http://bit.ly/2f1P5Ga" StaticName="Preview" Customization="">            <FieldRefs>              <FieldRef ID="{7E68A0F9-AF76-404c-9613-6F82BC6DC28C}" Name="ImageWidth"/>              <FieldRef ID="{1944C034-D61B-42af-AA84-647F2E74CA70}" Name="ImageHeight"/>              <FieldRef ID="{30BB605F-5BAE-48fe-B4E3-1F81D9772AF9}" Name="FSObjType"/>              <FieldRef ID="{A1CA0063-779F-49f9-999C-A4A2E3645B07}" Name="EncodedAbsWebImgUrl"/>              <FieldRef ID="{1F43CD21-53C5-44c5-8675-B8BB86083244}" Name="PreviewExists"/>              <FieldRef ID="{F39D44AF-D3F3-4ae6-B43F-AC7330B5E9BD}" Name="AlternateThumbnailUrl"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>0</Expr2>                <Then>                  <IfEqual>                    <Expr1>                      <LookupColumn Name="ImageWidth"/>                    </Expr1>                    <Expr2/>                    <Then/>                    <Else>                      <IfEqual>                        <Expr1>                          <LookupColumn Name="ImageWidth"/>                        </Expr1>                        <Expr2>0</Expr2>                        <Then/>                        <Else>                          <HTML><![CDATA[<a href="]]></HTML>                          <URL Cmd="Display"/>                          <HTML><![CDATA["><img  ALT="Web Preview" src="]]></HTML>                          <Field Name="EncodedAbsWebImgUrl"/>                          <HTML>                            <![CDATA[">                                      </a>                                      ]]>                          </HTML>                        </Else>                      </IfEqual>                    </Else>                  </IfEqual>                </Then>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{086f2b30-460c-4251-b75a-da88a5b205c1}" Type="Text" Group="_Hidden" Name="ShowCombineView" SourceID="http://bit.ly/2evXbnJ" StaticName="ShowCombineView" DisplayName="Show Combine View" Filterable="TRUE" Sortable="TRUE" Hidden="TRUE" FromBaseType="TRUE" Customization="" ColName="nvarchar12" RowOrdinal="0"/>          <Field ID="{11851948-b05e-41be-9d9f-bc3bf55d1de3}" Name="ShowRepairView" SourceID="http://bit.ly/2evXbnJ" StaticName="ShowRepairView" Type="Text" Group="_Hidden" DisplayName="Show Repair View" Filterable="TRUE" Sortable="TRUE" Hidden="TRUE" FromBaseType="TRUE" Customization="" ColName="nvarchar13" RowOrdinal="0"/>          <Field ID="{1d22ea11-1e32-424e-89ab-9fedbadb6ce1}" ColName="tp_ID" RowOrdinal="0" ReadOnly="TRUE" Type="Counter" Name="ID" DisplayName="ID" SourceID="http://bit.ly/2evXbnJ" StaticName="ID" FromBaseType="TRUE"/>          <Field ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Type="Computed" DisplayName="Content Type" Name="ContentType" DisplaceOnUpgrade="TRUE" RenderXMLUsingPattern="TRUE" Sortable="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="ContentType" Group="_Hidden" PITarget="MicrosoftWindowsSharePointServices" PIAttribute="ContentTypeID" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="ContentTypeId"/>            </FieldRefs>            <DisplayPattern>              <MapToContentType>                <Column Name="ContentTypeId"/>              </MapToContentType>            </DisplayPattern>          </Field>          <Field ID="{8c06beca-0777-48f7-91c7-6da68bc07b69}" ColName="tp_Created" RowOrdinal="0" ReadOnly="TRUE" Type="DateTime" Name="Created" DisplayName="Created" StorageTZ="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Created" FromBaseType="TRUE"/>          <Field ID="{1df5e554-ec7e-46a6-901d-d85a3881cb18}" ColName="tp_Author" RowOrdinal="0" ReadOnly="TRUE" Type="User" List="UserInfo" Name="Author" DisplayName="Created By" SourceID="http://bit.ly/2evXbnJ" StaticName="Author" FromBaseType="TRUE"/>          <Field ID="{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}" ColName="tp_Modified" RowOrdinal="0" ReadOnly="TRUE" Type="DateTime" Name="Modified" DisplayName="Modified" StorageTZ="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Modified" FromBaseType="TRUE"/>          <Field ID="{d31655d1-1d5b-4511-95a1-7a09e9b75bf2}" ColName="tp_Editor" RowOrdinal="0" ReadOnly="TRUE" Type="User" List="UserInfo" Name="Editor" DisplayName="Modified By" SourceID="http://bit.ly/2evXbnJ" StaticName="Editor" FromBaseType="TRUE"/>          <Field ID="{26d0756c-986a-48a7-af35-bf18ab85ff4a}" ColName="tp_HasCopyDestinations" RowOrdinal="0" Sealed="TRUE" Hidden="TRUE" ReadOnly="TRUE" Type="Boolean" Name="_HasCopyDestinations" DisplaceOnUpgrade="TRUE" DisplayName="Has Copy Destinations" SourceID="http://bit.ly/2evXbnJ" StaticName="_HasCopyDestinations" FromBaseType="TRUE"/>          <Field ID="{6b4e226d-3d88-4a36-808d-a129bf52bccf}" ColName="tp_CopySource" RowOrdinal="0" Sealed="TRUE" Hidden="FALSE" ReadOnly="TRUE" Type="Text" Name="_CopySource" DisplaceOnUpgrade="TRUE" DisplayName="Copy Source" SourceID="http://bit.ly/2evXbnJ" StaticName="_CopySource" FromBaseType="TRUE"/>          <Field ID="{fdc3b2ed-5bf2-4835-a4bc-b885f3396a61}" ColName="tp_ModerationStatus" RowOrdinal="0" ReadOnly="TRUE" Type="ModStat" Name="_ModerationStatus" DisplayName="Approval Status" Hidden="TRUE" CanToggleHidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_ModerationStatus" FromBaseType="TRUE">            <CHOICES>              <CHOICE>0;#Approved</CHOICE>              <CHOICE>1;#Rejected</CHOICE>              <CHOICE>2;#Pending</CHOICE>              <CHOICE>3;#Draft</CHOICE>              <CHOICE>4;#Scheduled</CHOICE>            </CHOICES>            <Default>0</Default>          </Field>          <Field ID="{94f89715-e097-4e8b-ba79-ea02aa8b7adb}" Name="FileRef" ReadOnly="TRUE" Hidden="TRUE" Type="Lookup" DisplayName="URL Path" List="Docs" FieldRef="ID" ShowField="FullUrl" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FileRef" FromBaseType="TRUE"/>          <Field ID="{56605df6-8fa1-47e4-a04c-5b384d59609f}" Name="FileDirRef" ReadOnly="TRUE" Hidden="TRUE" Type="Lookup" DisplayName="Path" List="Docs" FieldRef="ID" ShowField="DirName" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FileDirRef" FromBaseType="TRUE"/>          <Field ID="{173f76c8-aebd-446a-9bc9-769a2bd2c18f}" Name="Last_x0020_Modified" ReadOnly="TRUE" Hidden="TRUE" DisplayName="Modified" Type="Lookup" List="Docs" FieldRef="ID" ShowField="TimeLastModified" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="Last_x0020_Modified" FromBaseType="TRUE"/>          <Field ID="{998b5cff-4a35-47a7-92f3-3914aa6aa4a2}" Name="Created_x0020_Date" ReadOnly="TRUE" Hidden="TRUE" DisplayName="Created" Type="Lookup" List="Docs" FieldRef="ID" ShowField="TimeCreated" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="Created_x0020_Date" FromBaseType="TRUE"/>          <Field ID="{8fca95c0-9b7d-456f-8dae-b41ee2728b85}" Name="File_x0020_Size" Hidden="TRUE" ReadOnly="TRUE" Type="Lookup" DisplayName="File Size" List="Docs" FieldRef="ID" ShowField="SizeInKB" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="File_x0020_Size" FromBaseType="TRUE"/>          <Field ID="{30bb605f-5bae-48fe-b4e3-1f81d9772af9}" Name="FSObjType" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Item Type" List="Docs" FieldRef="ID" ShowField="FSType" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FSObjType" FromBaseType="TRUE"/>          <Field ID="{423874f8-c300-4bfb-b7a1-42e2159e3b19}" Name="SortBehavior" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Sort Type" List="Docs" FieldRef="ID" ShowField="SortBehavior" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="SortBehavior" FromBaseType="TRUE"/>          <Field ID="{ba3c27ee-4791-4867-8821-ff99000bac98}" Name="PermMask" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" RenderXMLUsingPattern="TRUE" ShowInFileDlg="FALSE" Type="Computed" DisplayName="Effective Permissions Mask" SourceID="http://bit.ly/2evXbnJ" StaticName="PermMask" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="ID"/>            </FieldRefs>            <DisplayPattern>              <CurrentRights/>            </DisplayPattern>          </Field>          <Field ID="{a7b731a3-1df1-4d74-a5c6-e2efba617ae2}" Name="CheckedOutUserId" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="ID of the User who has the item Checked Out" List="Docs" FieldRef="ID" ShowField="CheckoutUserId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="CheckedOutUserId" FromBaseType="TRUE"/>          <Field ID="{cfaabd0f-bdbd-4bc2-b375-1e779e2cad08}" Name="IsCheckedoutToLocal" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Is Checked out to local" List="Docs" FieldRef="ID" ShowField="IsCheckoutToLocal" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="IsCheckedoutToLocal" FromBaseType="TRUE"/>          <Field ID="{3881510a-4e4a-4ee8-b102-8ee8e2d0dd4b}" ColName="tp_CheckoutUserId" RowOrdinal="0" ReadOnly="TRUE" Type="User" List="UserInfo" Name="CheckoutUser" DisplaceOnUpgrade="TRUE" DisplayName="Checked Out To" SourceID="http://bit.ly/2evXbnJ" StaticName="CheckoutUser" FromBaseType="TRUE"/>          <Field ID="{4b7403de-8d94-43e8-9f0f-137a3e298126}" Name="UniqueId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Unique Id" List="Docs" FieldRef="ID" ShowField="UniqueId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="UniqueId" FromBaseType="TRUE"/>          <Field ID="{6d2c4fde-3605-428e-a236-ce5f3dc2b4d4}" Name="SyncClientId" DisplaceOnUpgrade="TRUE" Hidden="TRUE" ReadOnly="TRUE" DisplayName="Client Id" ShowInFileDlg="FALSE" Type="Lookup" List="Docs" FieldRef="ID" ShowField="SyncClientId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="SyncClientId" FromBaseType="TRUE"/>          <Field ID="{c5c4b81c-f1d9-4b43-a6a2-090df32ebb68}" Name="ProgId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="ProgId" List="Docs" FieldRef="ID" ShowField="ProgId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ProgId" FromBaseType="TRUE"/>          <Field ID="{dddd2420-b270-4735-93b5-92b713d0944d}" Name="ScopeId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="ScopeId" List="Docs" FieldRef="ID" ShowField="ScopeId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ScopeId" FromBaseType="TRUE"/>          <Field ID="{4a389cb9-54dd-4287-a71a-90ff362028bc}" Name="VirusStatus" Hidden="TRUE" ReadOnly="TRUE" Type="Lookup" DisplayName="Virus Status" List="Docs" FieldRef="ID" ShowField="Size" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="VirusStatus" FromBaseType="TRUE"/>          <Field ID="{9d4adc35-7cc8-498c-8424-ee5fd541e43a}" Name="CheckedOutTitle" Hidden="TRUE" ReadOnly="TRUE" Type="Lookup" DisplayName="Checked Out To" List="Docs" FieldRef="ID" ShowField="CheckedOutTitle" Format="TRUE" JoinColName="DoclibRowId" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="CheckedOutTitle" FromBaseType="TRUE"/>          <Field ID="{58014f77-5463-437b-ab67-eec79532da67}" Name="_CheckinComment" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Type="Lookup" DisplayName="Check In Comment" List="Docs" FieldRef="ID" ShowField="CheckinComment" Filterable="FALSE" Format="TRUE" JoinColName="DoclibRowId" JoinType="INNER" Sortable="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_CheckinComment" FromBaseType="TRUE"/>          <Field ID="{e2a15dfd-6ab8-4aec-91ab-02f6b64045b0}" ReadOnly="TRUE" Hidden="TRUE" Type="Computed" Name="LinkCheckedOutTitle" DisplayName="Checked Out To" Filterable="TRUE" AuthoringInfo="(link to username to user details page)" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkCheckedOutTitle" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="CheckedOutTitle"/>              <FieldRef Name="CheckedOutUserId"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <Field Name="CheckedOutUserId"/>                </Expr1>                <Expr2/>                <Then/>                <Else>                  <HTML><![CDATA[<a href="]]></HTML>                  <HttpVDir CurrentWeb="TRUE"/>                  <HTML><![CDATA[/_layouts/15/userdisp.aspx?id=]]></HTML>                  <Field Name="CheckedOutUserId"/>                  <HTML><![CDATA[">]]></HTML>                  <Field HTMLEncode="TRUE" Name="CheckedOutTitle"/>                  <HTML><![CDATA[</a>]]></HTML>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{3c6303be-e21f-4366-80d7-d6d0a3b22c7a}" Hidden="TRUE" ReadOnly="TRUE" Type="Computed" Name="_EditMenuTableStart" DisplaceOnUpgrade="TRUE" DisplayName="Edit Menu Table Start" ClassInfo="Menu" SourceID="http://bit.ly/2evXbnJ" StaticName="_EditMenuTableStart" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="FileDirRef"/>              <FieldRef Name="FSObjType"/>              <FieldRef Name="ID"/>              <FieldRef Name="ServerUrl"/>              <FieldRef Name="HTML_x0020_File_x0020_Type"/>              <FieldRef Name="File_x0020_Type"/>              <FieldRef Name="PermMask"/>              <FieldRef Name="IsCheckedoutToLocal"/>              <FieldRef Name="CheckoutUser"/>              <FieldRef Name="_SourceUrl"/>              <FieldRef Name="_HasCopyDestinations"/>              <FieldRef Name="_CopySource"/>              <FieldRef Name="ContentType"/>              <FieldRef Name="ContentTypeId"/>              <FieldRef Name="_ModerationStatus"/>              <FieldRef Name="_UIVersion"/>            </FieldRefs>            <DisplayPattern>              <HTML><![CDATA[
                            " id="                            " Url="                            " DRef="                            " Perm="                            " type="                            " Ext="                            " Icon="                                              |                                            " OType="                            " COUId="                            " SRed="                                              |                                            " DefaultIO="                            " COut="                            " HCD="                            " CSrc="                            " MS="                                                                                    " UIS="                                          " SUrl="                            ]]>                                                                                                              " id="                                                                                                              ]]></HTML>              <HTML><![CDATA[
]]>               ]]>              ]]>               ]]>              ]]></HTML>            </DisplayPattern>          </Field>          <Field ID="{9d30f126-ba48-446b-b8f9-83745f322ebe}" ReadOnly="TRUE" Type="Computed" Name="LinkFilenameNoMenu" DisplayName="Name" DisplayNameSrcField="FileLeafRef" Filterable="FALSE" AuthoringInfo="(linked to document)" ListItemMenuAllowed="Prohibited" LinkToItemAllowed="Prohibited" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkFilenameNoMenu" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="FSObjType"/>              <FieldRef Name="Created_x0020_Date"/>              <FieldRef Name="FileRef"/>              <FieldRef Name="File_x0020_Type"/>              <FieldRef Name="HTML_x0020_File_x0020_Type"/>              <FieldRef Name="ContentTypeId"/>              <FieldRef Name="PermMask"/>              <FieldRef Name="CheckoutUser"/>              <FieldRef Name="IsCheckedoutToLocal"/>              <FieldRef Name="ServerUrl"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>1</Expr2>                <Then>                  <FieldSwitch>                    <Expr>                      <GetVar Name="RecursiveView"/>                    </Expr>                    <Case Value="1">                      <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                    </Case>                    <Default>                      <SetVar Name="UnencodedFilterLink">                        <SetVar Name="RootFolder">                          <HTML>/</HTML>                          <LookupColumn Name="FileRef"/>                        </SetVar>                        <SetVar Name="SkipHost">1</SetVar>                        <SetVar Name="FolderCTID">                          <FieldSwitch>                            <Expr>                              <ListProperty Select="EnableContentTypes"/>                            </Expr>                            <Case Value="1">                              <Column Name="ContentTypeId"/>                            </Case>                          </FieldSwitch>                        </SetVar>                        <FilterLink Default="" Paged="FALSE"/>                      </SetVar>                      <HTML><![CDATA[<a onfocus="OnLink(this)" href="]]></HTML>                      <GetVar Name="UnencodedFilterLink" HTMLEncode="TRUE"/>                      <HTML><![CDATA[" onmousedown="javascript:VerifyFolderHref(this,event, ']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <GetVar Name="UnencodedFilterLink"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ServerProperty Select="HtmlTrProgId">                          <Column Name="File_x0020_Type"/>                        </ServerProperty>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ListProperty Select="DefaultItemOpen"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <MapToControl>                          <Column Name="HTML_x0020_File_x0020_Type"/>                          <HTML>|</HTML>                          <Column Name="File_x0020_Type"/>                        </MapToControl>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <Column Name="HTML_x0020_File_x0020_Type"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ServerProperty Select="GetServerFileRedirect">                          <Field Name="ServerUrl"/>                          <HTML>|</HTML>                          <Column Name="HTML_x0020_File_x0020_Type"/>                        </ServerProperty>                      </ScriptQuote>                      <HTML><![CDATA[')"]]></HTML>                      <HTML><![CDATA[" onclick="return HandleFolder(this,event, ']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <GetVar Name="UnencodedFilterLink"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ServerProperty Select="HtmlTransform"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ServerProperty Select="HtmlTrAcceptType">                          <Column Name="File_x0020_Type"/>                        </ServerProperty>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ServerProperty Select="HtmlTrHandleUrl">                          <Column Name="File_x0020_Type"/>                        </ServerProperty>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ServerProperty Select="HtmlTrProgId">                          <Column Name="File_x0020_Type"/>                        </ServerProperty>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ListProperty Select="DefaultItemOpen"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <MapToControl>                          <Column Name="HTML_x0020_File_x0020_Type"/>                          <HTML>|</HTML>                          <Column Name="File_x0020_Type"/>                        </MapToControl>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <Column Name="HTML_x0020_File_x0020_Type"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ServerProperty Select="GetServerFileRedirect">                          <Field Name="ServerUrl"/>                          <HTML>|</HTML>                          <Column Name="HTML_x0020_File_x0020_Type"/>                        </ServerProperty>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <Column Name="CheckoutUser"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <UserID AllowAnonymous="TRUE"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ListProperty Select="ForceCheckout"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <Field Name="IsCheckedoutToLocal"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <Field Name="PermMask"/>                      </ScriptQuote>                      <HTML><![CDATA[');">]]></HTML>                      <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                      <IfEqual>                        <Expr1>                          <GetVar Name="ShowAccessibleIcon"/>                        </Expr1>                        <Expr2>1</Expr2>                        <Then>                          <HTML><![CDATA[<img src="/_layouts/15/images/blank.gif?rev=23" class="ms-hidden" border="0" width="1" height="1" alt="Use SHIFT+ENTER to open the menu (new window)."/>]]></HTML>                        </Then>                      </IfEqual>                      <HTML><![CDATA[</a>]]></HTML>                    </Default>                  </FieldSwitch>                </Then>                <Else>                  <HTML><![CDATA[<a onfocus="OnLink(this)" href="]]></HTML>                  <Field Name="ServerUrl" URLEncodeAsURL="TRUE"/>                  <HTML><![CDATA[" onclick="return DispEx(this,event,']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTransform"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTrAcceptType">                      <Column Name="File_x0020_Type"/>                    </ServerProperty>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTrHandleUrl">                      <Column Name="File_x0020_Type"/>                    </ServerProperty>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTrProgId">                      <Column Name="File_x0020_Type"/>                    </ServerProperty>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ListProperty Select="DefaultItemOpen"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <MapToControl>                      <Column Name="HTML_x0020_File_x0020_Type"/>                      <HTML>|</HTML>                      <Column Name="File_x0020_Type"/>                    </MapToControl>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="HTML_x0020_File_x0020_Type"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="GetServerFileRedirect">                      <Field Name="ServerUrl"/>                      <HTML>|</HTML>                      <Column Name="HTML_x0020_File_x0020_Type"/>                    </ServerProperty>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="CheckoutUser"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <UserID AllowAnonymous="TRUE"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ListProperty Select="ForceCheckout"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Field Name="IsCheckedoutToLocal"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Field Name="PermMask"/>                  </ScriptQuote>                  <HTML><![CDATA[')">]]></HTML>                  <UrlBaseName HTMLEncode="TRUE">                    <LookupColumn Name="FileLeafRef"/>                  </UrlBaseName>                  <IfEqual>                    <Expr1>                      <GetVar Name="ShowAccessibleIcon"/>                    </Expr1>                    <Expr2>1</Expr2>                    <Then>                      <HTML><![CDATA[<img src="/_layouts/15/images/blank.gif?rev=23" class="ms-hidden" border="0" width="1" height="1" alt="Use SHIFT+ENTER to open the menu (new window)."/>]]></HTML>                    </Then>                  </IfEqual>                  <HTML><![CDATA[</a>]]></HTML>                  <IfNew Name="Created_x0020_Date">                    <HTML><![CDATA[<img src="/_layouts/15/1033/images/new.gif" alt="]]></HTML>                    <HTML>New</HTML>                    <HTML><![CDATA[" class="ms-newgif" />]]></HTML>                  </IfNew>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{5cc6dc79-3710-4374-b433-61cb4a686c12}" ReadOnly="TRUE" Type="Computed" Name="LinkFilename" DisplayName="Name" DisplayNameSrcField="FileLeafRef" Filterable="FALSE" ClassInfo="Menu" AuthoringInfo="(linked to document with edit menu)" ListItemMenuAllowed="Required" LinkToItemAllowed="Prohibited" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkFilename" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="LinkFilenameNoMenu"/>              <FieldRef Name="_EditMenuTableStart2"/>              <FieldRef Name="_EditMenuTableEnd"/>            </FieldRefs>            <DisplayPattern>              <FieldSwitch>                <Expr>                  <GetVar Name="FreeForm"/>                </Expr>                <Case Value="TRUE">                  <Field Name="LinkFilenameNoMenu"/>                </Case>                <Default>                  <HTML><![CDATA[
                                    ]]>                                    ]]></HTML>                  <HTML><![CDATA[
]]>                   ]]>                  ]]>                   ]]>                  ]]></HTML>                </Default>              </FieldSwitch>            </DisplayPattern>          </Field>          <Field ID="{224ba411-da77-4050-b0eb-62d422f13d3e}" Hidden="TRUE" ReadOnly="TRUE" Type="Computed" Name="LinkFilename2" DisplayName="Name" DisplayNameSrcField="FileLeafRef" Filterable="FALSE" ClassInfo="Menu" AuthoringInfo="(linked to document with edit menu) (old)" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkFilename2" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="LinkFilenameNoMenu"/>              <FieldRef Name="_EditMenuTableStart"/>              <FieldRef Name="_EditMenuTableEnd"/>            </FieldRefs>            <DisplayPattern>              <FieldSwitch>                <Expr>                  <GetVar Name="FreeForm"/>                </Expr>                <Case Value="TRUE">                  <Field Name="LinkFilenameNoMenu"/>                </Case>                <Default>                  <Field Name="_EditMenuTableStart"/>                  <SetVar Name="ShowAccessibleIcon" Value="1"/>                  <Field Name="LinkFilenameNoMenu"/>                  <SetVar Name="ShowAccessibleIcon" Value="0"/>                  <Field Name="_EditMenuTableEnd"/>                </Default>              </FieldSwitch>            </DisplayPattern>          </Field>          <Field ID="{081c6e4c-5c14-4f20-b23e-1a71ceb6a67c}" Type="Computed" ReadOnly="TRUE" Name="DocIcon" DisplayName="Type" TextOnly="TRUE" ClassInfo="Icon" AuthoringInfo="(icon linked to document)" SourceID="http://bit.ly/2evXbnJ" StaticName="DocIcon" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="File_x0020_Type"/>              <FieldRef Name="FSObjType"/>              <FieldRef Name="FileRef"/>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="HTML_x0020_File_x0020_Type"/>              <FieldRef Name="PermMask"/>              <FieldRef Name="CheckoutUser" ShowField="Title"/>              <FieldRef Name="IsCheckedoutToLocal"/>              <FieldRef Name="ServerUrl"/>              <FieldRef Name="IconOverlay"/>            </FieldRefs>            <DisplayPattern>              <SetVar Name="DocIconImg">                <SetVar Name="DocIconAltText">                  <IfEqual>                    <Expr1>                      <LookupColumn Name="FSObjType"/>                    </Expr1>                    <Expr2>1</Expr2>                    <Then>                      <IfSubString>                        <Expr1>0x0120D5</Expr1>                        <Expr2>                          <Column Name="ContentTypeId"/>                        </Expr2>                        <Then>                          <HTML>Document Collection: </HTML>                          <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                        </Then>                        <Else>                          <HTML>Folder: </HTML>                          <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                        </Else>                      </IfSubString>                    </Then>                    <Else>                      <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                    </Else>                  </IfEqual>                </SetVar>                <SetVar Name="DocIconFileName">                  <IfEqual>                    <Expr1>                      <Column Name="IconOverlay"/>                    </Expr1>                    <Expr2/>                    <Then>                      <IfEqual>                        <Expr1>                          <LookupColumn Name="FSObjType"/>                        </Expr1>                        <Expr2>1</Expr2>                        <Then>                          <IfEqual>                            <Expr1>                              <Column Name="HTML_x0020_File_x0020_Type"/>                              <HTML>|</HTML>                              <Column Name="File_x0020_Type"/>                            </Expr1>                            <Expr2>                              <HTML>|</HTML>                            </Expr2>                            <Then>                              <HTML>folder.gif</HTML>                            </Then>                            <Else>                              <SetVar Name="FolderIconFromMap">                                <MapToIcon>                                  <Column Name="HTML_x0020_File_x0020_Type"/>                                  <HTML>|</HTML>                                  <Column Name="File_x0020_Type"/>                                </MapToIcon>                              </SetVar>                              <IfEqual>                                <Expr1>                                  <GetVar Name="FolderIconFromMap"/>                                </Expr1>                                <Expr2>                                  <MapToIcon/>                                </Expr2>                                <Then>                                  <HTML>folder.gif</HTML>                                </Then>                                <Else>                                  <GetVar Name="FolderIconFromMap"/>                                </Else>                              </IfEqual>                            </Else>                          </IfEqual>                        </Then>                        <Else>                          <MapToIcon>                            <Column Name="HTML_x0020_File_x0020_Type"/>                            <HTML>|</HTML>                            <Column Name="File_x0020_Type"/>                          </MapToIcon>                        </Else>                      </IfEqual>                    </Then>                    <Else>                      <MapToIcon>                        <Column Name="IconOverlay"/>                      </MapToIcon>                    </Else>                  </IfEqual>                </SetVar>                <HTML><![CDATA[<img border="0" alt="]]></HTML>                <GetVar Name="DocIconAltText"/>                <HTML><![CDATA[" title="]]></HTML>                <GetVar Name="DocIconAltText"/>                <HTML><![CDATA[" src="/_layouts/15/images/]]></HTML>                <GetVar Name="DocIconFileName"/>                <HTML><![CDATA[" />]]></HTML>              </SetVar>              <SetVar Name="DocIconOverlayImg">                <IfEqual>                  <Expr1>                    <Column Name="IconOverlay"/>                  </Expr1>                  <Expr2/>                  <Then>                    <IfEqual>                      <Expr1>                        <Column Name="CheckoutUser"/>                      </Expr1>                      <Expr2/>                      <Else>                        <SetVar Name="DocIconOverlayAltText">                          <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                          <HTML><![CDATA[10;Checked Out To: ]]></HTML>                          <LookupColumn Name="CheckoutUser" ShowField="Title" HTMLEncode="TRUE"/>                        </SetVar>                        <HTML><![CDATA[<img class="ms-vb-icon-overlay" alt="]]></HTML>                        <GetVar Name="DocIconOverlayAltText"/>                        <HTML><![CDATA[" title="]]></HTML>                        <GetVar Name="DocIconOverlayAltText"/>                        <HTML><![CDATA[" src="/_layouts/15/images/checkoutoverlay.gif" />]]></HTML>                      </Else>                    </IfEqual>                  </Then>                  <Else>                    <HTML><![CDATA[<img class="ms-vb-icon-overlay" alt="*" src="/_layouts/15/images/]]></HTML>                    <MapToOverlay>                      <Column Name="IconOverlay"/>                    </MapToOverlay>                    <HTML><![CDATA[" />]]></HTML>                  </Else>                </IfEqual>              </SetVar>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>1</Expr2>                <Then>                  <FieldSwitch>                    <Expr>                      <GetVar Name="RecursiveView"/>                    </Expr>                    <Case Value="1">                      <GetVar Name="DocIconImg"/>                      <GetVar Name="DocIconOverlayImg"/>                    </Case>                    <Default>                      <SetVar Name="UnencodedFilterLink">                        <SetVar Name="RootFolder">                          <HTML>/</HTML>                          <LookupColumn Name="FileRef"/>                        </SetVar>                        <SetVar Name="SkipHost">1</SetVar>                        <SetVar Name="FolderCTID">                          <FieldSwitch>                            <Expr>                              <ListProperty Select="EnableContentTypes"/>                            </Expr>                            <Case Value="1">                              <Column Name="ContentTypeId"/>                            </Case>                          </FieldSwitch>                        </SetVar>                        <FilterLink Default="" Paged="FALSE"/>                      </SetVar>                      <FieldSwitch>                        <Expr>                          <GetVar Name="FileDialog"/>                        </Expr>                        <Case Value="1">                          <GetVar Name="DocIconImg"/>                          <GetVar Name="DocIconOverlayImg"/>                        </Case>                        <Default>                          <HTML><![CDATA[<a href="]]></HTML>                          <GetVar Name="UnencodedFilterLink" HTMLEncode="TRUE"/>                          <HTML><![CDATA[" onmousedown="javascript:VerifyFolderHref(this,event, ']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <GetVar Name="UnencodedFilterLink"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ServerProperty Select="HtmlTrProgId">                              <Column Name="File_x0020_Type"/>                            </ServerProperty>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ListProperty Select="DefaultItemOpen"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <MapToControl>                              <Column Name="HTML_x0020_File_x0020_Type"/>                              <HTML>|</HTML>                              <Column Name="File_x0020_Type"/>                            </MapToControl>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <Column Name="HTML_x0020_File_x0020_Type"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ServerProperty Select="GetServerFileRedirect">                              <Field Name="ServerUrl"/>                              <HTML>|</HTML>                              <Column Name="HTML_x0020_File_x0020_Type"/>                            </ServerProperty>                          </ScriptQuote>                          <HTML><![CDATA[')"]]></HTML>                          <HTML><![CDATA[" onclick="return HandleFolder(this,event, ']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <GetVar Name="UnencodedFilterLink"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ServerProperty Select="HtmlTransform"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ServerProperty Select="HtmlTrAcceptType">                              <Column Name="File_x0020_Type"/>                            </ServerProperty>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ServerProperty Select="HtmlTrHandleUrl">                              <Column Name="File_x0020_Type"/>                            </ServerProperty>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ServerProperty Select="HtmlTrProgId">                              <Column Name="File_x0020_Type"/>                            </ServerProperty>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ListProperty Select="DefaultItemOpen"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <MapToControl>                              <Column Name="HTML_x0020_File_x0020_Type"/>                              <HTML>|</HTML>                              <Column Name="File_x0020_Type"/>                            </MapToControl>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <Column Name="HTML_x0020_File_x0020_Type"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ServerProperty Select="GetServerFileRedirect">                              <Field Name="ServerUrl"/>                              <HTML>|</HTML>                              <Column Name="HTML_x0020_File_x0020_Type"/>                            </ServerProperty>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <Column Name="CheckoutUser"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <UserID AllowAnonymous="TRUE"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <ListProperty Select="ForceCheckout"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <Field Name="IsCheckedoutToLocal"/>                          </ScriptQuote>                          <HTML><![CDATA[',']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <Field Name="PermMask"/>                          </ScriptQuote>                          <HTML><![CDATA[');">]]></HTML>                          <GetVar Name="DocIconImg"/>                          <GetVar Name="DocIconOverlayImg"/>                          <HTML><![CDATA[</a>]]></HTML>                        </Default>                      </FieldSwitch>                    </Default>                  </FieldSwitch>                </Then>                <Else>                  <HTML><![CDATA[<a href="]]></HTML>                  <Field Name="ServerUrl" URLEncodeAsURL="TRUE"/>                  <HTML><![CDATA[" onclick="return DispEx(this,event,']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTransform"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTrAcceptType">                      <Column Name="File_x0020_Type"/>                    </ServerProperty>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTrHandleUrl">                      <Column Name="File_x0020_Type"/>                    </ServerProperty>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTrProgId">                      <Column Name="File_x0020_Type"/>                    </ServerProperty>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ListProperty Select="DefaultItemOpen"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <MapToControl>                      <Column Name="HTML_x0020_File_x0020_Type"/>                      <HTML>|</HTML>                      <Column Name="File_x0020_Type"/>                    </MapToControl>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="HTML_x0020_File_x0020_Type"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="GetServerFileRedirect">                      <Field Name="ServerUrl"/>                      <HTML>|</HTML>                      <Column Name="HTML_x0020_File_x0020_Type"/>                    </ServerProperty>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="CheckoutUser"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <UserID AllowAnonymous="TRUE"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ListProperty Select="ForceCheckout"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Field Name="IsCheckedoutToLocal"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Field Name="PermMask"/>                  </ScriptQuote>                  <HTML><![CDATA[')">]]></HTML>                  <GetVar Name="DocIconImg"/>                  <GetVar Name="DocIconOverlayImg"/>                  <HTML><![CDATA[</a>]]></HTML>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{105f76ce-724a-4bba-aece-f81f2fce58f5}" ReadOnly="TRUE" Hidden="TRUE" Type="Computed" Name="ServerUrl" DisplayName="Server Relative URL" Filterable="FALSE" RenderXMLUsingPattern="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="ServerUrl" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileRef"/>            </FieldRefs>            <DisplayPattern>              <HTML>/</HTML>              <LookupColumn Name="FileRef"/>            </DisplayPattern>          </Field>          <Field ID="{7177cfc7-f399-4d4d-905d-37dd51bc90bf}" ReadOnly="TRUE" Hidden="TRUE" Type="Computed" Name="EncodedAbsUrl" DisplayName="Encoded Absolute URL" Filterable="FALSE" RenderXMLUsingPattern="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="EncodedAbsUrl" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileRef"/>            </FieldRefs>            <DisplayPattern>              <HttpHost URLEncodeAsURL="TRUE"/>              <HTML>/</HTML>              <LookupColumn Name="FileRef" IncludeVersions="TRUE" URLEncodeAsURL="TRUE"/>            </DisplayPattern>          </Field>          <Field ID="{7615464b-559e-4302-b8e2-8f440b913101}" ReadOnly="TRUE" Hidden="TRUE" Type="Computed" Name="BaseName" DisplayName="Name" Filterable="FALSE" RenderXMLUsingPattern="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="BaseName" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="FSObjType"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>1</Expr2>                <Then>                  <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                </Then>                <Else>                  <UrlBaseName HTMLEncode="TRUE">                    <LookupColumn Name="FileLeafRef"/>                  </UrlBaseName>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{78a07ba4-bda8-4357-9e0f-580d64487583}" Type="Computed" ReadOnly="TRUE" Name="FileSizeDisplay" DisplayName="File Size" AuthoringInfo="" SourceID="http://bit.ly/2evXbnJ" StaticName="FileSizeDisplay" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="File_x0020_Size"/>              <FieldRef Name="FSObjType"/>            </FieldRefs>            <DisplayPattern>              <Switch>                <Expr>                  <LookupColumn Name="FSObjType"/>                </Expr>                <Case Value="0">                  <LookupColumn Name="File_x0020_Size"/>                  <HTML> KB</HTML>                </Case>              </Switch>            </DisplayPattern>          </Field>          <Field ID="{687c7f94-686a-42d3-9b67-2782eac4b4f8}" Name="MetaInfo" DisplaceOnUpgrade="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Property Bag" List="Docs" FieldRef="ID" ShowField="MetaInfo" JoinColName="DoclibRowId" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="MetaInfo" FromBaseType="TRUE"/>          <Field ID="{43bdd51b-3c5b-4e78-90a8-fb2087f71e70}" ColName="tp_Level" RowOrdinal="0" ReadOnly="TRUE" Type="Integer" Name="_Level" DisplaceOnUpgrade="TRUE" DisplayName="Level" Hidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_Level" FromBaseType="TRUE"/>          <Field ID="{c101c3e7-122d-4d4d-bc34-58e94a38c816}" ColName="tp_IsCurrentVersion" DisplaceOnUpgrade="TRUE" RowOrdinal="0" ReadOnly="TRUE" Type="Boolean" Name="_IsCurrentVersion" DisplayName="Is Current Version" Hidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_IsCurrentVersion" FromBaseType="TRUE"/>          <Field ID="{b824e17e-a1b3-426e-aecf-f0184d900485}" Name="ItemChildCount" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Item Child Count" List="Docs" FieldRef="ID" ShowField="ItemChildCount" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ItemChildCount" FromBaseType="TRUE"/>          <Field ID="{960ff01f-2b6d-4f1b-9c3f-e19ad8927341}" Name="FolderChildCount" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Folder Child Count" List="Docs" FieldRef="ID" ShowField="FolderChildCount" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FolderChildCount" FromBaseType="TRUE"/>          <Field ID="{6bfaba20-36bf-44b5-a1b2-eb6346d49716}" ColName="tp_AppAuthor" RowOrdinal="0" ReadOnly="TRUE" Hidden="FALSE" Type="Lookup" List="AppPrincipals" Name="AppAuthor" DisplayName="App Created By" ShowField="Title" JoinColName="Id" SourceID="http://bit.ly/2evXbnJ" StaticName="AppAuthor" FromBaseType="TRUE"/>          <Field ID="{e08400f3-c779-4ed2-a18c-ab7f34caa318}" ColName="tp_AppEditor" RowOrdinal="0" ReadOnly="TRUE" Hidden="FALSE" Type="Lookup" List="AppPrincipals" Name="AppEditor" DisplayName="App Modified By" ShowField="Title" JoinColName="Id" SourceID="http://bit.ly/2evXbnJ" StaticName="AppEditor" FromBaseType="TRUE"/>          <Field ID="{b1f7969b-ea65-42e1-8b54-b588292635f2}" ReadOnly="TRUE" Type="Computed" Name="SelectTitle" Filterable="FALSE" Sortable="FALSE" Hidden="TRUE" CanToggleHidden="TRUE" DisplayName="Select" Dir="" AuthoringInfo="(web part connection)" HeaderImage="blank.gif" SourceID="http://bit.ly/2evXbnJ" StaticName="SelectTitle" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="ID"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <GetVar Name="SelectedID"/>                </Expr1>                <Expr2>                  <Column Name="ID"/>                </Expr2>                <Then>                  <HTML><![CDATA[<img border="0" align="absmiddle" style="cursor: pointer" src="/_layouts/15/images/rbsel.gif?rev=23" alt="]]></HTML>                  <HTML>Selected</HTML>                  <HTML><![CDATA["/>]]></HTML>                </Then>                <Else>                  <HTML><![CDATA[<a href="javascript:SelectField(']]></HTML>                  <GetVar Name="View"/>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="ID"/>                  </ScriptQuote>                  <HTML><![CDATA[');return false;" onclick="javascript:SelectField(']]></HTML>                  <GetVar Name="View"/>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="ID"/>                  </ScriptQuote>                  <HTML><![CDATA[');return false;" target="_self">]]></HTML>                  <HTML><![CDATA[<img border="0" align="absmiddle" style="cursor: pointer" src="/_layouts/15/images/rbunsel.gif?rev=23"  alt="]]></HTML>                  <HTML>Normal</HTML>                  <HTML><![CDATA["/>]]></HTML>                  <HTML><![CDATA[</a>]]></HTML>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{5f47e085-2150-41dc-b661-442f3027f552}" ReadOnly="TRUE" Type="Computed" Name="SelectFilename" DisplayName="Select" Hidden="TRUE" CanToggleHidden="TRUE" Sortable="FALSE" Filterable="FALSE" AuthoringInfo="(web part connection)" HeaderImage="blank.gif" SourceID="http://bit.ly/2evXbnJ" StaticName="SelectFilename" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="ID"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <GetVar Name="SelectedID"/>                </Expr1>                <Expr2>                  <Column Name="ID"/>                </Expr2>                <Then>                  <HTML><![CDATA[<img align="absmiddle" style="cursor: pointer" src="/_layouts/15/images/rbsel.gif?rev=23" alt="]]></HTML>                  <HTML>Selected</HTML>                  <HTML><![CDATA["/>]]></HTML>                </Then>                <Else>                  <HTML><![CDATA[<a href="javascript:SelectField(']]></HTML>                  <GetVar Name="View"/>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="ID"/>                  </ScriptQuote>                  <HTML><![CDATA[');return false;" onclick="javascript:SelectField(']]></HTML>                  <GetVar Name="View"/>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="ID"/>                  </ScriptQuote>                  <HTML><![CDATA[');return false;" target="_self">]]></HTML>                  <HTML><![CDATA[<img border="0" align="absmiddle" style="cursor: pointer" src="/_layouts/15/images/rbunsel.gif?rev=23"  alt="]]></HTML>                  <HTML>Normal</HTML>                  <HTML><![CDATA["/>]]></HTML>                  <HTML><![CDATA[</a>]]></HTML>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{503f1caa-358e-4918-9094-4a2cdc4bc034}" ReadOnly="TRUE" Type="Computed" Name="Edit" Sortable="FALSE" Filterable="FALSE" DisplayName="Edit" ClassInfo="Icon" AuthoringInfo="(link to edit item)" SourceID="http://bit.ly/2evXbnJ" StaticName="Edit" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="IsCheckedoutToLocal"/>              <FieldRef Name="ServerUrl"/>              <FieldRef Name="CheckedOutUserId"/>            </FieldRefs>            <DisplayPattern>              <IfHasRights>                <RightsChoices>                  <RightsGroup PermEditListItems="required"/>                </RightsChoices>                <Then>                  <HTML><![CDATA[<a href="]]></HTML>                  <URL Cmd="Edit"/>                  <HTML><![CDATA[" onclick="EditItemWithCheckoutAlert(event, this.href, ']]></HTML>                  <IfEqual>                    <Expr1>                      <ListProperty Select="ForceCheckout"/>                    </Expr1>                    <Expr2>1</Expr2>                    <Then>                      <IfEqual>                        <Expr1>                          <Field Name="CheckedOutUserId"/>                        </Expr1>                        <Expr2/>                        <Then>                          <IfEqual>                            <Expr1>                              <LookupColumn Name="FSObjType"/>                            </Expr1>                            <Expr2>1</Expr2>                            <Then>                              <HTML><![CDATA[0]]></HTML>                            </Then>                            <Else>                              <HTML><![CDATA[1]]></HTML>                            </Else>                          </IfEqual>                        </Then>                        <Else>                          <HTML><![CDATA[0]]></HTML>                        </Else>                      </IfEqual>                    </Then>                    <Else>                      <HTML><![CDATA[0]]></HTML>                    </Else>                  </IfEqual>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Field Name="IsCheckedoutToLocal"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Field Name="ServerUrl"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <HttpVDir/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Field Name="CheckedOutUserId"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <UserID AllowAnonymous="TRUE"/>                  </ScriptQuote>                  <HTML><![CDATA[') ;return false;" target="_self">]]></HTML>                  <HTML><![CDATA[<img border="0" alt="]]></HTML>                  <HTML>Edit Document Properties</HTML>                  <HTML><![CDATA[" src="/_layouts/images/edititem.gif"/>]]></HTML>                  <HTML><![CDATA[</a>]]></HTML>                </Then>                <Else>                  <HTML><![CDATA[160;]]></HTML>                </Else>              </IfHasRights>            </DisplayPattern>          </Field>          <Field ID="{d4e44a66-ee3a-4d02-88c9-4ec5ff3f4cd5}" ColName="tp_Version" RowOrdinal="0" Hidden="TRUE" ReadOnly="TRUE" Type="Integer" SetAs="owshiddenversion" Name="owshiddenversion" DisplayName="owshiddenversion" SourceID="http://bit.ly/2evXbnJ" StaticName="owshiddenversion" FromBaseType="TRUE"/>          <Field ID="{7841bf41-43d0-4434-9f50-a673baef7631}" ColName="tp_UIVersion" RowOrdinal="0" ReadOnly="TRUE" Type="Integer" Name="_UIVersion" DisplaceOnUpgrade="TRUE" DisplayName="UI Version" Hidden="TRUE" CanToggleHidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_UIVersion" FromBaseType="TRUE"/>          <Field ID="{dce8262a-3ae9-45aa-aab4-83bd75fb738a}" ColName="tp_UIVersionString" RowOrdinal="0" ReadOnly="TRUE" Type="Text" Name="_UIVersionString" DisplaceOnUpgrade="TRUE" DisplayName="Version" CanToggleHidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_UIVersionString" FromBaseType="TRUE"/>          <Field ID="{50a54da4-1528-4e67-954a-e2d24f1e9efb}" Name="InstanceID" DisplayName="Instance ID" ColName="tp_InstanceID" RowOrdinal="0" ReadOnly="TRUE" Hidden="TRUE" Type="Integer" Min="0" Max="99991231" Filterable="TRUE" Sortable="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="InstanceID" FromBaseType="TRUE"/>          <Field ID="{ca4addac-796f-4b23-b093-d2a3f65c0774}" ColName="tp_ItemOrder" RowOrdinal="0" Name="Order" DisplayName="Order" Type="Number" Hidden="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Order" FromBaseType="TRUE"/>          <Field ID="{ae069f25-3ac2-4256-b9c3-15dbc15da0e0}" ColName="tp_GUID" RowOrdinal="0" ReadOnly="TRUE" Hidden="TRUE" Type="Guid" Name="GUID" DisplaceOnUpgrade="TRUE" DisplayName="GUID" SourceID="http://bit.ly/2evXbnJ" StaticName="GUID" FromBaseType="TRUE"/>          <Field ID="{f1e020bc-ba26-443f-bf2f-b68715017bbc}" ColName="tp_WorkflowVersion" RowOrdinal="0" Hidden="TRUE" ReadOnly="TRUE" Type="Integer" Name="WorkflowVersion" DisplaceOnUpgrade="TRUE" DisplayName="Workflow Version" SourceID="http://bit.ly/2evXbnJ" StaticName="WorkflowVersion" FromBaseType="TRUE"/>          <Field ID="{de8beacf-5505-47cd-80a6-aa44e7ffe2f4}" ColName="tp_WorkflowInstanceID" RowOrdinal="0" ReadOnly="TRUE" Hidden="TRUE" Type="Guid" Name="WorkflowInstanceID" DisplaceOnUpgrade="TRUE" DisplayName="Workflow Instance ID" SourceID="http://bit.ly/2evXbnJ" StaticName="WorkflowInstanceID" FromBaseType="TRUE"/>          <Field ID="{bc1a8efb-0f4c-49f8-a38f-7fe22af3d3e0}" Name="ParentVersionString" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" DisplayName="Source Version (Converted Document)" ShowInFileDlg="FALSE" Type="Lookup" List="Docs" FieldRef="ID" ShowField="ParentVersionString" JoinColName="DoclibRowId" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ParentVersionString" FromBaseType="TRUE"/>          <Field ID="{774eab3a-855f-4a34-99da-69dc21043bec}" Name="ParentLeafName" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" DisplayName="Source Name (Converted Document)" ShowInFileDlg="FALSE" Type="Lookup" List="Docs" FieldRef="ID" ShowField="ParentLeafName" JoinColName="DoclibRowId" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ParentLeafName" FromBaseType="TRUE"/>          <Field ID="{8e69e8e8-df8a-45dc-858a-1b806dde24c0}" Name="DocConcurrencyNumber" DisplaceOnUpgrade="TRUE" Hidden="TRUE" ReadOnly="TRUE" DisplayName="Document Concurrency Number" ShowInFileDlg="FALSE" Type="Lookup" List="Docs" FieldRef="ID" ShowField="DocConcurrencyNumber" JoinColName="DoclibRowId" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="DocConcurrencyNumber" FromBaseType="TRUE"/>          <Field ID="{e52012a0-51eb-4c0c-8dfb-9b8a0ebedcb6}" ReadOnly="TRUE" Type="Computed" Name="Combine" DisplaceOnUpgrade="TRUE" DisplayName="Merge" Filterable="FALSE" Sortable="FALSE" Hidden="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Combine">            <FieldRefs>              <FieldRef Name="FSObjType" Key="Primary"/>              <FieldRef Name="EncodedAbsUrl"/>              <FieldRef Name="TemplateUrl"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <Field Name="FSObjType"/>                </Expr1>                <Expr2>0</Expr2>                <Then>                  <HTML><![CDATA[<input id="chkCombine" type="CHECKBOX" title="Merge]]" href="]]></HTML>                  <Field Name="EncodedAbsUrl"/>                  <HTML><![CDATA[">]]></HTML>                  <HTML><![CDATA[<input id="chkUrl" type="HIDDEN" href="]]></HTML>                  <Column Name="TemplateUrl" HTMLEncode="TRUE"/>                  <HTML><![CDATA[">]]></HTML>                  <HTML><![CDATA[<input id="chkProgID" type="HIDDEN" href="]]></HTML>                  <MapToControl>                    <HTML>|</HTML>                    <GetFileExtension>                      <Column Name="TemplateUrl" HTMLEncode="TRUE"/>                    </GetFileExtension>                  </MapToControl>                  <HTML><![CDATA[">]]></HTML>                </Then>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{5d36727b-bcb2-47d2-a231-1f0bc63b7439}" ReadOnly="TRUE" Type="Computed" Name="RepairDocument" DisplaceOnUpgrade="TRUE" DisplayName="Relink" Filterable="FALSE" Sortable="FALSE" Hidden="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="RepairDocument">            <FieldRefs>              <FieldRef Name="FSObjType" Key="Primary"/>              <FieldRef Name="ID"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <Field Name="FSObjType"/>                </Expr1>                <Expr2>0</Expr2>                <Then>                  <HTML><![CDATA[<input id="chkRepair" type="CHECKBOX" title="Relink" docid="]]></HTML>                  <Field Name="ID"/>                  <HTML><![CDATA[">]]></HTML>                </Then>              </IfEqual>            </DisplayPattern>          </Field>        </Fields>        <ContentTypes>          <ContentType ID="0x0101005841B6968E02404B96D5E429EDA1FA59" Name="Document" Group="Document Content Types" Description="Create a new document." Version="0" FeatureId="{695b6570-a48b-4a8e-8ea5-26ea7fc1d162}">            <Folder TargetName="Forms/Document"/>            <FieldRefs>              <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{5f47e085-2150-41dc-b661-442f3027f552}" Name="SelectFilename"/>              <FieldRef ID="{8553196d-ec8d-4564-9861-3dbe931050c8}" Name="FileLeafRef" Required="TRUE"/>              <FieldRef ID="{8c06beca-0777-48f7-91c7-6da68bc07b69}" Name="Created" Hidden="TRUE"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" ShowInNewForm="FALSE" ShowInEditForm="TRUE"/>              <FieldRef ID="{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}" Name="Modified" Hidden="TRUE"/>              <FieldRef ID="{822c78e3-1ea9-4943-b449-57863ad33ca9}" Name="Modified_x0020_By" Hidden="FALSE"/>              <FieldRef ID="{4dd7e525-8d6b-4cb4-9d3e-44ee25f973eb}" Name="Created_x0020_By" Hidden="FALSE"/>            </FieldRefs>            <XmlDocuments>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvRGlzcGxheT48RWRpdD5Eb2N1bWVudExpYnJhcnlGb3JtPC9FZGl0PjxOZXc+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x012000F883BB94D64DA645A4434A87E0A7F82E" Name="Folder" Group="Folder Content Types" Description="Create a new folder." Sealed="TRUE" Version="0" FeatureId="{695b6570-a48b-4a8e-8ea5-26ea7fc1d162}">            <FieldRefs>              <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" Hidden="TRUE"/>              <FieldRef ID="{8553196d-ec8d-4564-9861-3dbe931050c8}" Name="FileLeafRef" Required="TRUE" Hidden="FALSE"/>              <FieldRef ID="{b824e17e-a1b3-426e-aecf-f0184d900485}" Name="ItemChildCount"/>              <FieldRef ID="{960ff01f-2b6d-4f1b-9c3f-e19ad8927341}" Name="FolderChildCount"/>            </FieldRefs>            <XmlDocuments>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x01010900E9216EC6C932CA40BD6E7943876C456A" Name="Basic Page" Group="Document Content Types" Description="Create a new basic page." Version="0" FeatureId="{695b6570-a48b-4a8e-8ea5-26ea7fc1d162}">            <Folder TargetName="Forms/Basic Page"/>            <FieldRefs>              <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{5f47e085-2150-41dc-b661-442f3027f552}" Name="SelectFilename"/>              <FieldRef ID="{8553196d-ec8d-4564-9861-3dbe931050c8}" Name="FileLeafRef" Required="TRUE"/>              <FieldRef ID="{8c06beca-0777-48f7-91c7-6da68bc07b69}" Name="Created" Hidden="TRUE"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" ShowInNewForm="FALSE" ShowInEditForm="TRUE"/>              <FieldRef ID="{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}" Name="Modified" Hidden="TRUE"/>              <FieldRef ID="{822c78e3-1ea9-4943-b449-57863ad33ca9}" Name="Modified_x0020_By" Hidden="FALSE"/>              <FieldRef ID="{4dd7e525-8d6b-4cb4-9d3e-44ee25f973eb}" Name="Created_x0020_By" Hidden="FALSE"/>            </FieldRefs>            <DocumentTemplate TargetName="/_layouts/15/bpcf.aspx"/>            <XmlDocuments>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvRGlzcGxheT48RWRpdD5Eb2N1bWVudExpYnJhcnlGb3JtPC9FZGl0PjxOZXc+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x01010200D5963C4B37B9CF43A3BA30F1653E9C90" Name="Picture" Group="Document Content Types" Description="Upload an image or a photograph." Version="0" FeatureId="{695b6570-a48b-4a8e-8ea5-26ea7fc1d162}">            <Folder TargetName="Forms/Picture"/>            <FieldRefs>              <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{5f47e085-2150-41dc-b661-442f3027f552}" Name="SelectFilename"/>              <FieldRef ID="{8553196d-ec8d-4564-9861-3dbe931050c8}" Name="FileLeafRef" Required="TRUE"/>              <FieldRef ID="{8c06beca-0777-48f7-91c7-6da68bc07b69}" Name="Created" Hidden="TRUE"/>              <FieldRef ID="{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}" Name="Modified" Hidden="TRUE"/>              <FieldRef ID="{822c78e3-1ea9-4943-b449-57863ad33ca9}" Name="Modified_x0020_By" Hidden="FALSE"/>              <FieldRef ID="{4dd7e525-8d6b-4cb4-9d3e-44ee25f973eb}" Name="Created_x0020_By" Hidden="FALSE"/>              <FieldRef ID="{8c0d0aac-9b76-4951-927a-2490abe13c0b}" Name="PreviewOnForm"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" ShowInNewForm="FALSE" ShowInFileDlg="FALSE"/>              <FieldRef ID="{c53a03f3-f930-4ef2-b166-e0f2210c13c0}" Name="FileType"/>              <FieldRef ID="{922551b8-c7e0-46a6-b7e3-3cf02917f68a}" Name="ImageSize"/>              <FieldRef ID="{7e68a0f9-af76-404c-9613-6f82bc6dc28c}" Name="ImageWidth"/>              <FieldRef ID="{1944c034-d61b-42af-aa84-647f2e74ca70}" Name="ImageHeight"/>              <FieldRef ID="{a5d2f824-bc53-422e-87fd-765939d863a5}" Name="ImageCreateDate"/>              <FieldRef ID="{9da97a8a-1da5-4a77-98d3-4bc10456e700}" Name="Comments" ShowInNewForm="FALSE" ShowInFileDlg="FALSE"/>              <FieldRef ID="{b9e6f3ae-5632-4b13-b636-9d1a2bd67120}" Name="EncodedAbsThumbnailUrl"/>              <FieldRef ID="{a1ca0063-779f-49f9-999c-a4a2e3645b07}" Name="EncodedAbsWebImgUrl"/>              <FieldRef ID="{7ebf72ca-a307-4c18-9e5b-9d89e1dae74f}" Name="SelectedFlag"/>              <FieldRef ID="{76d1cc87-56de-432c-8a2a-16e5ba5331b3}" Name="NameOrTitle"/>              <FieldRef ID="{de1baa4b-2117-473b-aa0c-4d824034142d}" Name="RequiredField"/>              <FieldRef ID="{b66e9b50-a28e-469b-b1a0-af0e45486874}" Name="Keywords" ShowInNewForm="FALSE" ShowInFileDlg="FALSE"/>              <FieldRef ID="{ac7bb138-02dc-40eb-b07a-84c15575b6e9}" Name="Thumbnail"/>              <FieldRef ID="{bd716b26-546d-43f2-b229-62699581fa9f}" Name="Preview"/>              <FieldRef ID="{1f43cd21-53c5-44c5-8675-b8bb86083244}" Name="ThumbnailExists"/>              <FieldRef ID="{3ca8efcd-96e8-414f-ba90-4c8c4a8bfef8}" Name="PreviewExists"/>              <FieldRef ID="{f39d44af-d3f3-4ae6-b43f-ac7330b5e9bd}" Name="AlternateThumbnailUrl"/>            </FieldRefs>            <DocumentTemplate TargetName="/_layouts/15/upload.aspx"/>            <XmlDocuments>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvRGlzcGxheT48RWRpdD5Eb2N1bWVudExpYnJhcnlGb3JtPC9FZGl0PjxOZXc+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x01010100D50E45BD774B0D45BA56CB41A920A7D7" Name="Form" Group="Document Content Types" Description="Fill out this form." Version="1" FeatureId="{695b6570-a48b-4a8e-8ea5-26ea7fc1d162}">            <Folder TargetName="Forms/Form"/>            <FieldRefs>              <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{5f47e085-2150-41dc-b661-442f3027f552}" Name="SelectFilename"/>              <FieldRef ID="{8553196d-ec8d-4564-9861-3dbe931050c8}" Name="FileLeafRef" Required="TRUE"/>              <FieldRef ID="{8c06beca-0777-48f7-91c7-6da68bc07b69}" Name="Created" Hidden="TRUE"/>              <FieldRef ID="{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}" Name="Modified" Hidden="TRUE"/>              <FieldRef ID="{822c78e3-1ea9-4943-b449-57863ad33ca9}" Name="Modified_x0020_By" Hidden="FALSE"/>              <FieldRef ID="{4dd7e525-8d6b-4cb4-9d3e-44ee25f973eb}" Name="Created_x0020_By" Hidden="FALSE"/>              <FieldRef ID="{e52012a0-51eb-4c0c-8dfb-9b8a0ebedcb6}" Name="Combine"/>              <FieldRef ID="{086f2b30-460c-4251-b75a-da88a5b205c1}" Name="ShowCombineView"/>              <FieldRef ID="{5d36727b-bcb2-47d2-a231-1f0bc63b7439}" Name="RepairDocument"/>              <FieldRef ID="{11851948-b05e-41be-9d9f-bc3bf55d1de3}" Name="ShowRepairView"/>              <FieldRef ID="{4b1bf6c6-4f39-45ac-acd5-16fe7a214e5e}" Name="TemplateUrl"/>              <FieldRef ID="{cd1ecb9f-dd4e-4f29-ab9e-e9ff40048d64}" Name="xd_ProgID"/>            </FieldRefs>            <DocumentTemplate TargetName="Forms/Form/template.dotx"/>            <XmlDocuments>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvRGlzcGxheT48RWRpdD5Eb2N1bWVudExpYnJhcnlGb3JtPC9FZGl0PjxOZXc+RG9jdW1lbnRMaWJyYXJ5Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>        </ContentTypes>        <Forms>          <Form Type="DisplayForm" Name="{F62DF496-96AC-47EC-923B-C85A77D77790}" Url="Test Document Library/Forms/DispForm.aspx" Default="TRUE" FormID="0"/>          <Form Type="EditForm" Name="{833EB309-9AE9-49C3-A9C3-E4CE9E6F81B5}" Url="Test Document Library/Forms/EditForm.aspx" Default="TRUE" FormID="0"/>          <Form Type="NewForm" Name="{72B72D78-E83D-4652-B723-0ECB85F12097}" Url="Test Document Library/Forms/Upload.aspx" Default="TRUE" FormID="0"/>        </Forms>        <Security>          <ReadSecurity>1</ReadSecurity>          <WriteSecurity>1</WriteSecurity>          <SchemaSecurity>0</SchemaSecurity>        </Security>        <DocumentLibraryTemplate>Test Document Library/Forms/template.dotx</DocumentLibraryTemplate>        <Receivers>          <Receiver>            <Name>Content Following Item Updated Event Receiver 101</Name>            <Synchronization>2</Synchronization>            <Type>10002</Type>            <SequenceNumber>10000</SequenceNumber>            <Assembly>Microsoft.Office.Server.UserProfiles, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c</Assembly>            <Class>Microsoft.Office.Server.UserProfiles.ContentFollowingItemEventReceiver</Class>            <Data></Data>          </Receiver>        </Receivers>      </MetaData>    </List>    <List Name="{592B2A0B-45C5-4A2D-9F05-04444E50150E}" Title="Test1WithMultipleContentTypes" Description="" Direction="0" BaseType="0" FeatureId="{00BFEA71-DE22-43B2-A848-C05709900100}" ServerTemplate="100" Url="Lists/Test1WithMultipleContentTypes" FolderCreation="FALSE" EnableContentTypes="TRUE" NavigateForFormsPages="TRUE" BrowserFileHandling="permissive" Version="14">      <MetaData>        <Views>          <View Name="{C09088E3-0D25-4B40-9AA2-33033143CC0C}" DefaultView="TRUE" MobileView="TRUE" MobileDefaultView="TRUE" Type="HTML" DisplayName="All Items" Url="Lists/Test1WithMultipleContentTypes/AllItems.aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/generic.png?rev=23">            <XslLink Default="TRUE">main.xsl</XslLink>            <JSLink>clienttemplates.js</JSLink>            <RowLimit Paged="TRUE">30</RowLimit>            <Toolbar Type="Standard"/>            <ViewFields>              <FieldRef Name="LinkTitle"/>            </ViewFields>            <Query>              <OrderBy>                <FieldRef Name="ID"/>              </OrderBy>            </Query>            <ParameterBindings>              <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)"/>              <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noXinviewofY_DEFAULT)"/>            </ParameterBindings>          </View>          <View Name="{58A38F2B-BCFC-44F6-BD1C-5E44E014AFAF}" MobileView="TRUE" Type="HTML" DisplayName="testview" Url="Lists/Test1WithMultipleContentTypes/testview.aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/generic.png?rev=23">            <ViewFields>              <FieldRef Name="EDRMSAction"/>              <FieldRef Name="EDRMSActualCloseddate"/>              <FieldRef Name="EDRMSAuditContact"/>              <FieldRef Name="EDRMSD_TSpendValuerequested"/>              <FieldRef Name="ItemChildCount"/>            </ViewFields>            <ViewData/>            <Query/>            <Aggregations Value="Off"/>            <RowLimit Paged="TRUE">30</RowLimit>            <Mobile MobileItemLimit="3" MobileSimpleViewField="EDRMSAction"/>            <XslLink Default="TRUE">main.xsl</XslLink>            <JSLink>clienttemplates.js</JSLink>            <Toolbar Type="Standard"/>            <ParameterBindings>              <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)"/>              <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noXinviewofY_DEFAULT)"/>            </ParameterBindings>          </View>          <View Name="{7D342A66-6550-413A-BAD0-B63FFE9C2E44}" MobileView="TRUE" Type="CALENDAR" Scope="Recursive" DisplayName="calendar test" Url="Lists/Test1WithMultipleContentTypes/calendar test.aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/generic.png?rev=23">            <ViewFields>              <FieldRef Name="EDRMSActualCloseddate"/>              <FieldRef Name="EDRMSActualCloseddate"/>              <FieldRef Name="Title"/>            </ViewFields>            <CalendarViewStyles>&lt;CalendarViewStyle  Title=39;Day39; Type=39;day39; Template=39;CalendarViewdayChrome39; Sequence=39;139; Default=39;FALSE39; /&gt;&lt;CalendarViewStyle  Title=39;Week39; Type=39;week39; Template=39;CalendarViewweekChrome39; Sequence=39;239; Default=39;FALSE39; /&gt;&lt;CalendarViewStyle  Title=39;Month39; Type=39;month39; Template=39;CalendarViewmonthChrome39; Sequence=39;339; Default=39;TRUE39; /&gt;</CalendarViewStyles>            <ViewData>              <FieldRef Name="EDRMSAction" Type="CalendarMonthTitle"/>              <FieldRef Name="EDRMSCurrentstatus" Type="CalendarWeekTitle"/>              <FieldRef Name="EDRMSD_TSpendValuerequested" Type="CalendarWeekLocation"/>              <FieldRef Name="EDRMSCurrentstatus" Type="CalendarDayTitle"/>              <FieldRef Name="EDRMSD_TSpendValuerequested" Type="CalendarDayLocation"/>            </ViewData>            <Query>              <Where>                <And>                  <DateRangesOverlap>                    <FieldRef Name="EDRMSActualCloseddate"/>                    <FieldRef Name="EDRMSActualCloseddate"/>                    <Value Type="DateTime">                      <Month/>                    </Value>                  </DateRangesOverlap>                  <Eq>                    <FieldRef Name="EDRMSCurrentstatus"/>                    <Value Type="Text">Active</Value>                  </Eq>                </And>              </Where>            </Query>            <Aggregations Value="Off"/>            <RowLimit>0</RowLimit>            <Mobile MobileItemLimit="3"/>            <XslLink Default="TRUE">main.xsl</XslLink>            <JSLink>clienttemplates.js</JSLink>            <Toolbar Type="Standard"/>            <ParameterBindings>              <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)"/>              <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noXinviewofY_DEFAULT)"/>            </ParameterBindings>          </View>        </Views>        <Fields>          <Field ID="{03e45e84-1992-4d42-9116-26f756012634}" RowOrdinal="0" Type="ContentTypeId" Sealed="TRUE" ReadOnly="TRUE" Hidden="TRUE" DisplayName="Content Type ID" Name="ContentTypeId" DisplaceOnUpgrade="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="ContentTypeId" ColName="tp_ContentTypeId" FromBaseType="TRUE"/>          <Field ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Type="Text" Name="Title" DisplayName="Title" Required="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Title" FromBaseType="TRUE" ColName="nvarchar1"/>          <Field ID="{34ad21eb-75bd-4544-8c73-0e08330291fe}" ReadOnly="TRUE" Type="Note" Name="_ModerationComments" DisplayName="Approver Comments" Hidden="TRUE" CanToggleHidden="TRUE" Filterable="FALSE" Sortable="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_ModerationComments" FromBaseType="TRUE" ColName="ntext1"/>          <Field ID="{39360f11-34cf-4356-9945-25c44e68dade}" ReadOnly="TRUE" Hidden="TRUE" Type="Text" Name="File_x0020_Type" DisplaceOnUpgrade="TRUE" DisplayName="File Type" SourceID="http://bit.ly/2evXbnJ" StaticName="File_x0020_Type" FromBaseType="TRUE" ColName="nvarchar2"/>          <Field Type="Note" Name="EDRMSAction" ID="{f4f3e946-d979-4ff5-8223-c8f01ebc3347}" Description="" DisplayName="Action" StaticName="EDRMSAction" Group="EDRMS" Hidden="FALSE" Required="FALSE" Sealed="FALSE" ShowInDisplayForm="TRUE" ShowInEditForm="TRUE" ShowInListSettings="TRUE" ShowInNewForm="TRUE" SourceID="{f52ffc71-99ff-42c2-ad9c-88f88574918c}" AllowDeletion="TRUE" Customization="" ColName="ntext2" RowOrdinal="0"/>          <Field Type="DateTime" Name="EDRMSActualCloseddate" ID="{e67580c2-9226-40bf-8f34-5973dba37397}" Description="" DisplayName="Actual Closed date" StaticName="EDRMSActualCloseddate" Group="EDRMS" Hidden="FALSE" Required="FALSE" Sealed="FALSE" ShowInDisplayForm="TRUE" ShowInEditForm="TRUE" ShowInListSettings="TRUE" ShowInNewForm="TRUE" Format="DateOnly" SourceID="{f52ffc71-99ff-42c2-ad9c-88f88574918c}" AllowDeletion="TRUE" Customization="" ColName="datetime1" RowOrdinal="0"/>          <Field Type="Note" DisplayName="Assurance Type_0" StaticName="p1ddcb168b464625aa2588fc1e161f6c" Name="p1ddcb168b464625aa2588fc1e161f6c" ID="{11bfcac9-af7d-48dc-b893-37fe198ac105}" ShowInViewForms="FALSE" Required="FALSE" CanToggleHidden="TRUE" SourceID="{f52ffc71-99ff-42c2-ad9c-88f88574918c}" AllowDeletion="TRUE" Hidden="TRUE" Customization="" ColName="ntext3" RowOrdinal="0"/>          <Field Type="LookupMulti" DisplayName="Taxonomy Catch All Column" StaticName="TaxCatchAll" Name="TaxCatchAll" ID="{f3b0adf9-c1a2-4b02-920d-943fba4b3611}" ShowInViewForms="FALSE" List="{15c95bf2-06cb-45a2-b11e-e96180856bbd}" WebId="39f2fce7-342b-4950-ad06-4a30a163b30f" Required="FALSE" CanToggleHidden="TRUE" ShowField="CatchAllData" SourceID="{f52ffc71-99ff-42c2-ad9c-88f88574918c}" Mult="TRUE" Sortable="FALSE" AllowDeletion="TRUE" Sealed="TRUE" Hidden="TRUE" Version="2" Customization="" ColName="int1" RowOrdinal="0"/>          <Field Type="LookupMulti" DisplayName="Taxonomy Catch All Column1" StaticName="TaxCatchAllLabel" Name="TaxCatchAllLabel" ID="{8f6b6dd8-9357-4019-8172-966fcd502ed2}" ShowInViewForms="FALSE" List="{15c95bf2-06cb-45a2-b11e-e96180856bbd}" WebId="39f2fce7-342b-4950-ad06-4a30a163b30f" Required="FALSE" CanToggleHidden="TRUE" ShowField="CatchAllDataLabel" FieldRef="{F3B0ADF9-C1A2-4b02-920D-943FBA4B3611}" SourceID="{f52ffc71-99ff-42c2-ad9c-88f88574918c}" Mult="TRUE" Sortable="FALSE" AllowDeletion="TRUE" Sealed="TRUE" Hidden="TRUE" ReadOnly="TRUE" Version="2" Customization=""/>          <Field Type="Text" Name="EDRMSAuditContact" ID="{978a583c-0ee7-4423-8db5-d63860d6f814}" Description="" DisplayName="Audit Contact" StaticName="EDRMSAuditContact" Group="EDRMS" Hidden="FALSE" Required="FALSE" Sealed="FALSE" ShowInDisplayForm="TRUE" ShowInEditForm="TRUE" ShowInListSettings="TRUE" ShowInNewForm="TRUE" SourceID="{f52ffc71-99ff-42c2-ad9c-88f88574918c}" AllowDeletion="TRUE" Customization="" ColName="nvarchar3" RowOrdinal="0"/>          <Field Type="Choice" Name="EDRMSCurrentstatus" ID="{30f91207-2921-489a-8d95-4aff394692b3}" Description="" DisplayName="Current status" StaticName="EDRMSCurrentstatus" Group="EDRMS" Hidden="FALSE" Required="FALSE" Sealed="FALSE" ShowInDisplayForm="TRUE" ShowInEditForm="TRUE" ShowInListSettings="TRUE" ShowInNewForm="TRUE" Format="Dropdown" SourceID="{f52ffc71-99ff-42c2-ad9c-88f88574918c}" AllowDeletion="TRUE" Customization="" ColName="nvarchar4" RowOrdinal="0">            <Default>Open</Default>            <CHOICES>              <CHOICE>Open</CHOICE>              <CHOICE>Closed</CHOICE>              <CHOICE>In Prohgress</CHOICE>            </CHOICES>          </Field>          <Field Type="Currency" Name="EDRMSD_TSpendValuerequested" ID="{db74e757-efb1-4735-b300-e232027c891a}" Description="" DisplayName="D  T Spend Value requested" StaticName="EDRMSD_TSpendValuerequested" Group="EDRMS" Hidden="FALSE" Required="FALSE" Sealed="FALSE" ShowInDisplayForm="TRUE" ShowInEditForm="TRUE" ShowInListSettings="TRUE" ShowInNewForm="TRUE" SourceID="{f52ffc71-99ff-42c2-ad9c-88f88574918c}" AllowDeletion="TRUE" Customization="" ColName="float1" RowOrdinal="0"/>          <Field ID="{1d22ea11-1e32-424e-89ab-9fedbadb6ce1}" ColName="tp_ID" RowOrdinal="0" ReadOnly="TRUE" Type="Counter" Name="ID" PrimaryKey="TRUE" DisplayName="ID" SourceID="http://bit.ly/2evXbnJ" StaticName="ID" FromBaseType="TRUE"/>          <Field ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Type="Computed" DisplayName="Content Type" Name="ContentType" DisplaceOnUpgrade="TRUE" RenderXMLUsingPattern="TRUE" Sortable="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="ContentType" Group="_Hidden" PITarget="MicrosoftWindowsSharePointServices" PIAttribute="ContentTypeID" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="ContentTypeId"/>            </FieldRefs>            <DisplayPattern>              <MapToContentType>                <Column Name="ContentTypeId"/>              </MapToContentType>            </DisplayPattern>          </Field>          <Field ID="{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}" ColName="tp_Modified" RowOrdinal="0" ReadOnly="TRUE" Type="DateTime" Name="Modified" DisplayName="Modified" StorageTZ="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Modified" FromBaseType="TRUE"/>          <Field ID="{8c06beca-0777-48f7-91c7-6da68bc07b69}" ColName="tp_Created" RowOrdinal="0" ReadOnly="TRUE" Type="DateTime" Name="Created" DisplayName="Created" StorageTZ="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Created" FromBaseType="TRUE"/>          <Field ID="{1df5e554-ec7e-46a6-901d-d85a3881cb18}" ColName="tp_Author" RowOrdinal="0" ReadOnly="TRUE" Type="User" List="UserInfo" Name="Author" DisplayName="Created By" SourceID="http://bit.ly/2evXbnJ" StaticName="Author" FromBaseType="TRUE"/>          <Field ID="{d31655d1-1d5b-4511-95a1-7a09e9b75bf2}" ColName="tp_Editor" RowOrdinal="0" ReadOnly="TRUE" Type="User" List="UserInfo" Name="Editor" DisplayName="Modified By" SourceID="http://bit.ly/2evXbnJ" StaticName="Editor" FromBaseType="TRUE"/>          <Field ID="{26d0756c-986a-48a7-af35-bf18ab85ff4a}" ColName="tp_HasCopyDestinations" RowOrdinal="0" Sealed="TRUE" Hidden="TRUE" ReadOnly="TRUE" Type="Boolean" Name="_HasCopyDestinations" DisplaceOnUpgrade="TRUE" DisplayName="Has Copy Destinations" SourceID="http://bit.ly/2evXbnJ" StaticName="_HasCopyDestinations" FromBaseType="TRUE"/>          <Field ID="{6b4e226d-3d88-4a36-808d-a129bf52bccf}" ColName="tp_CopySource" RowOrdinal="0" Sealed="TRUE" Hidden="TRUE" ReadOnly="TRUE" Type="Text" Name="_CopySource" DisplaceOnUpgrade="TRUE" DisplayName="Copy Source" SourceID="http://bit.ly/2evXbnJ" StaticName="_CopySource" FromBaseType="TRUE"/>          <Field ID="{d4e44a66-ee3a-4d02-88c9-4ec5ff3f4cd5}" ColName="tp_Version" RowOrdinal="0" Hidden="TRUE" ReadOnly="TRUE" Type="Integer" SetAs="owshiddenversion" Name="owshiddenversion" DisplayName="owshiddenversion" SourceID="http://bit.ly/2evXbnJ" StaticName="owshiddenversion" FromBaseType="TRUE"/>          <Field ID="{f1e020bc-ba26-443f-bf2f-b68715017bbc}" ColName="tp_WorkflowVersion" RowOrdinal="0" Hidden="TRUE" ReadOnly="TRUE" Type="Integer" Name="WorkflowVersion" DisplaceOnUpgrade="TRUE" DisplayName="Workflow Version" SourceID="http://bit.ly/2evXbnJ" StaticName="WorkflowVersion" FromBaseType="TRUE"/>          <Field ID="{7841bf41-43d0-4434-9f50-a673baef7631}" ColName="tp_UIVersion" RowOrdinal="0" ReadOnly="TRUE" Type="Integer" Name="_UIVersion" DisplaceOnUpgrade="TRUE" DisplayName="UI Version" Hidden="TRUE" CanToggleHidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_UIVersion" FromBaseType="TRUE"/>          <Field ID="{dce8262a-3ae9-45aa-aab4-83bd75fb738a}" ColName="tp_UIVersionString" RowOrdinal="0" ReadOnly="TRUE" Type="Text" Name="_UIVersionString" DisplaceOnUpgrade="TRUE" DisplayName="Version" CanToggleHidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_UIVersionString" FromBaseType="TRUE"/>          <Field ID="{67df98f4-9dec-48ff-a553-29bece9c5bf4}" ColName="tp_HasAttachment" RowOrdinal="0" Type="Attachments" Name="Attachments" DisplayName="Attachments" SourceID="http://bit.ly/2evXbnJ" StaticName="Attachments" FromBaseType="TRUE"/>          <Field ID="{fdc3b2ed-5bf2-4835-a4bc-b885f3396a61}" ColName="tp_ModerationStatus" RowOrdinal="0" ReadOnly="TRUE" Type="ModStat" Name="_ModerationStatus" DisplayName="Approval Status" Hidden="TRUE" CanToggleHidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_ModerationStatus" FromBaseType="TRUE">            <CHOICES>              <CHOICE>0;#Approved</CHOICE>              <CHOICE>1;#Rejected</CHOICE>              <CHOICE>2;#Pending</CHOICE>              <CHOICE>3;#Draft</CHOICE>              <CHOICE>4;#Scheduled</CHOICE>            </CHOICES>            <Default>0</Default>          </Field>          <Field ID="{503f1caa-358e-4918-9094-4a2cdc4bc034}" ReadOnly="TRUE" Type="Computed" Name="Edit" Sortable="FALSE" Filterable="FALSE" DisplayName="Edit" ClassInfo="Icon" AuthoringInfo="(link to edit item)" SourceID="http://bit.ly/2evXbnJ" StaticName="Edit" FromBaseType="TRUE">            <DisplayPattern>              <IfHasRights>                <RightsChoices>                  <RightsGroup PermEditListItems="required"/>                </RightsChoices>                <Then>                  <HTML><![CDATA[<a href="]]></HTML>                  <URL Cmd="Edit"/>                  <HTML><![CDATA[" onclick="EditLink(this, ]]></HTML>                  <Counter Type="View"/>                  <HTML><![CDATA[);return false;" target="_self">]]></HTML>                  <HTML><![CDATA[<img border="0" alt="]]></HTML>                  <HTML>Edit</HTML>                  <HTML><![CDATA[" src="/_layouts/15/images/edititem.gif?rev=23"/>]]></HTML>                  <HTML><![CDATA[</a>]]></HTML>                </Then>                <Else>                  <HTML><![CDATA[160;]]></HTML>                </Else>              </IfHasRights>            </DisplayPattern>          </Field>          <Field ID="{bc91a437-52e7-49e1-8c4e-4698904b2b6d}" ReadOnly="TRUE" Type="Computed" Name="LinkTitleNoMenu" DisplayName="Title" Dir="" DisplayNameSrcField="Title" AuthoringInfo="(linked to item)" EnableLookup="TRUE" ListItemMenuAllowed="Prohibited" LinkToItemAllowed="Prohibited" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkTitleNoMenu" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="Title"/>              <FieldRef Name="LinkFilenameNoMenu"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>1</Expr2>                <Then>                  <Field Name="LinkFilenameNoMenu"/>                </Then>                <Else>                  <HTML><![CDATA[<a onfocus="OnLink(this)" href="]]></HTML>                  <URL/>                  <HTML><![CDATA[" onclick="EditLink2(this,]]></HTML>                  <Counter Type="View"/>                  <HTML><![CDATA[);return false;" target="_self">]]></HTML>                  <Column HTMLEncode="TRUE" Name="Title" Default="(no title)"/>                  <IfEqual>                    <Expr1>                      <GetVar Name="ShowAccessibleIcon"/>                    </Expr1>                    <Expr2>1</Expr2>                    <Then>                      <HTML><![CDATA[<img src="/_layouts/15/images/blank.gif?rev=23" class="ms-hidden" border="0" width="1" height="1" alt="Use SHIFT+ENTER to open the menu (new window)."/>]]></HTML>                    </Then>                  </IfEqual>                  <HTML><![CDATA[</a>]]></HTML>                  <IfNew>                    <HTML><![CDATA[<img src="/_layouts/1033/images/new.gif" alt="]]></HTML>                    <HTML>New</HTML>                    <HTML><![CDATA[" class="ms-newgif" />]]></HTML>                  </IfNew>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{82642ec8-ef9b-478f-acf9-31f7d45fbc31}" ReadOnly="TRUE" Type="Computed" Name="LinkTitle" DisplayName="Title" DisplayNameSrcField="Title" ClassInfo="Menu" AuthoringInfo="(linked to item with edit menu)" ListItemMenuAllowed="Required" LinkToItemAllowed="Prohibited" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkTitle" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="Title"/>              <FieldRef Name="LinkTitleNoMenu"/>              <FieldRef Name="_EditMenuTableStart2"/>              <FieldRef Name="_EditMenuTableEnd"/>            </FieldRefs>            <DisplayPattern>              <FieldSwitch>                <Expr>                  <GetVar Name="FreeForm"/>                </Expr>                <Case Value="TRUE">                  <Field Name="LinkTitleNoMenu"/>                </Case>                <Default>                  <HTML><![CDATA[
                                    ]]>                                    ]]></HTML>                  <HTML><![CDATA[
]]>                   ]]>                  ]]>                   ]]>                  ]]></HTML>                </Default>              </FieldSwitch>            </DisplayPattern>          </Field>          <Field ID="{5f190d91-3dbc-4489-9878-3c092caf35b6}" Hidden="TRUE" ReadOnly="TRUE" Type="Computed" Name="LinkTitle2" DisplayName="Title" DisplayNameSrcField="Title" ClassInfo="Menu" AuthoringInfo="(linked to item with edit menu) (old)" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkTitle2" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="Title"/>              <FieldRef Name="LinkTitleNoMenu"/>              <FieldRef Name="_EditMenuTableStart"/>              <FieldRef Name="_EditMenuTableEnd"/>            </FieldRefs>            <DisplayPattern>              <FieldSwitch>                <Expr>                  <GetVar Name="FreeForm"/>                </Expr>                <Case Value="TRUE">                  <Field Name="LinkTitleNoMenu"/>                </Case>                <Default>                  <Field Name="_EditMenuTableStart"/>                  <SetVar Name="ShowAccessibleIcon" Value="1"/>                  <Field Name="LinkTitleNoMenu"/>                  <SetVar Name="ShowAccessibleIcon" Value="0"/>                  <Field Name="_EditMenuTableEnd"/>                </Default>              </FieldSwitch>            </DisplayPattern>          </Field>          <Field ID="{b1f7969b-ea65-42e1-8b54-b588292635f2}" ReadOnly="TRUE" Type="Computed" Sortable="FALSE" Filterable="FALSE" Name="SelectTitle" Hidden="TRUE" CanToggleHidden="TRUE" DisplayName="Select" Dir="" AuthoringInfo="(web part connection)" HeaderImage="blank.gif" SourceID="http://bit.ly/2evXbnJ" StaticName="SelectTitle" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="ID"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <GetVar Name="SelectedID"/>                </Expr1>                <Expr2>                  <Column Name="ID"/>                </Expr2>                <Then>                  <HTML><![CDATA[<img border="0" align="absmiddle" style="cursor: pointer" src="/_layouts/15/images/rbsel.gif?rev=23" alt="]]></HTML>                  <HTML>Selected</HTML>                  <HTML><![CDATA["/>]]></HTML>                </Then>                <Else>                  <HTML><![CDATA[<a href="javascript:SelectField(']]></HTML>                  <GetVar Name="View"/>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="ID"/>                  </ScriptQuote>                  <HTML><![CDATA[');return false;" onclick="javascript:SelectField(']]></HTML>                  <GetVar Name="View"/>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="ID"/>                  </ScriptQuote>                  <HTML><![CDATA[');return false;" target="_self">]]></HTML>                  <HTML><![CDATA[<img border="0" align="absmiddle" style="cursor: pointer" src="/_layouts/15/images/rbunsel.gif?rev=23"  alt="]]></HTML>                  <HTML>Normal</HTML>                  <HTML><![CDATA["/>]]></HTML>                  <HTML><![CDATA[</a>]]></HTML>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{50a54da4-1528-4e67-954a-e2d24f1e9efb}" Name="InstanceID" DisplayName="Instance ID" ColName="tp_InstanceID" RowOrdinal="0" ReadOnly="TRUE" Hidden="TRUE" Type="Integer" Min="0" Max="99991231" Filterable="TRUE" Sortable="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="InstanceID" FromBaseType="TRUE"/>          <Field ID="{ca4addac-796f-4b23-b093-d2a3f65c0774}" ColName="tp_ItemOrder" RowOrdinal="0" Name="Order" DisplayName="Order" Type="Number" Hidden="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="Order" FromBaseType="TRUE"/>          <Field ID="{ae069f25-3ac2-4256-b9c3-15dbc15da0e0}" ColName="tp_GUID" RowOrdinal="0" ReadOnly="TRUE" Hidden="TRUE" Type="Guid" Name="GUID" DisplayName="GUID" SourceID="http://bit.ly/2evXbnJ" StaticName="GUID" FromBaseType="TRUE"/>          <Field ID="{de8beacf-5505-47cd-80a6-aa44e7ffe2f4}" ColName="tp_WorkflowInstanceID" RowOrdinal="0" ReadOnly="TRUE" Hidden="TRUE" Type="Guid" Name="WorkflowInstanceID" DisplaceOnUpgrade="TRUE" DisplayName="Workflow Instance ID" SourceID="http://bit.ly/2evXbnJ" StaticName="WorkflowInstanceID" FromBaseType="TRUE"/>          <Field ID="{94f89715-e097-4e8b-ba79-ea02aa8b7adb}" Name="FileRef" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" Type="Lookup" DisplayName="URL Path" List="Docs" FieldRef="ID" ShowField="FullUrl" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FileRef" FromBaseType="TRUE"/>          <Field ID="{56605df6-8fa1-47e4-a04c-5b384d59609f}" Name="FileDirRef" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" Type="Lookup" DisplayName="Path" List="Docs" FieldRef="ID" ShowField="DirName" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FileDirRef" FromBaseType="TRUE"/>          <Field ID="{173f76c8-aebd-446a-9bc9-769a2bd2c18f}" Name="Last_x0020_Modified" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" DisplayName="Modified" Type="Lookup" List="Docs" FieldRef="ID" ShowField="TimeLastModified" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="Last_x0020_Modified" FromBaseType="TRUE"/>          <Field ID="{998b5cff-4a35-47a7-92f3-3914aa6aa4a2}" Name="Created_x0020_Date" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" DisplayName="Created" Type="Lookup" List="Docs" FieldRef="ID" ShowField="TimeCreated" Format="TRUE" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="Created_x0020_Date" FromBaseType="TRUE"/>          <Field ID="{30bb605f-5bae-48fe-b4e3-1f81d9772af9}" Name="FSObjType" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Item Type" List="Docs" FieldRef="ID" ShowField="FSType" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FSObjType" FromBaseType="TRUE"/>          <Field ID="{423874f8-c300-4bfb-b7a1-42e2159e3b19}" Name="SortBehavior" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Sort Type" List="Docs" FieldRef="ID" ShowField="SortBehavior" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="SortBehavior" FromBaseType="TRUE"/>          <Field ID="{ba3c27ee-4791-4867-8821-ff99000bac98}" Name="PermMask" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" RenderXMLUsingPattern="TRUE" ShowInFileDlg="FALSE" Type="Computed" DisplayName="Effective Permissions Mask" SourceID="http://bit.ly/2evXbnJ" StaticName="PermMask" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="ID"/>            </FieldRefs>            <DisplayPattern>              <CurrentRights/>            </DisplayPattern>          </Field>          <Field ID="{8553196d-ec8d-4564-9861-3dbe931050c8}" Hidden="TRUE" ShowInFileDlg="FALSE" ShowInVersionHistory="FALSE" Type="File" Name="FileLeafRef" DisplaceOnUpgrade="TRUE" DisplayName="Name" AuthoringInfo="(for use in forms)" List="Docs" FieldRef="ID" ShowField="LeafName" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FileLeafRef" FromBaseType="TRUE"/>          <Field ID="{4b7403de-8d94-43e8-9f0f-137a3e298126}" Name="UniqueId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Unique Id" List="Docs" FieldRef="ID" ShowField="UniqueId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="UniqueId" FromBaseType="TRUE"/>          <Field ID="{6d2c4fde-3605-428e-a236-ce5f3dc2b4d4}" Name="SyncClientId" DisplaceOnUpgrade="TRUE" Hidden="TRUE" ReadOnly="TRUE" DisplayName="Client Id" ShowInFileDlg="FALSE" Type="Lookup" List="Docs" FieldRef="ID" ShowField="SyncClientId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="SyncClientId" FromBaseType="TRUE"/>          <Field ID="{c5c4b81c-f1d9-4b43-a6a2-090df32ebb68}" Name="ProgId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="ProgId" List="Docs" FieldRef="ID" ShowField="ProgId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ProgId" FromBaseType="TRUE"/>          <Field ID="{dddd2420-b270-4735-93b5-92b713d0944d}" Name="ScopeId" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="ScopeId" List="Docs" FieldRef="ID" ShowField="ScopeId" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ScopeId" FromBaseType="TRUE"/>          <Field ReadOnly="TRUE" ID="{4ef1b78f-fdba-48dc-b8ab-3fa06a0c9804}" Hidden="TRUE" Type="Computed" Name="HTML_x0020_File_x0020_Type" DisplaceOnUpgrade="TRUE" DisplayName="HTML File Type" SourceID="http://bit.ly/2evXbnJ" StaticName="HTML_x0020_File_x0020_Type" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="File_x0020_Type"/>            </FieldRefs>            <DisplayPattern/>          </Field>          <Field ID="{3c6303be-e21f-4366-80d7-d6d0a3b22c7a}" Hidden="TRUE" ReadOnly="TRUE" Type="Computed" Name="_EditMenuTableStart" DisplaceOnUpgrade="TRUE" DisplayName="Edit Menu Table Start" ClassInfo="Menu" SourceID="http://bit.ly/2evXbnJ" StaticName="_EditMenuTableStart" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="FileDirRef"/>              <FieldRef Name="FSObjType"/>              <FieldRef Name="ID"/>              <FieldRef Name="ServerUrl"/>              <FieldRef Name="HTML_x0020_File_x0020_Type"/>              <FieldRef Name="File_x0020_Type"/>              <FieldRef Name="PermMask"/>              <FieldRef Name="_HasCopyDestinations"/>              <FieldRef Name="_CopySource"/>              <FieldRef Name="ContentType"/>              <FieldRef Name="ContentTypeId"/>              <FieldRef Name="_ModerationStatus"/>              <FieldRef Name="_UIVersion"/>            </FieldRefs>            <DisplayPattern>              <HTML><![CDATA[
                            " id="                            " Url="                            " DRef="                            " Perm="                            " type="                            " Ext="                            " Icon="                                              |                                            " OType="                            " COUId="              " HCD="                            " CSrc="                            " MS="                                                                                    " UIS="                                          " SUrl="              ]]>                                                                                                              " id="                                                                                                              ]]></HTML>              <HTML><![CDATA[
]]>               ]]>              ]]>               ]]>              ]]></HTML>            </DisplayPattern>          </Field>          <Field ID="{9d30f126-ba48-446b-b8f9-83745f322ebe}" ReadOnly="TRUE" Type="Computed" Name="LinkFilenameNoMenu" DisplaceOnUpgrade="TRUE" DisplayName="Name" Hidden="TRUE" DisplayNameSrcField="FileLeafRef" Filterable="FALSE" AuthoringInfo="(linked to document)" ListItemMenuAllowed="Prohibited" LinkToItemAllowed="Prohibited" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkFilenameNoMenu" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="FSObjType"/>              <FieldRef Name="Created_x0020_Date"/>              <FieldRef Name="FileRef"/>              <FieldRef Name="File_x0020_Type"/>              <FieldRef Name="HTML_x0020_File_x0020_Type"/>              <FieldRef Name="ContentTypeId"/>              <FieldRef Name="PermMask"/>            </FieldRefs>            <DisplayPattern>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>1</Expr2>                <Then>                  <FieldSwitch>                    <Expr>                      <GetVar Name="RecursiveView"/>                    </Expr>                    <Case Value="1">                      <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                    </Case>                    <Default>                      <SetVar Name="UnencodedFilterLink">                        <SetVar Name="RootFolder">                          <HTML>/</HTML>                          <LookupColumn Name="FileRef"/>                        </SetVar>                        <SetVar Name="SkipHost">1</SetVar>                        <SetVar Name="FolderCTID">                          <FieldSwitch>                            <Expr>                              <ListProperty Select="EnableContentTypes"/>                            </Expr>                            <Case Value="1">                              <Column Name="ContentTypeId"/>                            </Case>                          </FieldSwitch>                        </SetVar>                        <FilterLink Default="" Paged="FALSE"/>                      </SetVar>                      <HTML><![CDATA[<a onfocus="OnLink(this)" href="]]></HTML>                      <GetVar Name="UnencodedFilterLink" HTMLEncode="TRUE"/>                      <HTML><![CDATA[" onmousedown="javascript:VerifyFolderHref(this,event, ']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <GetVar Name="UnencodedFilterLink"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ListProperty Select="DefaultItemOpen"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <MapToControl>                          <Column Name="HTML_x0020_File_x0020_Type"/>                          <HTML>|</HTML>                          <Column Name="File_x0020_Type"/>                        </MapToControl>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <Column Name="HTML_x0020_File_x0020_Type"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <HTML><![CDATA[')"]]></HTML>                      <HTML><![CDATA[" onclick="return HandleFolder(this,event, ']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <GetVar Name="UnencodedFilterLink"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ServerProperty Select="HtmlTransform"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <HTML><![CDATA[',']]></HTML>                      <HTML><![CDATA[',']]></HTML>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ListProperty Select="DefaultItemOpen"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <MapToControl>                          <Column Name="HTML_x0020_File_x0020_Type"/>                          <HTML>|</HTML>                          <Column Name="File_x0020_Type"/>                        </MapToControl>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <Column Name="HTML_x0020_File_x0020_Type"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <HTML><![CDATA[',']]></HTML>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <UserID AllowAnonymous="TRUE"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <ListProperty Select="ForceCheckout"/>                      </ScriptQuote>                      <HTML><![CDATA[',']]></HTML>                      <HTML><![CDATA[',']]></HTML>                      <ScriptQuote NotAddingQuote="TRUE">                        <Field Name="PermMask"/>                      </ScriptQuote>                      <HTML><![CDATA[');">]]></HTML>                      <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                      <IfEqual>                        <Expr1>                          <GetVar Name="ShowAccessibleIcon"/>                        </Expr1>                        <Expr2>1</Expr2>                        <Then>                          <HTML><![CDATA[<img src="/_layouts/15/images/blank.gif?rev=23" class="ms-hidden" border="0" width="1" height="1" alt="Use SHIFT+ENTER to open the menu (new window)."/>]]></HTML>                        </Then>                      </IfEqual>                      <HTML><![CDATA[</a>]]></HTML>                    </Default>                  </FieldSwitch>                </Then>                <Else>                  <HTML><![CDATA[<a onfocus="OnLink(this)" href="]]></HTML>                  <Field Name="ServerUrl" URLEncodeAsURL="TRUE"/>                  <HTML><![CDATA[" onclick="return DispEx(this,event,']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ServerProperty Select="HtmlTransform"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <HTML><![CDATA[',']]></HTML>                  <HTML><![CDATA[',']]></HTML>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ListProperty Select="DefaultItemOpen"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <MapToControl>                      <Column Name="HTML_x0020_File_x0020_Type"/>                      <HTML>|</HTML>                      <Column Name="File_x0020_Type"/>                    </MapToControl>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Column Name="HTML_x0020_File_x0020_Type"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <HTML><![CDATA[',']]></HTML>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <UserID AllowAnonymous="TRUE"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <ListProperty Select="ForceCheckout"/>                  </ScriptQuote>                  <HTML><![CDATA[',']]></HTML>                  <HTML><![CDATA[',']]></HTML>                  <ScriptQuote NotAddingQuote="TRUE">                    <Field Name="PermMask"/>                  </ScriptQuote>                  <HTML><![CDATA[')">]]></HTML>                  <UrlBaseName HTMLEncode="TRUE">                    <LookupColumn Name="FileLeafRef"/>                  </UrlBaseName>                  <IfEqual>                    <Expr1>                      <GetVar Name="ShowAccessibleIcon"/>                    </Expr1>                    <Expr2>1</Expr2>                    <Then>                      <HTML><![CDATA[<img src="/_layouts/15/images/blank.gif?rev=23" class="ms-hidden" border="0" width="1" height="1" alt="Use SHIFT+ENTER to open the menu (new window)."/>]]></HTML>                    </Then>                  </IfEqual>                  <HTML><![CDATA[</a>]]></HTML>                  <IfNew Name="Created_x0020_Date">                    <HTML><![CDATA[<img src="/_layouts/15/1033/images/new.gif" alt="]]></HTML>                    <HTML>New</HTML>                    <HTML><![CDATA[" class="ms-newgif" />]]></HTML>                  </IfNew>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{5cc6dc79-3710-4374-b433-61cb4a686c12}" ReadOnly="TRUE" Type="Computed" Name="LinkFilename" DisplaceOnUpgrade="TRUE" Hidden="TRUE" DisplayName="Name" DisplayNameSrcField="FileLeafRef" Filterable="FALSE" ClassInfo="Menu" AuthoringInfo="(linked to document with edit menu)" ListItemMenuAllowed="Required" LinkToItemAllowed="Prohibited" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkFilename" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="LinkFilenameNoMenu"/>              <FieldRef Name="_EditMenuTableStart2"/>              <FieldRef Name="_EditMenuTableEnd"/>            </FieldRefs>            <DisplayPattern>              <FieldSwitch>                <Expr>                  <GetVar Name="FreeForm"/>                </Expr>                <Case Value="TRUE">                  <Field Name="LinkFilenameNoMenu"/>                </Case>                <Default>                  <HTML><![CDATA[
                                    ]]>                                    ]]></HTML>                  <HTML><![CDATA[
]]>                   ]]>                  ]]>                   ]]>                  ]]></HTML>                </Default>              </FieldSwitch>            </DisplayPattern>          </Field>          <Field ID="{224ba411-da77-4050-b0eb-62d422f13d3e}" Hidden="TRUE" ReadOnly="TRUE" Type="Computed" Name="LinkFilename2" DisplaceOnUpgrade="TRUE" DisplayName="Name" DisplayNameSrcField="FileLeafRef" Filterable="FALSE" ClassInfo="Menu" AuthoringInfo="(linked to document with edit menu) (old)" SourceID="http://bit.ly/2evXbnJ" StaticName="LinkFilename2" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="LinkFilenameNoMenu"/>              <FieldRef Name="_EditMenuTableStart"/>              <FieldRef Name="_EditMenuTableEnd"/>            </FieldRefs>            <DisplayPattern>              <FieldSwitch>                <Expr>                  <GetVar Name="FreeForm"/>                </Expr>                <Case Value="TRUE">                  <Field Name="LinkFilenameNoMenu"/>                </Case>                <Default>                  <Field Name="_EditMenuTableStart"/>                  <SetVar Name="ShowAccessibleIcon" Value="1"/>                  <Field Name="LinkFilenameNoMenu"/>                  <SetVar Name="ShowAccessibleIcon" Value="0"/>                  <Field Name="_EditMenuTableEnd"/>                </Default>              </FieldSwitch>            </DisplayPattern>          </Field>          <Field ID="{081c6e4c-5c14-4f20-b23e-1a71ceb6a67c}" Type="Computed" ReadOnly="TRUE" Name="DocIcon" DisplaceOnUpgrade="TRUE" DisplayName="Type" TextOnly="TRUE" ClassInfo="Icon" AuthoringInfo="(icon linked to document)" SourceID="http://bit.ly/2evXbnJ" StaticName="DocIcon" FromBaseType="TRUE">            <FieldRefs>              <FieldRef Name="File_x0020_Type"/>              <FieldRef Name="FSObjType"/>              <FieldRef Name="FileRef"/>              <FieldRef Name="FileLeafRef"/>              <FieldRef Name="HTML_x0020_File_x0020_Type"/>              <FieldRef Name="PermMask"/>              <FieldRef Name="IconOverlay"/>            </FieldRefs>            <DisplayPattern>              <SetVar Name="DocIconImg">                <SetVar Name="DocIconAltText">                  <IfEqual>                    <Expr1>                      <LookupColumn Name="FSObjType"/>                    </Expr1>                    <Expr2>1</Expr2>                    <Then>                      <IfSubString>                        <Expr1>0x0120D5</Expr1>                        <Expr2>                          <Column Name="ContentTypeId"/>                        </Expr2>                        <Then>                          <HTML>Document Collection: </HTML>                          <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                        </Then>                        <Else>                          <HTML>Folder: </HTML>                          <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                        </Else>                      </IfSubString>                    </Then>                    <Else>                      <LookupColumn Name="Title" HTMLEncode="TRUE"/>                    </Else>                  </IfEqual>                </SetVar>                <SetVar Name="DocIconFileName">                  <IfEqual>                    <Expr1>                      <Column Name="IconOverlay"/>                    </Expr1>                    <Expr2/>                    <Then>                      <IfEqual>                        <Expr1>                          <LookupColumn Name="FSObjType"/>                        </Expr1>                        <Expr2>1</Expr2>                        <Then>                          <IfEqual>                            <Expr1>                              <Column Name="HTML_x0020_File_x0020_Type"/>                              <HTML>|</HTML>                              <Column Name="File_x0020_Type"/>                            </Expr1>                            <Expr2>                              <HTML>|</HTML>                            </Expr2>                            <Then>                              <HTML>folder.gif</HTML>                            </Then>                            <Else>                              <SetVar Name="FolderIconFromMap">                                <MapToIcon>                                  <Column Name="HTML_x0020_File_x0020_Type"/>                                  <HTML>|</HTML>                                  <Column Name="File_x0020_Type"/>                                </MapToIcon>                              </SetVar>                              <IfEqual>                                <Expr1>                                  <GetVar Name="FolderIconFromMap"/>                                </Expr1>                                <Expr2>                                  <MapToIcon/>                                </Expr2>                                <Then>                                  <HTML>folder.gif</HTML>                                </Then>                                <Else>                                  <GetVar Name="FolderIconFromMap"/>                                </Else>                              </IfEqual>                            </Else>                          </IfEqual>                        </Then>                        <Else>                          <MapToIcon>                            <Column Name="HTML_x0020_File_x0020_Type"/>                            <HTML>|</HTML>                            <Column Name="File_x0020_Type"/>                          </MapToIcon>                        </Else>                      </IfEqual>                    </Then>                    <Else>                      <MapToIcon>                        <Column Name="IconOverlay"/>                      </MapToIcon>                    </Else>                  </IfEqual>                </SetVar>                <HTML><![CDATA[<img border="0" alt="]]></HTML>                <GetVar Name="DocIconAltText"/>                <HTML><![CDATA[" title="]]></HTML>                <GetVar Name="DocIconAltText"/>                <HTML><![CDATA[" src="/_layouts/15/images/]]></HTML>                <GetVar Name="DocIconFileName"/>                <HTML><![CDATA[" />]]></HTML>              </SetVar>              <SetVar Name="DocIconOverlayImg">                <IfEqual>                  <Expr1>                    <Column Name="IconOverlay"/>                  </Expr1>                  <Expr2/>                  <Then/>                  <Else>                    <HTML><![CDATA[<img class="ms-vb-icon-overlay" alt="*" src="/_layouts/15/images/]]></HTML>                    <MapToOverlay>                      <Column Name="IconOverlay"/>                    </MapToOverlay>                    <HTML><![CDATA[" />]]></HTML>                  </Else>                </IfEqual>              </SetVar>              <IfEqual>                <Expr1>                  <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>1</Expr2>                <Then>                  <FieldSwitch>                    <Expr>                      <GetVar Name="RecursiveView"/>                    </Expr>                    <Case Value="1">                      <GetVar Name="DocIconImg"/>                      <GetVar Name="DocIconOverlayImg"/>                    </Case>                    <Default>                      <SetVar Name="UnencodedFilterLink">                        <SetVar Name="RootFolder">                          <HTML>/</HTML>                          <LookupColumn Name="FileRef"/>                        </SetVar>                        <SetVar Name="SkipHost">1</SetVar>                        <SetVar Name="FolderCTID">                          <FieldSwitch>                            <Expr>                              <ListProperty Select="EnableContentTypes"/>                            </Expr>                            <Case Value="1">                              <Column Name="ContentTypeId"/>                            </Case>                          </FieldSwitch>                        </SetVar>                        <FilterLink Default="" Paged="FALSE"/>                      </SetVar>                      <FieldSwitch>                        <Expr>                          <GetVar Name="FileDialog"/>                        </Expr>                        <Case Value="1">                          <GetVar Name="DocIconImg"/>                          <GetVar Name="DocIconOverlayImg"/>                        </Case>                        <Default>                          <HTML><![CDATA[<a href="]]></HTML>                          <GetVar Name="UnencodedFilterLink" HTMLEncode="TRUE"/>                          <HTML><![CDATA[" onclick="javascript:EnterFolder(']]></HTML>                          <ScriptQuote NotAddingQuote="TRUE">                            <GetVar Name="UnencodedFilterLink"/>                          </ScriptQuote>                          <HTML><![CDATA[');javascript:return false;">]]></HTML>                          <GetVar Name="DocIconImg"/>                          <GetVar Name="DocIconOverlayImg"/>                          <HTML><![CDATA[</a>]]></HTML>                        </Default>                      </FieldSwitch>                    </Default>                  </FieldSwitch>                </Then>                <Else>                  <HTML><![CDATA[<a onfocus="OnLink(this)" href="]]></HTML>                  <URL/>                  <HTML><![CDATA[" onclick="GoToLink(this);return false;" target="_self">]]></HTML>                  <GetVar Name="DocIconImg"/>                  <GetVar Name="DocIconOverlayImg"/>                  <HTML><![CDATA[</a>]]></HTML>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{105f76ce-724a-4bba-aece-f81f2fce58f5}" ReadOnly="TRUE" Hidden="TRUE" Type="Computed" Name="ServerUrl" DisplaceOnUpgrade="TRUE" DisplayName="Server Relative URL" Filterable="FALSE" RenderXMLUsingPattern="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="ServerUrl" FromBaseType="TRUE"          <FieldRefs            <FieldRef Name="FileRef"/>            </FieldRefs>            <DisplayPattern            <HTML>/</HTML>              <LookupColumn Name="FileRef"/>            </DisplayPattern>          </Field>          <Field ID="{7177cfc7-f399-4d4d-905d-37dd51bc90bf}" ReadOnly="TRUE" Hidden="TRUE" Type="Computed" Name="EncodedAbsUrl" DisplaceOnUpgrade="TRUE" DisplayName="Encoded Absolute URL" Filterable="FALSE" RenderXMLUsingPattern="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="EncodedAbsUrl" FromBaseType="TRUE"          <FieldRefs            <FieldRef Name="FileRef"/>            </FieldRefs>            <DisplayPattern            <HttpHost URLEncodeAsURL="TRUE"/>              <HTML>/</HTML>              <LookupColumn Name="FileRef" IncludeVersions="TRUE" URLEncodeAsURL="TRUE"/>            </DisplayPattern>          </Field>          <Field ID="{7615464b-559e-4302-b8e2-8f440b913101}" ReadOnly="TRUE" Hidden="TRUE" Type="Computed" Name="BaseName" DisplaceOnUpgrade="TRUE" DisplayName="File Name" Filterable="FALSE" RenderXMLUsingPattern="TRUE" SourceID="http://bit.ly/2evXbnJ" StaticName="BaseName" FromBaseType="TRUE"          <FieldRefs            <FieldRef Name="FileLeafRef"/>              <FieldRef Name="FSObjType"/>            </FieldRefs>            <DisplayPattern            <IfEqual              <Expr1                <LookupColumn Name="FSObjType"/>                </Expr1>                <Expr2>1</Expr2>                <Then                <LookupColumn Name="FileLeafRef" HTMLEncode="TRUE"/>                </Then>                <Else                <UrlBaseName HTMLEncode="TRUE"                  <LookupColumn Name="FileLeafRef"/>                  </UrlBaseName>                </Else>              </IfEqual>            </DisplayPattern>          </Field>          <Field ID="{687c7f94-686a-42d3-9b67-2782eac4b4f8}" Name="MetaInfo" DisplaceOnUpgrade="TRUE" Hidden="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Property Bag" List="Docs" FieldRef="ID" ShowField="MetaInfo" JoinColName="DoclibRowId" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="MetaInfo" FromBaseType="TRUE"/>          <Field ID="{43bdd51b-3c5b-4e78-90a8-fb2087f71e70}" ColName="tp_Level" RowOrdinal="0" ReadOnly="TRUE" Type="Integer" Name="_Level" DisplaceOnUpgrade="TRUE" DisplayName="Level" Hidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_Level" FromBaseType="TRUE"/>          <Field ID="{c101c3e7-122d-4d4d-bc34-58e94a38c816}" ColName="tp_IsCurrentVersion" DisplaceOnUpgrade="TRUE" RowOrdinal="0" ReadOnly="TRUE" Type="Boolean" Name="_IsCurrentVersion" DisplayName="Is Current Version" Hidden="TRUE" Required="FALSE" SourceID="http://bit.ly/2evXbnJ" StaticName="_IsCurrentVersion" FromBaseType="TRUE"/>          <Field ID="{b824e17e-a1b3-426e-aecf-f0184d900485}" Name="ItemChildCount" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Item Child Count" List="Docs" FieldRef="ID" ShowField="ItemChildCount" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="ItemChildCount" FromBaseType="TRUE"/>          <Field ID="{960ff01f-2b6d-4f1b-9c3f-e19ad8927341}" Name="FolderChildCount" DisplaceOnUpgrade="TRUE" ReadOnly="TRUE" ShowInFileDlg="FALSE" Type="Lookup" DisplayName="Folder Child Count" List="Docs" FieldRef="ID" ShowField="FolderChildCount" JoinColName="DoclibRowId" JoinRowOrdinal="0" JoinType="INNER" SourceID="http://bit.ly/2evXbnJ" StaticName="FolderChildCount" FromBaseType="TRUE"/>          <Field ID="{6bfaba20-36bf-44b5-a1b2-eb6346d49716}" ColName="tp_AppAuthor" RowOrdinal="0" ReadOnly="TRUE" Hidden="FALSE" Type="Lookup" List="AppPrincipals" Name="AppAuthor" DisplayName="App Created By" ShowField="Title" JoinColName="Id" SourceID="http://bit.ly/2evXbnJ" StaticName="AppAuthor" FromBaseType="TRUE"/>          <Field ID="{e08400f3-c779-4ed2-a18c-ab7f34caa318}" ColName="tp_AppEditor" RowOrdinal="0" ReadOnly="TRUE" Hidden="FALSE" Type="Lookup" List="AppPrincipals" Name="AppEditor" DisplayName="App Modified By" ShowField="Title" JoinColName="Id" SourceID="http://bit.ly/2evXbnJ" StaticName="AppEditor" FromBaseType="TRUE"/>        </Fields>        <ContentTypes        <ContentType ID="0x0100C24F1844B7B3264B92EBC5B3F0110A9F" Name="Item" Group="List Content Types" Description="Create a new list item." Version="0" FeatureId="{695b6570-a48b-4a8e-8ea5-26ea7fc1d162}"          <Folder TargetName="Item"/>            <FieldRefs            <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="TRUE" ShowInNewForm="TRUE" ShowInEditForm="TRUE"/>            </FieldRefs>            <XmlDocuments            <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x012000DF65443D88AF084791B2BCB044BE0BF7" Name="Folder" Group="Folder Content Types" Description="Create a new folder." Sealed="TRUE" Version="0" FeatureId="{695b6570-a48b-4a8e-8ea5-26ea7fc1d162}"          <FieldRefs            <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" Hidden="TRUE"/>              <FieldRef ID="{8553196d-ec8d-4564-9861-3dbe931050c8}" Name="FileLeafRef" Required="TRUE" Hidden="FALSE"/>              <FieldRef ID="{b824e17e-a1b3-426e-aecf-f0184d900485}" Name="ItemChildCount"/>              <FieldRef ID="{960ff01f-2b6d-4f1b-9c3f-e19ad8927341}" Name="FolderChildCount"/>            </FieldRefs>            <XmlDocuments            <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x010041CFF0FB0E8DF3488B80375585352211004905F4EC8EC2044B8FBDDDA5030A8A0D" Name="Audit" Group="EDRMS Portfolio DB" Description="Create a new list item." ReadOnly="TRUE" Version="1"          <Folder TargetName="Audit"/>            <FieldRefs            <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" Hidden="FALSE" ShowInNewForm="TRUE" ShowInEditForm="TRUE" ReadOnly="FALSE" PITarget="" PrimaryPITarget="" PIAttribute="" PrimaryPIAttribute="" Aggregation="" Node=""/>            </FieldRefs>            <XmlDocuments            <XmlDocument NamespaceURI="Microsoft.SharePoint.Taxonomy.ContentTypeSync">PFNoYXJlZENvbnRlbnRUeXBlIHhtbG5zPSJNaWNyb3NvZnQuU2hhcmVQb2ludC5UYXhvbm9teS5Db250ZW50VHlwZVN5bmMiIFNvdXJjZUlkPSJkYWFhNjk3Ny02YzQwLTRmYjgtOGIwOC04NDk3YjcwN2JlMDgiIENvbnRlbnRUeXBlSWQ9IjB4MDEwMDQxQ0ZGMEZCMEU4REYzNDg4QjgwMzc1NTg1MzUyMjExIiBQcmV2aW91c1ZhbHVlPSJmYWxzZSIgLz4=</XmlDocument>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x01005A3C6BBD0C84504FA03752D3919FCB5D00D6851EFE1788A74EB97B1705C72B89B7" Name="Audit Action" Group="EDRMS Portfolio DB" Description="Create a new list item." ReadOnly="TRUE" Version="1"          <Folder TargetName="Audit Action"/>            <FieldRefs            <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" Hidden="FALSE" ShowInNewForm="TRUE" ShowInEditForm="TRUE" ReadOnly="FALSE" PITarget="" PrimaryPITarget="" PIAttribute="" PrimaryPIAttribute="" Aggregation="" Node=""/>              <FieldRef ID="{f4f3e946-d979-4ff5-8223-c8f01ebc3347}" Name="EDRMSAction"/>              <FieldRef ID="{e67580c2-9226-40bf-8f34-5973dba37397}" Name="EDRMSActualCloseddate"/>              <FieldRef ID="{11bfcac9-af7d-48dc-b893-37fe198ac105}" Name="p1ddcb168b464625aa2588fc1e161f6c" Hidden="TRUE"/>              <FieldRef ID="{f3b0adf9-c1a2-4b02-920d-943fba4b3611}" Name="TaxCatchAll" Hidden="TRUE"/>              <FieldRef ID="{8f6b6dd8-9357-4019-8172-966fcd502ed2}" Name="TaxCatchAllLabel" Hidden="TRUE"/>              <FieldRef ID="{978a583c-0ee7-4423-8db5-d63860d6f814}" Name="EDRMSAuditContact"/>              <FieldRef ID="{30f91207-2921-489a-8d95-4aff394692b3}" Name="EDRMSCurrentstatus"/>              <FieldRef ID="{db74e757-efb1-4735-b300-e232027c891a}" Name="EDRMSD_TSpendValuerequested"/>            </FieldRefs>            <XmlDocuments            <XmlDocument NamespaceURI="Microsoft.SharePoint.Taxonomy.ContentTypeSync">PFNoYXJlZENvbnRlbnRUeXBlIHhtbG5zPSJNaWNyb3NvZnQuU2hhcmVQb2ludC5UYXhvbm9teS5Db250ZW50VHlwZVN5bmMiIFNvdXJjZUlkPSJkYWFhNjk3Ny02YzQwLTRmYjgtOGIwOC04NDk3YjcwN2JlMDgiIENvbnRlbnRUeXBlSWQ9IjB4MDEwMDVBM0M2QkJEMEM4NDUwNEZBMDM3NTJEMzkxOUZDQjVEIiBQcmV2aW91c1ZhbHVlPSJmYWxzZSIgLz4=</XmlDocument>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x010017AD3FB874451C4F8DD58309771F3D5800A446B1790750624282F9DFE39EF75A09" Name="Audit Exception" Group="EDRMS Portfolio DB" Description="Create a new list item." ReadOnly="TRUE" Version="1"          <Folder TargetName="Audit Exception"/>            <FieldRefs            <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" Hidden="FALSE" ShowInNewForm="TRUE" ShowInEditForm="TRUE" ReadOnly="FALSE" PITarget="" PrimaryPITarget="" PIAttribute="" PrimaryPIAttribute="" Aggregation="" Node=""/>            </FieldRefs>            <XmlDocuments            <XmlDocument NamespaceURI="Microsoft.SharePoint.Taxonomy.ContentTypeSync">PFNoYXJlZENvbnRlbnRUeXBlIHhtbG5zPSJNaWNyb3NvZnQuU2hhcmVQb2ludC5UYXhvbm9teS5Db250ZW50VHlwZVN5bmMiIFNvdXJjZUlkPSJkYWFhNjk3Ny02YzQwLTRmYjgtOGIwOC04NDk3YjcwN2JlMDgiIENvbnRlbnRUeXBlSWQ9IjB4MDEwMDE3QUQzRkI4NzQ0NTFDNEY4REQ1ODMwOTc3MUYzRDU4IiBQcmV2aW91c1ZhbHVlPSJmYWxzZSIgLz4=</XmlDocument>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x01001845946689C1004B9290F0B4BEBCB6E20072925977D27F5E42AC4CB9872A95396F" Name="EDRMS Contacts" Group="EDRMS Portfolio DB" Description="Create a new list item." ReadOnly="TRUE" Version="1"          <Folder TargetName="EDRMS Contacts"/>            <FieldRefs            <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" Hidden="FALSE" ShowInNewForm="TRUE" ShowInEditForm="TRUE" ReadOnly="FALSE" PITarget="" PrimaryPITarget="" PIAttribute="" PrimaryPIAttribute="" Aggregation="" Node=""/>            </FieldRefs>            <XmlDocuments            <XmlDocument NamespaceURI="Microsoft.SharePoint.Taxonomy.ContentTypeSync">PFNoYXJlZENvbnRlbnRUeXBlIHhtbG5zPSJNaWNyb3NvZnQuU2hhcmVQb2ludC5UYXhvbm9teS5Db250ZW50VHlwZVN5bmMiIFNvdXJjZUlkPSJkYWFhNjk3Ny02YzQwLTRmYjgtOGIwOC04NDk3YjcwN2JlMDgiIENvbnRlbnRUeXBlSWQ9IjB4MDEwMDE4NDU5NDY2ODlDMTAwNEI5MjkwRjBCNEJFQkNCNkUyIiBQcmV2aW91c1ZhbHVlPSJmYWxzZSIgLz4=</XmlDocument>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>          <ContentType ID="0x010030AD093A85649846B59710F4D05342F80049E722FACD80644EBE748BF114D659F4" Name="EDRMS Item" Group="EDRMS Portfolio DB" Description="Create a new list item." ReadOnly="TRUE" Version="1"          <Folder TargetName="EDRMS Item"/>            <FieldRefs            <FieldRef ID="{c042a256-787d-4a6f-8a8a-cf6ab767f12d}" Name="ContentType"/>              <FieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" Required="FALSE" Hidden="FALSE" ShowInNewForm="TRUE" ShowInEditForm="TRUE" ReadOnly="FALSE" PITarget="" PrimaryPITarget="" PIAttribute="" PrimaryPIAttribute="" Aggregation="" Node=""/>            </FieldRefs>            <XmlDocuments            <XmlDocument NamespaceURI="Microsoft.SharePoint.Taxonomy.ContentTypeSync">PFNoYXJlZENvbnRlbnRUeXBlIHhtbG5zPSJNaWNyb3NvZnQuU2hhcmVQb2ludC5UYXhvbm9teS5Db250ZW50VHlwZVN5bmMiIFNvdXJjZUlkPSJkYWFhNjk3Ny02YzQwLTRmYjgtOGIwOC04NDk3YjcwN2JlMDgiIENvbnRlbnRUeXBlSWQ9IjB4MDEwMDMwQUQwOTNBODU2NDk4NDZCNTk3MTBGNEQwNTM0MkY4IiBQcmV2aW91c1ZhbHVlPSJmYWxzZSIgLz4=</XmlDocument>              <XmlDocument NamespaceURI="http://bit.ly/2evVxCB">PEZvcm1UZW1wbGF0ZXMgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vc2hhcmVwb2ludC92My9jb250ZW50dHlwZS9mb3JtcyI+PERpc3BsYXk+TGlzdEZvcm08L0Rpc3BsYXk+PEVkaXQ+TGlzdEZvcm08L0VkaXQ+PE5ldz5MaXN0Rm9ybTwvTmV3PjwvRm9ybVRlbXBsYXRlcz4=</XmlDocument>            </XmlDocuments>          </ContentType>        </ContentTypes>        <Forms        <Form Type="DisplayForm" Name="{E6BC58D2-03C9-443E-A9E9-1457A0EE9170}" Url="Lists/Test1WithMultipleContentTypes/DispForm.aspx" Default="TRUE" FormID="0"/>          <Form Type="EditForm" Name="{88B97F4D-A183-4D27-8360-37CB895D7412}" Url="Lists/Test1WithMultipleContentTypes/EditForm.aspx" Default="TRUE" FormID="0"/>          <Form Type="NewForm" Name="{4373EC06-A519-496D-8712-E116E0E8D3BE}" Url="Lists/Test1WithMultipleContentTypes/NewForm.aspx" Default="TRUE" FormID="0"/>        </Forms>        <Security        <ReadSecurity>1</ReadSecurity>          <WriteSecurity>1</WriteSecurity>          <SchemaSecurity>0</SchemaSecurity>        </Security>      </MetaData>    </List>  </Lists> 

from reshmeeauckloo http://bit.ly/2evVXJ0

Reshmee Auckloo
Reshmee Auckloo – Reshmee is a certified Microsoft professional and has been involved in delivering solutions across a wide variety of industry sectors in a range of assignments from SSRS to Microsoft SharePoint, Project Server development, CRM Dynamics and .Net including business requirements gathering and software quality assurance.

This article has been cross posted from reshmeeauckloo.wordpress.com (original article)

UAT – Why?

October 18, 2016 Leave a comment

I’ve been working on projects over the years and approaches to User Acceptance Testing (UAT) has varied massively. It’s made me think, why do we UAT? 

You’ve purchased a product or selected some well respected partners to help you implement your system so it doesn’t really neeed testing right? After all we don’t test Word or Excel when we upgrade do we, we just assume it works. 

Well in some cases this is true, but UAT pays a really large part in making sure your system isn’t just bug free but your processes and training plans are correct. Too many people spend their time UAT’ing a system from a technical perspective, which is vital, but in reality it’s more important to UAT your new business processes too. How do you know they will work, how can you ensure your training plans will deliver what you want them too?

Your system could be perfect but unusable, it could have all the features you thought you needed but be too complex to use. 

So next time you tee up your team of UAT testers be sure to focus on more than just tying to break the system. 

If this post has prompted any thoughts please do get in touch. 

from Consulting PPM http://bit.ly/2eeXt2X

Sam Graber
Sam Graber – I am an ambitious, successful and driven PPM and Change Management consultant with a client focused approach to delivering complex projects.

I have a track record of delivering exceptional quality solutions to clients using ProjectOnline, SharePoint and Office365. I have a passion for both the technology but also the change management elements of these projects to ensure that they are a success.

This article has been cross posted from consultingppm.com (original article)

Last logon time for the #ProjectOnline PWA users report #PPM #PowerBI #PowerQuery #Office365 #SharePoint #BI part 2

October 12, 2016 Leave a comment
Paul Mather
I am a Project Server and SharePoint consultant but my main focus currently is around Project Server.
I have been working with Project Server for nearly five years since 2007 for a Microsoft Gold Certified Partner in the UK, I have also been awared with the Microsoft Community Contributor Award 2011.
I am also a certified Prince2 Practitioner.

This article has been cross posted from pwmather.wordpress.com (original article)

This is last post in this mini series for the last connect / last logon feature for Project Online, Microsoft’s PPM tool. In this post we will create the Power BI report. For those that missed the previous post see the links below, check these out first:

Firstly, capturing the last logon time: http://bit.ly/2dj9PpV

Secondly, part 1 of the report creation – setting up the dataset queries in preparation for this post: http://bit.ly/2e0BDNU

If you are continuing where we left off after part 1, open the saved Power BI report:

image

We have the blank canvas ready to add the data and visualisations. In the blog post we I cover creating the report below, Power BI has many options which we don’t cover here but all are intuitive so have a play!

Page 1 – PWAUsage:

image

Page 2 – PWAUserLastConnectDate:

image

Before we start, the report example I created uses a custom visual from the gallery for the Browser filter, this can be downloaded here: http://bit.ly/2dJJsuP or alternatively just use the default slicer visual like the one used for the Username filter.

Once the custom visual is imported (or choose to use the default slicer), expand the PWAUage dataset, this is the one we will use for this first page:

image

The first visual we will add is the bottom left pie chart for “Logon by Browser”, from the PWAUsage dataset select Browser and Id:

image

It defaults to the Table visualisation, change this to the Pie chart in the Visualizations pane:

image

Drag Id from Details into Values:

image

Drag the visual to the bottom left corner of the page. In the Visualizations settings pane, click the roller to access the settings, here you can change the settings as needed, for example I turned on the Legend and update the Title:

image

The next visualisation to add is the PWA Usage Details table, click anywhere on the page so no visualisations are selected then from the PWAUsage dataset select Browser, Logon Data and Username:

image

By default, the Logon Date will be broken down into the date hierarchy, change this in the visualisation settings, select Logon Date:

image

Move the visualisation to the bottom center of the page and click the Logon Date column to change the order by so the latest date is in the first row:

image

With the visualisation selected, click the roller in the visualisations settings pane to update the settings as needed. I updated the title, the grid settings, the text size for the data and changed the column order:

image

The next visualisation to add is the Hits Per User bar chart, click anywhere on the page so no visualisations are selected then from the PWAUsage dataset select Browser, Id and Username:

image

Change the visualisations from a table to a Stacked bar chart and move Id to Values and Browser to the Legend:

image

Move the visualisation to the center of the page and extend it to the right hand side of the page by dragging it:

image

The same process as before, update the visualisation settings as required by clicking the roller. I updated title, increased the size of the legend text and turned on data labels.

The next visualisation to add is the Last Refresh table, click anywhere on the page so no visualisations are selected then from the PWAUsage dataset select Last Refreshed, resize the visualisation and move it to the top right hand corner of the page:

image

Update the visualisation settings as required by clicking the roller. I added a title and increased the size of the data text:

image

Add a text box to the top of the page and enter the report title, change the settings as required:

image

The next visualisations to add are the cards showing the totals, the process is the same for all so I will only cover adding one in detail. Click anywhere on the page so no visualisations are selected then from the PWAUsage dataset select Id, change the visual from a table to a Card:

image

Move the visual to the bottom right corner of the page, resize it and update the settings as required, I added a title, removed the category label and increased the size of the data label:

image

Add 5 more cards, select the one already created then copy and paste it 5 times then place them in the correct location on the page as required:

image

The 5 additional visualisations need different settings applied as these will show the hits per Browser. To update them, select one so that the settings are visible. Drag Browser from the PWAUsage dataset to the Visual level filters setting:

image

Select IE:

image

Now update the title from Total Hits to Total IE Hits:

image

Repeat this for the other 4 cards but set one for Chrome, Edge, Firefox and Other so you end up with this:

image

The final visualisations to add to this page are the filters, with no visualisation selected, select Username from the PWAUsage dataset, change this from a table to a slicer and change the settings as required. I added a title, turned off the header row, turned of Select all and turned off single select:

image

Now repeat this but select Browser and change it to the Chiclet Slicer:

image

Change the settings as required, I added a title, turned off the header row and set it to have 2 columns:

 image

That is the first page set up, rename the page and it is completed:

image

So here you can see some useful stats around the PWA usage.

Click the + next to the first page to add a new page and rename this to PWAUserLastConnectDate:

image

Now expand the PWALastLogon dataset and select both fields, change the column order so Resource name is first then change the row order so the Resource Name is alphabetical:

image

Change the settings as needed, I added a title, turned off the horizontal grid line and increased the text size. Now add a text box to the page to add the report title:

image

On this page you can quickly see who has logged in and when plus who has never logged in since adding the JavaScript to the Project Web App homepage – unless of course they always by pass the PWA homepage or the pages where you added the JavaScript!

There are lots of options available, have a play and build great dashboards! If you used the Chiclet slicer here is a cool option to add:

image

It supports Image URLs, for this I updated the PWAUsage dataset and added a new column called Browser URL:

image

As you can see this is an if statement, based on the Browser a certain URL is set to display the correct logo for each browser, either save the images to a site you have access to or use images from the internet. Then on the report designer I set the Browser URL to be an Image URL on the Modelling tab:

image

Then update the Chiclet Slicer settings:

image

Once completed save and publish your report to Power BI or you can just use it from Power BI Desktop if needed.

Power BI offers great report visualisations, this is just a simple example, see what you can come up with!

Categories: Paul Mather, Work Tags:

#ProjectServer and #SharePoint 2013 / 2016 October 2016 Cumulative Update #PS2013 #SP2013 #PS2016 #SP2016 #MSProject

October 12, 2016 Leave a comment
Paul Mather
I am a Project Server and SharePoint consultant but my main focus currently is around Project Server.
I have been working with Project Server for nearly five years since 2007 for a Microsoft Gold Certified Partner in the UK, I have also been awared with the Microsoft Community Contributor Award 2011.
I am also a certified Prince2 Practitioner.

This article has been cross posted from pwmather.wordpress.com (original article)

The Office 2016 October 2016 updates and cumulative updates are now available, please see the links below:

http://bit.ly/2dL3HKL

Project 2016 October 2016 update:
http://bit.ly/2e0Bf35

SharePoint Server 2016 October 2016 update – Project Server 2016 fixes:
Nothing for Project Server 2016 at the moment

The Office 2013 October 2016 updates and cumulative updates are now available, please see the links below:

http://bit.ly/2dL3HKL

Project Server 2013 October 2016 CU Server Roll up package:
http://bit.ly/2dL3fMV

Project Server 2013 October 2016 update:
http://bit.ly/2cUQoH9

Project 2013 October 2016 update:
http://bit.ly/2dL3vLQ

Also worth noting, if you haven’t done so already, install Service Pack 1 http://bit.ly/1uorn2C first if installing the October 2016 CU.

As always, fully test these updates on a replica test environment before deploying to production.

Categories: Paul Mather, Work Tags:

Last logon time for the #ProjectOnline PWA users report #PPM #PowerBI #PowerQuery #Office365 #SharePoint #BI part 1

October 10, 2016 Leave a comment
Paul Mather
I am a Project Server and SharePoint consultant but my main focus currently is around Project Server.
I have been working with Project Server for nearly five years since 2007 for a Microsoft Gold Certified Partner in the UK, I have also been awared with the Microsoft Community Contributor Award 2011.
I am also a certified Prince2 Practitioner.

This article has been cross posted from pwmather.wordpress.com (original article)

Following on from my last post where I published an option / workaround for the last connected feature that has been removed from Project Online, this post will look at generating a Power BI report for the usage data that is captured. For those of you that missed the last post, see link below before continuing:

http://bit.ly/2dj9PpV

Now that we have some data captured in the list we can generate a report, for this example report I have used Power BI and Power Query but you could do something similar in Excel Power View with Power Query or even JavaScript / HTML if you really wanted to. In this post I will walkthrough all the steps needed to start creating the example report seen below:

Page 1 (PWAUsage):

image

Page 2 (PWAUserLastConnect):

image

So firstly we need to two URLs for the data used to generate this report, the first one is from the PWAUsageList, this assumes the list is called PWAUsageList, update the URL as needed:

<PWA URL>/_api/Web/Lists/GetByTitle('PWAUsageList')/Items()?$Select=WhoString,LogonDate,Browser,Id

The next one is from the Project OData Reporting API to return the active users that have an account:

<PWA URL>/_api/ProjectData/Resources()?$Filter=ResourceIsActive eq true and ResourceNTAccount ne null

Now launch Power Bi Desktop and click Get Data > OData Feed:

image

Enter the URL for the PWAUsageList as seen in the example above and click OK then click the Edit button on the preview window and the Query Editor window will open. Change the Query name from Query1 to something meaningful such as PWAUsage. Now change the LogonDate Column to Date rather than Date/TIme by right clicking on the column heading > Change Type > Date:

image

Also rename any columns as needed and remove the duplicate ID column, I renamed LogonDate to Logon Date and WhoString to Username:

image

Now we will add a custom column to this query to get the “Last Refresh” date. To do this click the “Add Column” ribbon then “Add Custom Column” and complete the details:

image 

Click OK and the dataset will update:

image

Now we need to add the Resources data source, in the query editor click Home > New Source > OData Feed and enter the Resources OData URL as seen in the example above and click OK then click OK on the data preview window. Now click Choose Columns, the only column needed is ResourceName:

image

Click OK. The ResourceName column was then renamed and the Query renamed too:

image

Now we need to create a third query table that contains data from the PWAUsage query and the ActivePWAUsers query to show the last logon time for each PWA User. We could keep just the two queries and merge the two without creating a third table but that is up to you, you would just chose the Merge Queries option if you wanted to have just two queries. For this post I will create a third dataset query. In the query editor click the Merge Queries > Merge Queries as New option:

image

ActivePWAUsers in the top table and PWAUsage is the bottom table, select Resource Name in the top section and Username in the bottom section. The default join kind is fine for this merge:

image

Click OK. Update the query name to something meaningful such as PWALastLogon.

image

Click the Expand button next to the NewColumn:

image

Change the radio button to Aggregate and then click the dropdown next to Logon Date and select Maximum, don’t select anything else:

image

Uncheck the option “Use original column name as prefix” then click OK:

image

Rename the new column to remove the “Max of” and call the column “Latest Logon Date”

We now have the three queries ready to load into the report:

image

Now click Close & Apply > Close & Apply from the Home ribbon menu and the report will show your queries available:

image

The first thing to do will be to ensure the relationships between the three datasets is correct. Click the relationships button from the left navigation and update as needed:

image

All I had to change was to join PWAUsage to ActivePWAUsers by dragging Username from PWAUsage to Resource Name in ActivePWAUsers.

Now click back to the report view and we are ready to design the report. Now we have the datasets ready, in part 2 we will look at creating and designing the report, for now ensure you save the Power BI report for later when we look at designing the report.

Categories: Paul Mather, Work Tags:

#ProjectServer / #ProjectOnline error opening Enterprise Resource Pool #MSProject #Office365 #PPM

October 10, 2016 Leave a comment
Paul Mather
I am a Project Server and SharePoint consultant but my main focus currently is around Project Server.
I have been working with Project Server for nearly five years since 2007 for a Microsoft Gold Certified Partner in the UK, I have also been awared with the Microsoft Community Contributor Award 2011.
I am also a certified Prince2 Practitioner.

This article has been cross posted from pwmather.wordpress.com (original article)

A quick post to highlight an issue and workaround for opening the Enterprise Resource Pool in Project Pro using the Open button on the Resources tab in the Resource Center:

image

If you try and click the Open button with no resources selected in the grid you will get the error below:

“This action couldn’t be performed because Office doesn’t recognize the command it was given” :

image

Select at least one resource in the grid then this command will work fine.

Categories: Paul Mather, Work Tags:
Design a site like this with WordPress.com
Get started