jensxx1975
Goto Top

XML-Datein per Script editieren

Hallo in die Runde!

Ich benötige ein Script um eine XML-Datei zu editieren.

Der Wert einer Variablen müsste ausgelesen werden und den Wert einer anderen Variablen ersetzen, und dann wieder von vorn. Pro xml-Datei sind das teilweise mehrere hundert Zeilen die geändert werden müssen.

Konkret:

Vorher:
<Component Class="Quantity" ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ID="r_180411_135751417_005044" PartIDKeys="SignatureName SheetName" ProductType="Text" Status="Unavailable"><Component SignatureName="SIG002"><Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="Innenteil_1" Status="Unavailable"/></Component><Component SignatureName="SIG003"><Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="Innenteil_2" Status="Unavailable"/></Component><Component SignatureName="SIG004"><Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="Innenteil_3" Status="Unavailable"/></Component>  
usw.

Nachher:
<Component Class="Quantity" ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ID="r_180411_135751417_005044" PartIDKeys="SignatureName SheetName" ProductType="Text" Status="Unavailable">**<Component SignatureName="SIG002">**<Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" **SheetName="SIG002"** Status="Unavailable"/>**</Component><Component SignatureName="SIG003">**<Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" **SheetName="SIG003"** Status="Unavailable"/>**</Component><Component SignatureName="SIG004">**<Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" **SheetName="SIG004"** Status="Unavailable"/></Component>  
usw.

Ich bin leider absoluter Anfänger was scripten angeht und brauche Hilfe.

Vielen Dank vorab!

Gruß JENS

Content-Key: 390503

Url: https://administrator.de/contentid/390503

Printed on: April 19, 2024 at 20:04 o'clock

Member: SeaStorm
SeaStorm Oct 24, 2018 updated at 13:36:52 (UTC)
Goto Top
Hi

was hast du denn bisher?

Und: Soll das als Script immer wieder laufen, oder ist das ne einmalige Sache?
Member: erikro
erikro Oct 24, 2018 at 13:47:51 (UTC)
Goto Top
Member: Jensxx1975
Jensxx1975 Oct 24, 2018 at 13:58:46 (UTC)
Goto Top
Hallo!

Stehe noch am ganz Anfang. Das Script soll mehr weniger ständig laufen (5 oder 10 Minuten Intervall), das würde ich dann über die Aufgabenplanung am Server regeln.

Gruß JENS
Member: SeaStorm
SeaStorm Oct 24, 2018 updated at 14:04:51 (UTC)
Goto Top
hi

dann sieh dir eriko's ersten Link an. Mit Powershell sollte sich das recht leicht umsetzen lassen.
Da dein Bsp schon eine unvollständiges XML Objekt ist, können wir hier nicht wissen, mit was deine Struktur beginnt und was es da für besonderheiten gibt.
Aber anhand des Beispiels in dem MS Link sollte sich das ganze machen lassen.
Member: erikro
erikro Oct 24, 2018 at 14:07:54 (UTC)
Goto Top
Moin,

Zitat von @SeaStorm:

hi

dann sieh dir eriko's ersten Link an. Mit Powershell sollte sich das recht leicht umsetzen lassen.
Da dein Bsp schon eine unvollständiges XML Objekt ist, können wir hier nicht wissen, mit was deine Struktur beginnt und was es da für besonderheiten gibt.
Aber anhand des Beispiels in dem MS Link sollte sich das ganze machen lassen.

Das ist wirklich keine Hexenkunst, wenn man ein wenig versteht, wie XML funktioniert. Da ist die PS wirklich stark. Fang also einfach mal an. Wenn es Probleme gibt, dann kannst Du Dich gerne wieder melden.

Liebe Grüße

Erik
Member: Jensxx1975
Jensxx1975 Oct 24, 2018 at 14:52:44 (UTC)
Goto Top
Ja, ich lese mich erstmal ein, baue was zusammen und melde mich dann sicher wieder.

Gruß JENS
Member: Jensxx1975
Jensxx1975 Oct 26, 2018 at 12:55:33 (UTC)
Goto Top
Hallo!

Da bin ich schon wieder, stehe vor der ersten Hürde.
Ich will zuerst die Variable "SignatureName" auslesen und habe dazu folgendes Script erstellt:

$quellpfad = "C:\Users\Admin\Desktop\"

$allxml = get-childitem $quellpfad "*.jdf" -Recurse

$SignatureName = @()

foreach ($SignatureNameObjekt in $allxml){
[xml]$xml = Get-Content $SignatureNameObjekt.FullName
$SignatureName += (Select-Xml -Xml $xml -XPath '//JDF').Node.Component.Component.SignatureName
}

Irgendwas stimmt aber nicht mit meinem Pfad, $SignatureName.Count wirft nur den Wert "1" aus.

XML-Struktur anbei, hat jemand einen Tipp?

Danke!

Gruß JENS
xml
Member: erikro
erikro Oct 26, 2018 at 13:34:06 (UTC)
Goto Top
Moin,

der Pfad stimmt nicht.

$SignatureName += (Select-Xml -Xml $xml -XPath '//JDF').Node.RessourcePool.Component.Component.SignatureName  

hth

Erik
Member: Jensxx1975
Jensxx1975 Oct 26, 2018 at 13:52:07 (UTC)
Goto Top
Danke!

Wenn ich die $SignatureName auslese bzw. als xml ausgebe bekomme ich das hier:

<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04">
<Nil />
</Objs>

Verständnisfrage: Müsste mir obiges Script nicht eigentlich die Werte (z.B. "SIG002") des Attributs "SignatureName" auslesen?


Gruß JENS
Member: erikro
erikro Oct 26, 2018 at 13:59:41 (UTC)
Goto Top
Wie gibst Du das aus? Mit welchem Befehl?
Member: Jensxx1975
Jensxx1975 Oct 26, 2018 at 14:12:01 (UTC)
Goto Top
$SignatureName | Export-Clixml c:/test.xml
Member: erikro
erikro Oct 26, 2018 at 14:21:24 (UTC)
Goto Top
Funktioniert bei mir. Da kommt das raus:

<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"> 
  <S>blah</S>
  <S>blah</S>
  <S>blah</S>
  <S>blah</S>
</Objs>

Das, was bei Dir rauskommt, ist ein Null-Ergebnis. Das Array ist also leer. Warum auch immer.
Member: erikro
erikro Oct 26, 2018 at 14:23:22 (UTC)
Goto Top
Stell doch nochmal alles rein. Und bitte in -Tags einschließen. Das Symbol links über der Kamera.
Member: Jensxx1975
Jensxx1975 Oct 26, 2018 at 20:35:34 (UTC)
Goto Top
Was meinst Du mit alles? Das gesamte Script oder das gesamte XML?

Gruß JENS
Member: erikro
erikro Oct 29, 2018 at 07:02:23 (UTC)
Goto Top
Guten Morgen,

Das Skript.

Liebe Grüße

Erik
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 08:28:02 (UTC)
Goto Top
Guten Morgen,

$quellpfad = "C:\Users\Admin\Desktop\"  

$allxml = get-childitem $quellpfad "*.jdf" -Recurse  

$SignatureName = @()

foreach ($SignatureNameObjekt in $allxml){
[xml]$xml = Get-Content $SignatureNameObjekt.FullName
$SignatureName += (Select-Xml -Xml $xml -XPath '//JDF').Node.RessourcePool.Component.Component.SignatureName  
}

Gruß JENS
Member: erikro
erikro Oct 29, 2018 at 08:45:17 (UTC)
Goto Top
Moin,

auf so einen Fehler starrt man hundert Jahre und sieht ihn nicht. face-wink So wie bei address und adress. Resource schreibt sich im Englischen nur mit einem S. face-wink Mein Fehler!

$SignatureName += (Select-Xml -Xml $xml -XPath '//JDF').Node.ResourcePool.Component.Component.SignatureName   

Nun müsste es gehen.

Liebe Grüße

Erik
Mitglied: 137443
137443 Oct 29, 2018 updated at 09:23:54 (UTC)
Goto Top
Hi.
ich benötige ein Script um eine XML-Datei zu editieren.
Machst du so:
# Quellpfadangabe
$quellpfad = "C:\Users\Admin\Desktop"   
# Alle *.rdf-Dateien rekursiv im Quellordner durchgehen
dir -LiteralPath $quellpfad -Filter *.jdf -Recurse | ?{!$_.PSIsContainer} | %{
    # Datei als XML-Object laden
    $xml = [xml](gc $_.Fullname)
    # Unter-"Component" Objekte mit einer Foreach-Schleife durchlaufen und den SheetNamen vom Parent-Objekt an das Kind-Objekt übergeben 
    $xml.JDF.ResourcePool.Component.Component | %{$_.Component.SheetName = $_.SignatureName}
     # Datei wieder unter dem selben Namen speichern
    $xml.Save($_.FullName)
}
Obwohl ich sowas einfaches gleich mit XSLT statt einem Script machen würde, genau dafür wurde XSLT ja genau erschaffen!

Beste Grüße
l.
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 09:52:44 (UTC)
Goto Top
Stimmt! Mache ich so face-smile

D A N K E !


Gruß JENS
Mitglied: 137443
137443 Oct 29, 2018 updated at 10:07:43 (UTC)
Goto Top
Das XSLT für das Gewünschte würde dann so aussehen:

<?xml version="1.0" encoding="UTF-8"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> 
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
 <xsl:template match="@*|node()"> 
   <xsl:copy>
         <xsl:apply-templates select="@*|node()"/> 
   </xsl:copy>
 </xsl:template>
 <xsl:template match="/JDF/ResourcePool/Component/Component/Component"> 
    <xsl:copy>
       <xsl:apply-templates select="@*|node()"/> 
       <xsl:attribute name="SheetName"> 
          <xsl:value-of select="../@SignatureName" /> 
       </xsl:attribute>
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>
Skript also nicht wirklich nötig wenn man das durch den XML-Transformer seiner Wahl jagt face-wink.

Gruß l.
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 10:20:02 (UTC)
Goto Top
Das XSLT müsste ich dann aber direkt in das XML einbauen? Auf den Schreibvorgang des XML habe ich leider keinen Einfluss...

Noch eine dumme Frage: Der Entwickler war so "freundlich" in einem anderen Container das zu ersetzende Attribut VOR das Ersetzende zu stellen. Gibt es einen Weg "zurückzuspringen"?

<MediaRef rRef="r_180411_135751479_005066">  
  <Part SheetName="Umschlag" SignatureName="SIG001" />  
</MediaRef>
Mitglied: 137443
137443 Oct 29, 2018 updated at 10:33:48 (UTC)
Goto Top
Zitat von @Jensxx1975:

Das XSLT müsste ich dann aber direkt in das XML einbauen? Auf den Schreibvorgang des XML habe ich leider keinen Einfluss...
Nein, kann man beides auch separat nutzen.
Noch eine dumme Frage: Der Entwickler war so "freundlich" in einem anderen Container das zu ersetzende Attribut VOR das Ersetzende zu stellen. Gibt es einen Weg "zurückzuspringen"?
Ja, Stichwort ParentNode Property
> <MediaRef rRef="r_180411_135751479_005066">  
>   <Part SheetName="Umschlag" SignatureName="SIG001" />  
> </MediaRef>
> 
? Kontext und Position außer meiner Kenntnis face-sad.

Poste doch das komplette XML, bitte.
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 10:48:16 (UTC)
Goto Top
Das ist aber lang...

<?xml version="1.0" encoding="UTF-8"?>  
<JDF
  CommentURL="file://192.168.0.1/"  
  DescriptiveName="Testjob"  
  HDM:Auth="1000E8AE94EEEFED5473F5B6A08F1ECB9808"  
  ICSVersions="Base_L2-1.3 MIS_L2-1.3" ID="n_181029_114121415_001884"  
  JobID="18-12006" JobPartID="18-12006" MaxVersion="1.3"  
  RelatedJobID="18-11017" Status="Waiting" Type="Product" Version="1.3"  
  xmlns="http://www.CIP4.org/JDFSchema_1_1"  
  xmlns:HDM="test"  
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
      xsi:type="Product"><AuditPool><Created AgentName="test"  
      AgentVersion="7.1000 (Creator:13.00.309.762)"  
      Author="Test" ID="a_181029_114121415_001886"  
    TimeStamp="2018-10-29T11:41:21+01:00"/></AuditPool><!--Generated by the CIP4 Java open source JDF Library version : CIP4 JDF Writer Java 1.4a BLD 74--><Comment  
    AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
    ID="c_181029_114121447_001888"  
      Name="JobDescription">Testjob</Comment><ResourcePool><CustomerInfo  
      Class="Parameter" CustomerID="52082" CustomerJobName="Testjob"  
      DescriptiveName="Test +Test + Test GmbH &amp; Co. KG"  
      ID="r_181029_114121447_001889" PartUsage="Implicit"  
        Status="Available"><ContactRef  
        rRef="r_181029_114121447_001890"/><ContactRef  
        rRef="r_181029_114121462_001893"/><ContactRef  
        rRef="r_181029_114121462_001897"/><ContactRef  
      rRef="r_181029_114121462_001898"/></CustomerInfo><Contact  
      Class="Parameter" ContactTypes="Customer"  
      DescriptiveName="Test +Test + Test GmbH &amp; Co. KG"  
      ID="r_181029_114121447_001890" Status="Available"><CompanyRef  
        rRef="r_181029_114121447_001891"/><AddressRef  
      rRef="r_181029_114121447_001892"/></Contact><Company  
      Class="Parameter"  
      DescriptiveName="Test +Test + Test GmbH &amp; Co. KG"  
      ID="r_181029_114121447_001891"  
      OrganizationName="Test + Test + Test GmbH &amp; Co. KG"  
      Status="Available"/><Address City="Test-City" Class="Parameter"  
      Country="Deutschland" CountryCode="DE"  
      ID="r_181029_114121447_001892" PostalCode="9999999"  
      Status="Available" Street="Teststraße 1111111"/><Contact  
      Class="Parameter" ContactTypes="Administrator Approver"  
      DescriptiveName="Herr Test-Test" ID="r_181029_114121462_001893"  
        Status="Available"><PersonRef  
        rRef="r_181029_114121462_001894"/><AddressRef  
      rRef="r_181029_114121462_001895"/></Contact><Person  
      AdditionalNames="" Class="Parameter"  
      DescriptiveName="Herr Test-Test" FamilyName="Test-Test"  
      FirstName="" ID="r_181029_114121462_001894" JobTitle=""  
      NamePrefix="Herr" NameSuffix="Herr Test-Test"  
        Status="Available"><AddressRef  
      rRef="r_181029_114121462_001896"/></Person><Address  
      City="Test-City" Class="Parameter" Country="Deutschland"  
      CountryCode="DE" ID="r_181029_114121462_001895"  
      PostalCode="9999999" Status="Available"  
      Street="Teststraße 1111111"/><Address City="Test-City"  
      Class="Parameter" Country="Deutschland" CountryCode="DE"  
      ID="r_181029_114121462_001896" PostalCode="9999999"  
      Status="Available" Street="Teststraße 1111111"/><Contact  
      Class="Parameter" ContactTypes="Delivery"  
      DescriptiveName="Test +Test + Test GmbH &amp; Co. KG"  
      ID="r_181029_114121462_001897" Status="Available"><CompanyRef  
        rRef="r_181029_114121447_001891"/><AddressRef  
      rRef="r_181029_114121447_001892"/></Contact><Contact  
      Class="Parameter" ContactTypes="Accounting"  
      DescriptiveName="Test +Test + Test GmbH &amp; Co. KG"  
      ID="r_181029_114121462_001898" Status="Available"><CompanyRef  
        rRef="r_181029_114121447_001891"/><AddressRef  
      rRef="r_181029_114121447_001892"/></Contact><DeliveryIntent  
      Class="Intent" ID="r_181029_114121462_001899"  
          Status="Available"><DropIntent><DropItemIntent  
            Amount="6000"><ComponentRef  
      rRef="r_181029_114121462_001900"/></DropItemIntent></DropIntent></DeliveryIntent><Component  
      Class="Quantity" ComponentType="FinalProduct"  
      DescriptiveName="Testjob"  
      HDM:HDMProductType="Drahtgeheftete Broschüren"  
      ID="r_181029_114121462_001900" ProductType="Brochure"  
      Status="Unavailable"/><NodeInfo Class="Parameter"  
      ID="r_181029_114121462_001901" JobPriority="30"  
      PartUsage="Implicit" Status="Available"><Employee  
        DescriptiveName="Test Test" Roles="CSR"><Person  
          DescriptiveName="Test Test" FamilyName="Test"  
            FirstName="Test"><ComChannel ChannelType="Phone"  
            Locator="05662-9487-217"/><ComChannel ChannelType="Email"  
            Locator="j.Test@Test.de"/><ComChannel  
            ChannelType="Fax"  
      Locator="05662-9487-287"/></Person></Employee></NodeInfo><ColorPool  
      Class="Parameter" ID="r_181029_114121462_001902"  
        Status="Available"><Color CMYK="0 0 0 1" ColorBook="Default"  
        Lab="16 0 0" Name="Black"/><Color CMYK="0 1 0 0"  
        ColorBook="Default" Lab="46 72 -5" Name="Magenta"/><Color  
        CMYK="0 0 1 0" ColorBook="Default" Lab="88 -6 90"  
        Name="Yellow"/><Color CMYK="1 0 0 0" ColorBook="Default"  
        Lab="54 -36 -49" Name="Cyan"/></ColorPool><BindingIntent  
      Class="Intent" ID="r_181029_114121462_001903"  
        Status="Available"><BindingType Actual="SaddleStitch"  
        DataType="EnumerationSpan"  
      Preferred="SaddleStitch"/></BindingIntent><Component  
      Class="Quantity" ComponentType="PartialProduct"  
      HDM:P4SheetTypeNr="1" ID="r_181029_114121462_001906"  
      PartIDKeys="SignatureName SheetName" ProductType="Cover"  
        Status="Unavailable"><Component  
          SignatureName="SIG001"><Component  
      SheetName="Bg_0"/></Component></Component><Component  
      Class="Quantity" ComponentType="PartialProduct"  
      HDM:P4SheetTypeNr="0" ID="r_181029_114121478_001912"  
      PartIDKeys="SignatureName SheetName" ProductType="Text"  
        Status="Unavailable"><Component  
          SignatureName="SIG002"><Component  
          ComponentType="PartialProduct" HDM:P4SheetTypeNr="0"  
          ProductType="Text" SheetName="Bg_1_1"  
        Status="Unavailable"/></Component><Component  
          SignatureName="SIG003"><Component  
          ComponentType="PartialProduct" HDM:P4SheetTypeNr="0"  
          ProductType="Text" SheetName="Bg_1_2"  
        Status="Unavailable"/></Component><Component  
          SignatureName="SIG004"><Component  
          ComponentType="PartialProduct" HDM:P4SheetTypeNr="0"  
          ProductType="Text" SheetName="Bg_1_3"  
        Status="Unavailable"/></Component><Component  
          SignatureName="SIG005"><Component  
          ComponentType="PartialProduct" HDM:P4SheetTypeNr="0"  
          ProductType="Text" SheetName="Bg_1_4"  
        Status="Unavailable"/></Component><Component  
          SignatureName="SIG006"><Component  
          ComponentType="PartialProduct" HDM:P4SheetTypeNr="0"  
          ProductType="Text" SheetName="Bg_2_1"  
        Status="Unavailable"/></Component><Component  
          SignatureName="SIG007"><Component  
          ComponentType="PartialProduct" HDM:P4SheetTypeNr="0"  
          ProductType="Text" SheetName="Bg_2_2"  
      Status="Unavailable"/></Component></Component><Media  
      Class="Consumable" HDM:RAWMEDIA="false"  
      ID="r_181029_114121525_001934" MediaType="Paper"  
      PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
        Status="Unavailable"><Media SignatureName="SIG001"><Media  
          Brand="Maxigloss" DescriptiveName="Maxigloss"  
          Dimension="2494.48818898 1785.82677165" Grade="1"  
          GrainDirection="ShortEdge"  
          HDM:RawDimension="2494.48818898 1785.82677165"  
          ProductID="202-250-088063-01-5U" SheetName="Bg_0"  
          Thickness="200" Weight="250"/></Media><Media  
          SignatureName="SIG002"><Media Brand="MultiArt gloss , PEFC"  
          DescriptiveName="MultiArt gloss , PEFC"  
          Dimension="2494.48818898 1785.82677165" Grade="1"  
          GrainDirection="ShortEdge"  
          HDM:RawDimension="2494.48818898 1785.82677165"  
          ProductID="201-090-088063-01-7U" SheetName="Bg_1_1"  
          Thickness="72" Weight="90"/></Media><Media  
          SignatureName="SIG003"><Media Brand="MultiArt gloss , PEFC"  
          DescriptiveName="MultiArt gloss , PEFC"  
          Dimension="2494.48818898 1785.82677165" Grade="1"  
          GrainDirection="ShortEdge"  
          HDM:RawDimension="2494.48818898 1785.82677165"  
          ProductID="201-090-088063-01-7U" SheetName="Bg_1_2"  
          Thickness="72" Weight="90"/></Media><Media  
          SignatureName="SIG004"><Media Brand="MultiArt gloss , PEFC"  
          DescriptiveName="MultiArt gloss , PEFC"  
          Dimension="2494.48818898 1785.82677165" Grade="1"  
          GrainDirection="ShortEdge"  
          HDM:RawDimension="2494.48818898 1785.82677165"  
          ProductID="201-090-088063-01-7U" SheetName="Bg_1_3"  
          Thickness="72" Weight="90"/></Media><Media  
          SignatureName="SIG005"><Media Brand="MultiArt gloss , PEFC"  
          DescriptiveName="MultiArt gloss , PEFC"  
          Dimension="2494.48818898 1785.82677165" Grade="1"  
          GrainDirection="ShortEdge"  
          HDM:RawDimension="2494.48818898 1785.82677165"  
          ProductID="201-090-088063-01-7U" SheetName="Bg_1_4"  
          Thickness="72" Weight="90"/></Media><Media  
          SignatureName="SIG006"><Media Brand="MultiArt gloss , PEFC"  
          DescriptiveName="MultiArt gloss , PEFC"  
          Dimension="2494.48818898 1785.82677165" Grade="1"  
          GrainDirection="ShortEdge"  
          HDM:RawDimension="2494.48818898 1785.82677165"  
          ProductID="201-090-088063-01-7U" SheetName="Bg_2_1"  
          Thickness="72" Weight="90"/></Media><Media  
          SignatureName="SIG007"><Media Brand="MultiArt gloss , PEFC"  
          DescriptiveName="MultiArt gloss , PEFC"  
          Dimension="2494.48818898 1785.82677165" Grade="1"  
          GrainDirection="ShortEdge"  
          HDM:RawDimension="2494.48818898 1785.82677165"  
          ProductID="201-090-088063-01-7U" SheetName="Bg_2_2"  
          Thickness="72" Weight="90"/></Media></Media><Media  
      Class="Consumable" ID="r_181029_114121540_001935"  
      MediaType="Plate" PartIDKeys="SignatureName SheetName"  
      PartUsage="Implicit" Status="Unavailable"><Media  
          SignatureName="SIG001"><Media  
          Dimension="2990.5511811 2298.8976378"  
        SheetName="Bg_0"/></Media><Media SignatureName="SIG002"><Media  
          Dimension="2990.5511811 2298.8976378"  
        SheetName="Bg_1_1"/></Media><Media SignatureName="SIG003"><Media  
          Dimension="2990.5511811 2298.8976378"  
        SheetName="Bg_1_2"/></Media><Media SignatureName="SIG004"><Media  
          Dimension="2990.5511811 2298.8976378"  
        SheetName="Bg_1_3"/></Media><Media SignatureName="SIG005"><Media  
          Dimension="2990.5511811 2298.8976378"  
        SheetName="Bg_1_4"/></Media><Media SignatureName="SIG006"><Media  
          Dimension="2990.5511811 2298.8976378"  
        SheetName="Bg_2_1"/></Media><Media SignatureName="SIG007"><Media  
          Dimension="2990.5511811 2298.8976378"  
      SheetName="Bg_2_2"/></Media></Media><ExposedMedia Class="Handling"  
      ID="r_181029_114121540_001936"  
      PartIDKeys="SignatureName SheetName Side Separation"  
      PartUsage="Explicit" Status="Unavailable"><ExposedMedia  
          SignatureName="SIG001"><ExposedMedia SheetName="Bg_0"  
            Status="Unavailable"><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_0"  
            SignatureName="SIG001"/></MediaRef><ExposedMedia  
              Side="Front"><ExposedMedia  
              Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
            Separation="Black"/></ExposedMedia><ExposedMedia  
              Side="Back"><ExposedMedia Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
        Separation="Black"/></ExposedMedia></ExposedMedia></ExposedMedia><ExposedMedia  
          SignatureName="SIG002"><ExposedMedia SheetName="Bg_1_1"  
            Status="Unavailable"><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/></MediaRef><ExposedMedia  
              Side="Front"><ExposedMedia  
              Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
            Separation="Black"/></ExposedMedia><ExposedMedia  
              Side="Back"><ExposedMedia Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
        Separation="Black"/></ExposedMedia></ExposedMedia></ExposedMedia><ExposedMedia  
          SignatureName="SIG003"><ExposedMedia SheetName="Bg_1_2"  
            Status="Unavailable"><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/></MediaRef><ExposedMedia  
              Side="Front"><ExposedMedia  
              Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
            Separation="Black"/></ExposedMedia><ExposedMedia  
              Side="Back"><ExposedMedia Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
        Separation="Black"/></ExposedMedia></ExposedMedia></ExposedMedia><ExposedMedia  
          SignatureName="SIG004"><ExposedMedia SheetName="Bg_1_3"  
            Status="Unavailable"><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/></MediaRef><ExposedMedia  
              Side="Front"><ExposedMedia  
              Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
            Separation="Black"/></ExposedMedia><ExposedMedia  
              Side="Back"><ExposedMedia Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
        Separation="Black"/></ExposedMedia></ExposedMedia></ExposedMedia><ExposedMedia  
          SignatureName="SIG005"><ExposedMedia SheetName="Bg_1_4"  
            Status="Unavailable"><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_4"  
            SignatureName="SIG005"/></MediaRef><ExposedMedia  
              Side="Front"><ExposedMedia  
              Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
            Separation="Black"/></ExposedMedia><ExposedMedia  
              Side="Back"><ExposedMedia Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
        Separation="Black"/></ExposedMedia></ExposedMedia></ExposedMedia><ExposedMedia  
          SignatureName="SIG006"><ExposedMedia SheetName="Bg_2_1"  
            Status="Unavailable"><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/></MediaRef><ExposedMedia  
              Side="Front"><ExposedMedia  
              Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
            Separation="Black"/></ExposedMedia><ExposedMedia  
              Side="Back"><ExposedMedia Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
        Separation="Black"/></ExposedMedia></ExposedMedia></ExposedMedia><ExposedMedia  
          SignatureName="SIG007"><ExposedMedia SheetName="Bg_2_2"  
            Status="Unavailable"><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_2_2"  
            SignatureName="SIG007"/></MediaRef><ExposedMedia  
              Side="Front"><ExposedMedia  
              Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
            Separation="Black"/></ExposedMedia><ExposedMedia  
              Side="Back"><ExposedMedia Separation="Cyan"/><ExposedMedia  
              Separation="Magenta"/><ExposedMedia  
              Separation="Yellow"/><ExposedMedia  
      Separation="Black"/></ExposedMedia></ExposedMedia></ExposedMedia></ExposedMedia><Ink  
      Class="Consumable" ID="r_181029_114121540_001937"  
      PartIDKeys="SignatureName SheetName Side Separation"  
      PartUsage="Implicit" Status="Available"><Ink  
          SignatureName="SIG001"><Ink SheetName="Bg_0"><Ink  
              Side="Front"><Ink Separation="Cyan"/><Ink  
              Separation="Magenta"/><Ink Separation="Yellow"/><Ink  
            Separation="Black"/></Ink><Ink Side="Back"><Ink  
              Separation="Cyan"/><Ink Separation="Magenta"/><Ink  
              Separation="Yellow"/><Ink  
        Separation="Black"/></Ink></Ink></Ink><Ink  
          SignatureName="SIG002"><Ink SheetName="Bg_1_1"><Ink  
              Side="Front"><Ink Separation="Cyan"/><Ink  
              Separation="Magenta"/><Ink Separation="Yellow"/><Ink  
            Separation="Black"/></Ink><Ink Side="Back"><Ink  
              Separation="Cyan"/><Ink Separation="Magenta"/><Ink  
              Separation="Yellow"/><Ink  
        Separation="Black"/></Ink></Ink></Ink><Ink  
          SignatureName="SIG003"><Ink SheetName="Bg_1_2"><Ink  
              Side="Front"><Ink Separation="Cyan"/><Ink  
              Separation="Magenta"/><Ink Separation="Yellow"/><Ink  
            Separation="Black"/></Ink><Ink Side="Back"><Ink  
              Separation="Cyan"/><Ink Separation="Magenta"/><Ink  
              Separation="Yellow"/><Ink  
        Separation="Black"/></Ink></Ink></Ink><Ink  
          SignatureName="SIG004"><Ink SheetName="Bg_1_3"><Ink  
              Side="Front"><Ink Separation="Cyan"/><Ink  
              Separation="Magenta"/><Ink Separation="Yellow"/><Ink  
            Separation="Black"/></Ink><Ink Side="Back"><Ink  
              Separation="Cyan"/><Ink Separation="Magenta"/><Ink  
              Separation="Yellow"/><Ink  
        Separation="Black"/></Ink></Ink></Ink><Ink  
          SignatureName="SIG005"><Ink SheetName="Bg_1_4"><Ink  
              Side="Front"><Ink Separation="Cyan"/><Ink  
              Separation="Magenta"/><Ink Separation="Yellow"/><Ink  
            Separation="Black"/></Ink><Ink Side="Back"><Ink  
              Separation="Cyan"/><Ink Separation="Magenta"/><Ink  
              Separation="Yellow"/><Ink  
        Separation="Black"/></Ink></Ink></Ink><Ink  
          SignatureName="SIG006"><Ink SheetName="Bg_2_1"><Ink  
              Side="Front"><Ink Separation="Cyan"/><Ink  
              Separation="Magenta"/><Ink Separation="Yellow"/><Ink  
            Separation="Black"/></Ink><Ink Side="Back"><Ink  
              Separation="Cyan"/><Ink Separation="Magenta"/><Ink  
              Separation="Yellow"/><Ink  
        Separation="Black"/></Ink></Ink></Ink><Ink  
          SignatureName="SIG007"><Ink SheetName="Bg_2_2"><Ink  
              Side="Front"><Ink Separation="Cyan"/><Ink  
              Separation="Magenta"/><Ink Separation="Yellow"/><Ink  
            Separation="Black"/></Ink><Ink Side="Back"><Ink  
              Separation="Cyan"/><Ink Separation="Magenta"/><Ink  
              Separation="Yellow"/><Ink  
      Separation="Black"/></Ink></Ink></Ink></Ink><ColorantControl  
      Class="Parameter" ID="r_181029_114121540_001938"  
      PartIDKeys="SignatureName SheetName Side" PartUsage="Implicit"  
        Status="Available"><ColorPoolRef  
        rRef="r_181029_114121462_001902"/><ColorantControl  
          SignatureName="SIG001"><ColorantControl  
            SheetName="Bg_0"><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Front"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
            Name="Black"/></ColorantOrder></ColorantControl><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Back"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
        Name="Black"/></ColorantOrder></ColorantControl></ColorantControl></ColorantControl><ColorantControl  
          SignatureName="SIG002"><ColorantControl  
            SheetName="Bg_1_1"><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Front"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
            Name="Black"/></ColorantOrder></ColorantControl><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Back"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
        Name="Black"/></ColorantOrder></ColorantControl></ColorantControl></ColorantControl><ColorantControl  
          SignatureName="SIG003"><ColorantControl  
            SheetName="Bg_1_2"><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Front"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
            Name="Black"/></ColorantOrder></ColorantControl><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Back"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
        Name="Black"/></ColorantOrder></ColorantControl></ColorantControl></ColorantControl><ColorantControl  
          SignatureName="SIG004"><ColorantControl  
            SheetName="Bg_1_3"><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Front"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
            Name="Black"/></ColorantOrder></ColorantControl><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Back"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
        Name="Black"/></ColorantOrder></ColorantControl></ColorantControl></ColorantControl><ColorantControl  
          SignatureName="SIG005"><ColorantControl  
            SheetName="Bg_1_4"><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Front"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
            Name="Black"/></ColorantOrder></ColorantControl><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Back"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
        Name="Black"/></ColorantOrder></ColorantControl></ColorantControl></ColorantControl><ColorantControl  
          SignatureName="SIG006"><ColorantControl  
            SheetName="Bg_2_1"><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Front"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
            Name="Black"/></ColorantOrder></ColorantControl><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Back"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
        Name="Black"/></ColorantOrder></ColorantControl></ColorantControl></ColorantControl><ColorantControl  
          SignatureName="SIG007"><ColorantControl  
            SheetName="Bg_2_2"><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Front"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
            Name="Black"/></ColorantOrder></ColorantControl><ColorantControl  
            ProcessColorModel="DeviceCMYK"  
                Side="Back"><ColorantParams/><ColorantOrder><SeparationSpec  
                Name="Cyan"/><SeparationSpec  
                Name="Magenta"/><SeparationSpec  
                Name="Yellow"/><SeparationSpec  
      Name="Black"/></ColorantOrder></ColorantControl></ColorantControl></ColorantControl></ColorantControl><BinderySignature  
      Class="Parameter" ID="r_181029_114121571_001960" NumberUp="2 1"  
      Status="Available"/><Device Class="Implementation"  
      DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P"  
      FriendlyName="XL105-8P" ID="r_181029_114121525_001932"  
      PartIDKeys="SignatureName SheetName" Status="Available"><Device  
          SignatureName="SIG001"><Device DeviceID="4102"  
        SheetName="Bg_0"/></Device><CostCenter  
      CostCenterID="4103"/></Device><BinderySignature Class="Parameter"  
      ID="r_181029_114121665_001986" NumberUp="4 2"  
      Status="Available"/><Device Class="Implementation"  
      DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P"  
      FriendlyName="XL105-8P" ID="r_181029_114121618_001972"  
      PartIDKeys="SignatureName SheetName" Status="Available"><Device  
          SignatureName="SIG002"><Device DeviceID="4102"  
        SheetName="Bg_1_1"/></Device><CostCenter  
      CostCenterID="4103"/></Device><BinderySignature Class="Parameter"  
      ID="r_181029_114121727_001999" NumberUp="4 2"  
      Status="Available"/><Device Class="Implementation"  
      DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P"  
      FriendlyName="XL105-8P" ID="r_181029_114121681_001997"  
      PartIDKeys="SignatureName SheetName" Status="Available"><Device  
          SignatureName="SIG003"><Device DeviceID="4102"  
        SheetName="Bg_1_2"/></Device><CostCenter  
      CostCenterID="4103"/></Device><BinderySignature Class="Parameter"  
      ID="r_181029_114121790_002012" NumberUp="4 2"  
      Status="Available"/><Device Class="Implementation"  
      DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P"  
      FriendlyName="XL105-8P" ID="r_181029_114121743_002010"  
      PartIDKeys="SignatureName SheetName" Status="Available"><Device  
          SignatureName="SIG004"><Device DeviceID="4102"  
        SheetName="Bg_1_3"/></Device><CostCenter  
      CostCenterID="4103"/></Device><BinderySignature Class="Parameter"  
      ID="r_181029_114121868_002025" NumberUp="4 2"  
      Status="Available"/><Device Class="Implementation"  
      DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P"  
      FriendlyName="XL105-8P" ID="r_181029_114121821_002023"  
      PartIDKeys="SignatureName SheetName" Status="Available"><Device  
          SignatureName="SIG005"><Device DeviceID="4102"  
        SheetName="Bg_1_4"/></Device><CostCenter  
      CostCenterID="4103"/></Device><BinderySignature Class="Parameter"  
      ID="r_181029_114121946_002050" NumberUp="2 2"  
      Status="Available"/><BinderySignature Class="Parameter"  
      ID="r_181029_114121946_002051" NumberUp="2 2"  
      Status="Available"/><Device Class="Implementation"  
      DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P"  
      FriendlyName="XL105-8P" ID="r_181029_114121883_002036"  
      PartIDKeys="SignatureName SheetName" Status="Available"><Device  
          SignatureName="SIG006"><Device DeviceID="4102"  
        SheetName="Bg_2_1"/></Device><CostCenter  
      CostCenterID="4103"/></Device><RunList Class="Parameter"  
      ID="r_181029_114121556_001947" Status="Unavailable"/><Layout  
      Class="Parameter" DescriptiveName="Lay"  
      ID="r_181029_114121571_001958" Name="Lay"  
      PartIDKeys="SignatureName SheetName Side"  
        Status="Unavailable"><Layout Name="SIG001"  
          SignatureName="SIG001"><Layout Name="Bg_0"  
            SheetName="Bg_0"><Layout Side="Front"/><Layout  
        Side="Back"/></Layout></Layout><Layout Name="SIG002"  
          SignatureName="SIG002"><Layout Name="Bg_1_1"  
            SheetName="Bg_1_1"><Layout Side="Front"/><Layout  
        Side="Back"/></Layout></Layout><Layout Name="SIG003"  
          SignatureName="SIG003"><Layout Name="Bg_1_2"  
            SheetName="Bg_1_2"><Layout Side="Front"/><Layout  
        Side="Back"/></Layout></Layout><Layout Name="SIG004"  
          SignatureName="SIG004"><Layout Name="Bg_1_3"  
            SheetName="Bg_1_3"><Layout Side="Front"/><Layout  
        Side="Back"/></Layout></Layout><Layout Name="SIG005"  
          SignatureName="SIG005"><Layout Name="Bg_1_4"  
            SheetName="Bg_1_4"><Layout Side="Front"/><Layout  
        Side="Back"/></Layout></Layout><Layout Name="SIG006"  
          SignatureName="SIG006"><Layout Name="Bg_2_1"  
            SheetName="Bg_2_1"><Layout Side="Front"/><Layout  
        Side="Back"/></Layout></Layout><Layout Name="SIG007"  
          SignatureName="SIG007"><Layout Name="Bg_2_2"  
            SheetName="Bg_2_2"><Layout Side="Front"/><Layout  
      Side="Back"/></Layout></Layout></Layout><StrippingParams  
      Class="Parameter" ID="r_181029_114121571_001959"  
      PartIDKeys="SignatureName SheetName BinderySignatureName"  
      PartUsage="Explicit" Status="Available"><StrippingParams  
          SignatureName="SIG001"><StrippingParams  
          AssemblyIDs="Bg_0_BS_0" HDM:SortCount="1"  
          HDM:SortSheetCount="1" HDM:SortSheetNUp="4" SheetName="Bg_0"  
            WorkStyle="Perfecting"><BinderySignatureRef  
            rRef="r_181029_114121571_001960"/><Position  
            MarginBottom="28.346456692913407"  
            MarginLeft="34.01574803149607" MarginRight="0.0"  
            MarginTop="0.0" Orientation="Rotate0"  
            RelativeBox="0.0 0.0 0.5 0.5"/><Position MarginBottom="0.0"  
            MarginLeft="34.01574803149607" MarginRight="0.0"  
            MarginTop="28.346456692913407" Orientation="Rotate0"  
            RelativeBox="0.0 0.5 0.5 1.0"/><Position  
            MarginBottom="28.346456692913407" MarginLeft="0.0"  
            MarginRight="34.01574803149607" MarginTop="0.0"  
            Orientation="Rotate0"  
            RelativeBox="0.5 0.0 1.0 0.5"/><Position MarginBottom="0.0"  
            MarginLeft="0.0" MarginRight="34.01574803149607"  
            MarginTop="28.346456692913407" Orientation="Rotate0"  
            RelativeBox="0.5 0.5 1.0 1.0"/><StripCellParams  
            BleedFace="7.086614173228346" BleedFoot="7.086614173228346"  
            BleedHead="7.086614173228346" BleedSpine="0.0" Spine="0.0"  
            TrimFace="11.338582677165354" TrimFoot="11.338582677165354"  
            TrimHead="11.338582677165354"  
            TrimSize="595.275590551181 841.8897637795276"/><MediaRef  
              rRef="r_181029_114121525_001934"><Part SheetName="Bg_0"  
            SignatureName="SIG001"/></MediaRef><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_0"  
            SignatureName="SIG001"/></MediaRef><DeviceRef  
              rRef="r_181029_114121525_001932"><Part SheetName="Bg_0"  
        SignatureName="SIG001"/></DeviceRef></StrippingParams></StrippingParams><StrippingParams  
          SignatureName="SIG002"><StrippingParams  
          AssemblyIDs="Bg_1_1_BS_0" HDM:SortCount="4"  
          HDM:SortSheetCount="1" HDM:SortSheetNUp="1" SheetName="Bg_1_1"  
            WorkStyle="Perfecting"><BinderySignatureRef  
            rRef="r_181029_114121665_001986"/><Position  
            MarginBottom="0.0" MarginLeft="0.0" MarginRight="0.0"  
            MarginTop="0.0" Orientation="Rotate0"  
            RelativeBox="0.0 0.0 1.0 1.0"/><StripCellParams  
            BleedFace="1.4173228346456699"  
            BleedFoot="1.4173228346456699"  
            BleedHead="1.4173228346456699" BleedSpine="0.0" Spine="0.0"  
            TrimFace="28.346456692913385" TrimFoot="39.68503937007874"  
            TrimHead="39.68503937007874"  
            TrimSize="595.275590551181 841.8897637795276"/><MediaRef  
              rRef="r_181029_114121525_001934"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/></MediaRef><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/></MediaRef><DeviceRef  
              rRef="r_181029_114121618_001972"><Part SheetName="Bg_1_1"  
        SignatureName="SIG002"/></DeviceRef></StrippingParams></StrippingParams><StrippingParams  
          SignatureName="SIG003"><StrippingParams  
          AssemblyIDs="Bg_1_2_BS_0" HDM:SortCount="4"  
          HDM:SortSheetCount="1" HDM:SortSheetNUp="1" SheetName="Bg_1_2"  
            WorkStyle="Perfecting"><BinderySignatureRef  
            rRef="r_181029_114121727_001999"/><Position  
            MarginBottom="0.0" MarginLeft="0.0" MarginRight="0.0"  
            MarginTop="0.0" Orientation="Rotate0"  
            RelativeBox="0.0 0.0 1.0 1.0"/><StripCellParams  
            BleedFace="1.4173228346456699"  
            BleedFoot="1.4173228346456699"  
            BleedHead="1.4173228346456699" BleedSpine="0.0" Spine="0.0"  
            TrimFace="28.346456692913385" TrimFoot="39.68503937007874"  
            TrimHead="39.68503937007874"  
            TrimSize="595.275590551181 841.8897637795276"/><MediaRef  
              rRef="r_181029_114121525_001934"><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/></MediaRef><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/></MediaRef><DeviceRef  
              rRef="r_181029_114121681_001997"><Part SheetName="Bg_1_2"  
        SignatureName="SIG003"/></DeviceRef></StrippingParams></StrippingParams><StrippingParams  
          SignatureName="SIG004"><StrippingParams  
          AssemblyIDs="Bg_1_3_BS_0" HDM:SortCount="4"  
          HDM:SortSheetCount="1" HDM:SortSheetNUp="1" SheetName="Bg_1_3"  
            WorkStyle="Perfecting"><BinderySignatureRef  
            rRef="r_181029_114121790_002012"/><Position  
            MarginBottom="0.0" MarginLeft="0.0" MarginRight="0.0"  
            MarginTop="0.0" Orientation="Rotate0"  
            RelativeBox="0.0 0.0 1.0 1.0"/><StripCellParams  
            BleedFace="1.4173228346456699"  
            BleedFoot="1.4173228346456699"  
            BleedHead="1.4173228346456699" BleedSpine="0.0" Spine="0.0"  
            TrimFace="28.346456692913385" TrimFoot="39.68503937007874"  
            TrimHead="39.68503937007874"  
            TrimSize="595.275590551181 841.8897637795276"/><MediaRef  
              rRef="r_181029_114121525_001934"><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/></MediaRef><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/></MediaRef><DeviceRef  
              rRef="r_181029_114121743_002010"><Part SheetName="Bg_1_3"  
        SignatureName="SIG004"/></DeviceRef></StrippingParams></StrippingParams><StrippingParams  
          SignatureName="SIG005"><StrippingParams  
          AssemblyIDs="Bg_1_4_BS_0" HDM:SortCount="4"  
          HDM:SortSheetCount="1" HDM:SortSheetNUp="1" SheetName="Bg_1_4"  
            WorkStyle="Perfecting"><BinderySignatureRef  
            rRef="r_181029_114121868_002025"/><Position  
            MarginBottom="0.0" MarginLeft="0.0" MarginRight="0.0"  
            MarginTop="0.0" Orientation="Rotate0"  
            RelativeBox="0.0 0.0 1.0 1.0"/><StripCellParams  
            BleedFace="1.4173228346456699"  
            BleedFoot="1.4173228346456699"  
            BleedHead="1.4173228346456699" BleedSpine="0.0" Spine="0.0"  
            TrimFace="28.346456692913385" TrimFoot="39.68503937007874"  
            TrimHead="39.68503937007874"  
            TrimSize="595.275590551181 841.8897637795276"/><MediaRef  
              rRef="r_181029_114121525_001934"><Part SheetName="Bg_1_4"  
            SignatureName="SIG005"/></MediaRef><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_4"  
            SignatureName="SIG005"/></MediaRef><DeviceRef  
              rRef="r_181029_114121821_002023"><Part SheetName="Bg_1_4"  
        SignatureName="SIG005"/></DeviceRef></StrippingParams></StrippingParams><StrippingParams  
          SignatureName="SIG006"><StrippingParams HDM:SortCount="4"  
          HDM:SortSheetCount="2" HDM:SortSheetNUp="1" SheetName="Bg_2_1"  
            WorkStyle="Perfecting"><StrippingParams  
            AssemblyIDs="Bg_2_1_BS_0"  
              BinderySignatureName="BS_0"><BinderySignatureRef  
              rRef="r_181029_114121946_002050"/><Position  
              MarginBottom="39.68503937007874"  
              MarginLeft="28.346456692913385" MarginRight="0.0"  
              MarginTop="39.68503937007874" Orientation="Rotate0"  
            RelativeBox="0.0 0.0 0.5 1.0"/></StrippingParams><StrippingParams  
            AssemblyIDs="Bg_2_1_BS_1"  
              BinderySignatureName="BS_1"><BinderySignatureRef  
              rRef="r_181029_114121946_002051"/><Position  
              MarginBottom="39.68503937007874" MarginLeft="0.0"  
              MarginRight="28.346456692913385"  
              MarginTop="39.68503937007874" Orientation="Rotate0"  
            RelativeBox="0.5 0.0 1.0 1.0"/></StrippingParams><StripCellParams  
            BleedFace="0.0" BleedFoot="0.0" BleedHead="0.0"  
            BleedSpine="0.0" Spine="0.0" TrimFace="0.0" TrimFoot="0.0"  
            TrimHead="0.0"  
            TrimSize="595.275590551181 841.8897637795276"/><MediaRef  
              rRef="r_181029_114121525_001934"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/></MediaRef><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/></MediaRef><DeviceRef  
              rRef="r_181029_114121883_002036"><Part SheetName="Bg_2_1"  
        SignatureName="SIG006"/></DeviceRef></StrippingParams></StrippingParams><StrippingParams  
          SignatureName="SIG007"><StrippingParams HDM:SortCount="4"  
          HDM:SortSheetCount="2" HDM:SortSheetNUp="1" SheetName="Bg_2_2"  
            WorkStyle="Perfecting"><StrippingParams  
            AssemblyIDs="Bg_2_2_BS_0"  
              BinderySignatureName="BS_0"><BinderySignatureRef  
              rRef="r_181029_114122024_002064"/><Position  
              MarginBottom="39.68503937007874"  
              MarginLeft="28.346456692913385" MarginRight="0.0"  
              MarginTop="39.68503937007874" Orientation="Rotate0"  
            RelativeBox="0.0 0.0 0.5 1.0"/></StrippingParams><StrippingParams  
            AssemblyIDs="Bg_2_2_BS_1"  
              BinderySignatureName="BS_1"><BinderySignatureRef  
              rRef="r_181029_114122024_002065"/><Position  
              MarginBottom="39.68503937007874" MarginLeft="0.0"  
              MarginRight="28.346456692913385"  
              MarginTop="39.68503937007874" Orientation="Rotate0"  
            RelativeBox="0.5 0.0 1.0 1.0"/></StrippingParams><StripCellParams  
            BleedFace="0.0" BleedFoot="0.0" BleedHead="0.0"  
            BleedSpine="0.0" Spine="0.0" TrimFace="0.0" TrimFoot="0.0"  
            TrimHead="0.0"  
            TrimSize="595.275590551181 841.8897637795276"/><MediaRef  
              rRef="r_181029_114121525_001934"><Part SheetName="Bg_2_2"  
            SignatureName="SIG007"/></MediaRef><MediaRef  
              rRef="r_181029_114121540_001935"><Part SheetName="Bg_2_2"  
            SignatureName="SIG007"/></MediaRef><DeviceRef  
              rRef="r_181029_114121961_002062"><Part SheetName="Bg_2_2"  
      SignatureName="SIG007"/></DeviceRef></StrippingParams></StrippingParams></StrippingParams><Assembly  
      AssemblyIDs="Bg_0_BS_0 Bg_1_1_BS_0 Bg_1_2_BS_0 Bg_1_3_BS_0 Bg_1_4_BS_0 Bg_2_1_BS_0 Bg_2_1_BS_1 Bg_2_2_BS_0 Bg_2_2_BS_1"  
      BindingSide="Left" Class="Parameter"  
      ID="r_181029_114121603_001961" Order="Collecting"  
      Status="Available"/><BinderySignature Class="Parameter"  
      ID="r_181029_114122024_002064" NumberUp="2 2"  
      Status="Available"/><BinderySignature Class="Parameter"  
      ID="r_181029_114122024_002065" NumberUp="2 2"  
      Status="Available"/><Device Class="Implementation"  
      DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P"  
      FriendlyName="XL105-8P" ID="r_181029_114121961_002062"  
      PartIDKeys="SignatureName SheetName" Status="Available"><Device  
          SignatureName="SIG007"><Device DeviceID="4102"  
        SheetName="Bg_2_2"/></Device><CostCenter  
      CostCenterID="4103"/></Device><RunList Class="Parameter"  
      ID="r_181029_114134254_002070" Status="Unavailable"/><Preview  
      Class="Parameter" ID="r_181029_114134254_002071"  
      PartIDKeys="SignatureName SheetName Side Separation"  
      PreviewUsage="Separation" Status="Unavailable"><Preview  
          SignatureName="SIG001"><Preview SheetName="Bg_0"><Preview  
              Side="Front"><Preview Separation="Cyan"  
              Status="Incomplete"/><Preview Separation="Magenta"  
              Status="Incomplete"/><Preview Separation="Yellow"  
              Status="Incomplete"/><Preview Separation="Black"  
            Status="Incomplete"/></Preview><Preview Side="Back"><Preview  
              Separation="Cyan" Status="Incomplete"/><Preview  
              Separation="Magenta" Status="Incomplete"/><Preview  
              Separation="Yellow" Status="Incomplete"/><Preview  
              Separation="Black"  
        Status="Incomplete"/></Preview></Preview></Preview><Preview  
          SignatureName="SIG002"><Preview SheetName="Bg_1_1"><Preview  
              Side="Front"><Preview Separation="Cyan"  
              Status="Incomplete"/><Preview Separation="Magenta"  
              Status="Incomplete"/><Preview Separation="Yellow"  
              Status="Incomplete"/><Preview Separation="Black"  
            Status="Incomplete"/></Preview><Preview Side="Back"><Preview  
              Separation="Cyan" Status="Incomplete"/><Preview  
              Separation="Magenta" Status="Incomplete"/><Preview  
              Separation="Yellow" Status="Incomplete"/><Preview  
              Separation="Black"  
        Status="Incomplete"/></Preview></Preview></Preview><Preview  
          SignatureName="SIG003"><Preview SheetName="Bg_1_2"><Preview  
              Side="Front"><Preview Separation="Cyan"  
              Status="Incomplete"/><Preview Separation="Magenta"  
              Status="Incomplete"/><Preview Separation="Yellow"  
              Status="Incomplete"/><Preview Separation="Black"  
            Status="Incomplete"/></Preview><Preview Side="Back"><Preview  
              Separation="Cyan" Status="Incomplete"/><Preview  
              Separation="Magenta" Status="Incomplete"/><Preview  
              Separation="Yellow" Status="Incomplete"/><Preview  
              Separation="Black"  
        Status="Incomplete"/></Preview></Preview></Preview><Preview  
          SignatureName="SIG004"><Preview SheetName="Bg_1_3"><Preview  
              Side="Front"><Preview Separation="Cyan"  
              Status="Incomplete"/><Preview Separation="Magenta"  
              Status="Incomplete"/><Preview Separation="Yellow"  
              Status="Incomplete"/><Preview Separation="Black"  
            Status="Incomplete"/></Preview><Preview Side="Back"><Preview  
              Separation="Cyan" Status="Incomplete"/><Preview  
              Separation="Magenta" Status="Incomplete"/><Preview  
              Separation="Yellow" Status="Incomplete"/><Preview  
              Separation="Black"  
        Status="Incomplete"/></Preview></Preview></Preview><Preview  
          SignatureName="SIG005"><Preview SheetName="Bg_1_4"><Preview  
              Side="Front"><Preview Separation="Cyan"  
              Status="Incomplete"/><Preview Separation="Magenta"  
              Status="Incomplete"/><Preview Separation="Yellow"  
              Status="Incomplete"/><Preview Separation="Black"  
            Status="Incomplete"/></Preview><Preview Side="Back"><Preview  
              Separation="Cyan" Status="Incomplete"/><Preview  
              Separation="Magenta" Status="Incomplete"/><Preview  
              Separation="Yellow" Status="Incomplete"/><Preview  
              Separation="Black"  
        Status="Incomplete"/></Preview></Preview></Preview><Preview  
          SignatureName="SIG006"><Preview SheetName="Bg_2_1"><Preview  
              Side="Front"><Preview Separation="Cyan"  
              Status="Incomplete"/><Preview Separation="Magenta"  
              Status="Incomplete"/><Preview Separation="Yellow"  
              Status="Incomplete"/><Preview Separation="Black"  
            Status="Incomplete"/></Preview><Preview Side="Back"><Preview  
              Separation="Cyan" Status="Incomplete"/><Preview  
              Separation="Magenta" Status="Incomplete"/><Preview  
              Separation="Yellow" Status="Incomplete"/><Preview  
              Separation="Black"  
        Status="Incomplete"/></Preview></Preview></Preview><Preview  
          SignatureName="SIG007"><Preview SheetName="Bg_2_2"><Preview  
              Side="Front"><Preview Separation="Cyan"  
              Status="Incomplete"/><Preview Separation="Magenta"  
              Status="Incomplete"/><Preview Separation="Yellow"  
              Status="Incomplete"/><Preview Separation="Black"  
            Status="Incomplete"/></Preview><Preview Side="Back"><Preview  
              Separation="Cyan" Status="Incomplete"/><Preview  
              Separation="Magenta" Status="Incomplete"/><Preview  
              Separation="Yellow" Status="Incomplete"/><Preview  
              Separation="Black"  
      Status="Incomplete"/></Preview></Preview></Preview></Preview></ResourcePool><ResourceLinkPool><CustomerInfoLink  
      Usage="Input"  
      rRef="r_181029_114121447_001889"/><DeliveryIntentLink  
      Usage="Input" rRef="r_181029_114121462_001899"/><ComponentLink  
      Amount="6000" Usage="Output"  
      rRef="r_181029_114121462_001900"/><NodeInfoLink Usage="Input"  
      rRef="r_181029_114121462_001901"/><BindingIntentLink Usage="Input"  
      rRef="r_181029_114121462_001903"/><ComponentLink Usage="Input"  
      rRef="r_181029_114121462_001906"/><ComponentLink Usage="Input"  
    rRef="r_181029_114121478_001912"/></ResourceLinkPool><JDF  
    DescriptiveName="Bg_0" HDM:SheetGroupID="3" HDM:SheetTypeID="1"  
    ID="n_181029_114121462_001904" JobPartID="SG3" Status="Waiting"  
    Type="Product" xsi:type="Product"><AuditPool><Created  
        AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
        ID="a_181029_114121462_001905"  
        TimeStamp="2018-10-29T11:41:21+01:00"/></AuditPool><ResourceLinkPool><ComponentLink  
        Usage="Output"  
        rRef="r_181029_114121462_001906"/><ColorIntentLink Usage="Input"  
        rRef="r_181029_114121462_001907"/><LayoutIntentLink  
        Usage="Input" rRef="r_181029_114121478_001908"/><MediaIntentLink  
        Usage="Input"  
        rRef="r_181029_114121478_001909"/></ResourceLinkPool><ResourcePool><ColorIntent  
        Class="Intent" ID="r_181029_114121462_001907"  
          Status="Available"><ColorPoolRef  
          rRef="r_181029_114121462_001902"/><ColorStandard  
          Actual="Euroskala" DataType="NameSpan"  
          Preferred="Euroskala"/><Coverage Actual="40"  
          DataType="NumberSpan"  
            Preferred="40"/><ColorsUsed><SeparationSpec  
            Name="Cyan"/><SeparationSpec Name="Magenta"/><SeparationSpec  
            Name="Yellow"/><SeparationSpec  
        Name="Black"/></ColorsUsed></ColorIntent><LayoutIntent  
        Class="Intent" ID="r_181029_114121478_001908"  
        Sides="TwoSidedHeadToHead" Status="Available"><Pages Actual="4"  
          DataType="IntegerSpan" Preferred="4"/><FinishedDimensions  
          Actual="595.27559055 841.88976378 0" DataType="ShapeSpan"  
          Preferred="595.27559055 841.88976378 0"/><Dimensions  
          Actual="1190.5511811 841.88976378" DataType="XYPairSpan"  
        Preferred="1190.5511811 841.88976378"/></LayoutIntent><MediaIntent  
        Class="Intent" ID="r_181029_114121478_001909"  
        ProductID="202-250-088063-01-5U" Status="Available"><Dimensions  
          Actual="2494.48818898 1785.82677165" DataType="XYPairSpan"  
          Preferred="2494.48818898 1785.82677165"/><Weight Actual="250"  
          DataType="NumberSpan" Preferred="250"/><Thickness Actual="200"  
          DataType="NumberSpan" Preferred="200"/><StockBrand  
          Actual="Maxigloss" DataType="StringSpan"  
        Preferred="Maxigloss"/></MediaIntent><Component Class="Quantity"  
        ComponentType="PartialProduct" ID="r_181029_114121525_001930"  
        PartIDKeys="SignatureName SheetName"  
          Status="Unavailable"><Component  
            SignatureName="SIG001"><Component DescriptiveName="Bg_0"  
        SheetName="Bg_0"/></Component></Component><ConventionalPrintingParams  
        Class="Parameter" ID="r_181029_114121525_001931"  
        PrintingType="SheetFed" Status="Incomplete"  
        WorkStyle="Perfecting"/><ApprovalSuccess Class="Parameter"  
        ID="r_181029_114121556_001951"  
        PartIDKeys="SignatureName SheetName" PartUsage="Explicit"  
      Status="Unavailable"/></ResourcePool><JDF  
      Category="MISFin.SheetFin" DescriptiveName="Bg_0(POL 137)"  
      HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3"  
      ID="n_181029_114121525_001922" JobPartID="1000" Status="Waiting"  
      Type="ProcessGroup" Types="HoleMaking"  
          xsi:type="HoleMaking"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121525_001923"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121525_001924"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          CombinedProcessIndex="0" Usage="Output"  
            rRef="r_181029_114121462_001906"><Part SheetName="Bg_0"  
              SignatureName="SIG001"/><AmountPool><PartAmount  
                Amount="6000"><Part Condition="Good" SheetName="Bg_0"  
              SignatureName="SIG001"/></PartAmount><PartAmount  
                Amount="0"><Part Condition="Waste" SheetName="Bg_0"  
          SignatureName="SIG001"/></PartAmount></AmountPool></ComponentLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121525_001925"><Part  
            SheetName="Bg_0"  
          SignatureName="SIG001"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121525_001926"/><ComponentLink  
          CombinedProcessIndex="0" Usage="Input"  
            rRef="r_181029_114121525_001930"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></ComponentLink><LayoutLink  
          Usage="Input"  
          rRef="r_181029_114121571_001958"/></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121525_001925"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG001"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT2M" SheetName="Bg_0"  
          TotalDuration="PT17M23S"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Planschneider Polar XT 137"  
          DeviceType="Planschneider Polar XT 137" FriendlyName="POL 137"  
          ID="r_181029_114121525_001926" Status="Available"><CostCenter  
      CostCenterID="5120"/></Device></ResourcePool></JDF><JDF  
      DescriptiveName="Bg_0(XL105-8P)" ID="n_181029_114121525_001927"  
      JobPartID="1001" Status="Waiting" Type="ConventionalPrinting"  
          xsi:type="ConventionalPrinting"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121525_001928"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121525_001929"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          Usage="Output" rRef="r_181029_114121525_001930"><Part  
            SheetName="Bg_0"  
              SignatureName="SIG001"/><AmountPool><PartAmount  
                Amount="1515"><Part Condition="Good" SheetName="Bg_0"  
              SignatureName="SIG001"/></PartAmount><PartAmount  
                Amount="735"><Part Condition="Waste" SheetName="Bg_0"  
          SignatureName="SIG001"/></PartAmount></AmountPool></ComponentLink><ConventionalPrintingParamsLink  
          Usage="Input" rRef="r_181029_114121525_001931"/><DeviceLink  
          Usage="Input" rRef="r_181029_114121525_001932"><Part  
            SheetName="Bg_0"  
          SignatureName="SIG001"/></DeviceLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121525_001933"><Part  
            SheetName="Bg_0"  
          SignatureName="SIG001"/></NodeInfoLink><MediaLink  
          Usage="Input" rRef="r_181029_114121525_001934"><Part  
            SheetName="Bg_0"  
          SignatureName="SIG001"/></MediaLink><ExposedMediaLink  
          ProcessUsage="Plate" Usage="Input"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></ExposedMediaLink><InkLink  
          Usage="Input" rRef="r_181029_114121540_001937"><Part  
            SheetName="Bg_0"  
          SignatureName="SIG001"/></InkLink><ColorantControlLink  
          Usage="Input" rRef="r_181029_114121540_001938"><Part  
            SheetName="Bg_0"  
          SignatureName="SIG001"/></ColorantControlLink><LayoutLink  
          Usage="Input" rRef="r_181029_114121571_001958"/><PreviewLink  
          Usage="Input" rRef="r_181029_114134254_002071"><Part  
            SheetName="Bg_0"  
          SignatureName="SIG001"/></PreviewLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121525_001933"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG001"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT10M24S" SheetName="Bg_0"  
      TotalDuration="PT22M33S"/></NodeInfo></NodeInfo></ResourcePool></JDF><JDF  
      Category="MISPRE.PlateMaking" DescriptiveName="Bg_0(CTP TOP)"  
      ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121556_001939"  
      JobPartID="1002" Status="Waiting" Type="ProcessGroup"  
      Types="Imposition RIPing PreviewGeneration ImageSetting"  
          xsi:type="ProcessGroup"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121556_001940"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121556_001941"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ExposedMediaLink  
          Amount="1" CombinedProcessIndex="3" Usage="Output"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></ExposedMediaLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121556_001942"><Part  
            SheetName="Bg_0"  
          SignatureName="SIG001"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121556_001943"/><RunListLink  
          CombinedProcessIndex="0 2 3" ProcessUsage="Document"  
          Usage="Input"  
          rRef="r_181029_114121556_001947"/><ApprovalSuccessLink  
          CombinedProcessIndex="0 1 2 3" Usage="Input"  
          rRef="r_181029_114121556_001951"/><LayoutLink  
          CombinedProcessIndex="0 1" Usage="Input"  
          rRef="r_181029_114121571_001958"/><RunListLink  
          CombinedProcessIndex="0 2 3" ProcessUsage="Marks"  
          Usage="Input" rRef="r_181029_114134254_002070"/><PreviewLink  
          ProcessUsage="Previews" Usage="Output"  
            rRef="r_181029_114134254_002071"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></PreviewLink><MediaLink  
          CombinedProcessIndex="1 3" Usage="Input"  
            rRef="r_181029_114121540_001935"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></MediaLink><ColorantControlLink  
          CombinedProcessIndex="1 2 3" Usage="Input"  
            rRef="r_181029_114121540_001938"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></ColorantControlLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121556_001942"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG001"><NodeInfo NodeStatus="Waiting"  
          SheetName="Bg_0"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Computer to Plate Tester TopSetter"  
          DeviceType="Computer to Plate Tester TopSetter"  
          FriendlyName="CTP TOP" ID="r_181029_114121556_001943"  
            Status="Available"><CostCenter  
      CostCenterID="3400"/></Device></ResourcePool></JDF><JDF  
      Category="MISPRE.ImpositionProofing"  
      DescriptiveName="Bg_0(CTP TOP)" ICSVersions="MISPRE_L1-1.3"  
      ID="n_181029_114121556_001948" JobPartID="1004" Status="Waiting"  
      Type="ProcessGroup" Types="Imposition ProofImaging"  
          xsi:type="ProcessGroup"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121556_001949"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121556_001950"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ApprovalSuccessLink  
          CombinedProcessIndex="1" Usage="Output"  
          rRef="r_181029_114121556_001951"/><ExposedMediaLink Amount="1"  
          CombinedProcessIndex="1" Usage="Output"  
          rRef="r_181029_114121556_001952"/><NodeInfoLink Usage="Input"  
            rRef="r_181029_114121556_001953"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121556_001954"/><LayoutLink  
          CombinedProcessIndex="0 1" Usage="Input"  
          rRef="r_181029_114121571_001958"/><MediaLink  
          CombinedProcessIndex="1" Usage="Input"  
            rRef="r_181029_114134285_002072"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></MediaLink><RunListLink  
          CombinedProcessIndex="0 1" ProcessUsage="Document"  
          Usage="Input" rRef="r_181029_114121556_001947"/><RunListLink  
          CombinedProcessIndex="0 1" ProcessUsage="Marks" Usage="Input"  
          rRef="r_181029_114134254_002070"/><ColorantControlLink  
          CombinedProcessIndex="1" Usage="Input"  
            rRef="r_181029_114121540_001938"><Part SheetName="Bg_0"  
          SignatureName="SIG001"/></ColorantControlLink></ResourceLinkPool><ResourcePool><ExposedMedia  
          Class="Handling" ID="r_181029_114121556_001952"  
          PartIDKeys="SignatureName SheetName" PartUsage="Explicit"  
          ProofType="Imposition" Status="Unavailable"><Media  
            MediaType="Paper"/><MediaRef  
            rRef="r_181029_114134285_002072"/><ExposedMedia  
              SignatureName="SIG001"><ExposedMedia  
          SheetName="Bg_0"/></ExposedMedia></ExposedMedia><NodeInfo  
          Class="Parameter" ID="r_181029_114121556_001953"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG001"><NodeInfo NodeStatus="Waiting"  
          SheetName="Bg_0"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Computer to Plate Tester TopSetter"  
          DeviceType="Computer to Plate Tester TopSetter"  
          FriendlyName="CTP TOP" ID="r_181029_114121556_001954"  
            Status="Available"><CostCenter  
          CostCenterID="3400"/></Device><Media Class="Consumable"  
          ID="r_181029_114134285_002072" MediaType="Paper"  
          PartIDKeys="SignatureName SheetName" Status="Available"><Media  
              SignatureName="SIG001"><Media  
    SheetName="Bg_0"/></Media></Media></ResourcePool></JDF></JDF><JDF  
    DescriptiveName="Bg_1" HDM:SheetGroupID="1" HDM:SheetTypeID="0"  
    ID="n_181029_114121478_001910" JobPartID="SG1" Status="Waiting"  
    Type="Product" xsi:type="Product"><AuditPool><Created  
        AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
        ID="a_181029_114121478_001911"  
        TimeStamp="2018-10-29T11:41:21+01:00"/></AuditPool><ResourceLinkPool><ComponentLink  
        Usage="Output"  
        rRef="r_181029_114121478_001912"/><ColorIntentLink Usage="Input"  
        rRef="r_181029_114121478_001913"/><LayoutIntentLink  
        Usage="Input" rRef="r_181029_114121478_001914"/><MediaIntentLink  
        Usage="Input"  
        rRef="r_181029_114121478_001915"/></ResourceLinkPool><ResourcePool><ColorIntent  
        Class="Intent" ID="r_181029_114121478_001913"  
          Status="Available"><ColorPoolRef  
          rRef="r_181029_114121462_001902"/><ColorStandard  
          Actual="Euroskala" DataType="NameSpan"  
          Preferred="Euroskala"/><Coverage Actual="40"  
          DataType="NumberSpan"  
            Preferred="40"/><ColorsUsed><SeparationSpec  
            Name="Cyan"/><SeparationSpec Name="Magenta"/><SeparationSpec  
            Name="Yellow"/><SeparationSpec  
        Name="Black"/></ColorsUsed></ColorIntent><LayoutIntent  
        Class="Intent" ID="r_181029_114121478_001914"  
        Sides="TwoSidedHeadToHead" Status="Available"><Pages Actual="96"  
          DataType="IntegerSpan" Preferred="96"/><FinishedDimensions  
          Actual="595.27559055 841.88976378 0" DataType="ShapeSpan"  
          Preferred="595.27559055 841.88976378 0"/><Dimensions  
          Actual="1190.5511811 841.88976378" DataType="XYPairSpan"  
        Preferred="1190.5511811 841.88976378"/></LayoutIntent><MediaIntent  
        Class="Intent" ID="r_181029_114121478_001915"  
        ProductID="201-090-088063-01-7U" Status="Available"><Dimensions  
          Actual="2494.48818898 1785.82677165" DataType="XYPairSpan"  
          Preferred="2494.48818898 1785.82677165"/><Weight Actual="90"  
          DataType="NumberSpan" Preferred="90"/><Thickness Actual="72"  
          DataType="NumberSpan" Preferred="72"/><StockBrand  
          Actual="MultiArt gloss , PEFC" DataType="StringSpan"  
        Preferred="MultiArt gloss , PEFC"/></MediaIntent><Component  
        Class="Quantity" ComponentType="PartialProduct"  
        ID="r_181029_114121618_001970"  
        PartIDKeys="SignatureName SheetName"  
          Status="Unavailable"><Component  
            SignatureName="SIG002"><Component DescriptiveName="Bg_1_1"  
        SheetName="Bg_1_1"/></Component></Component><ConventionalPrintingParams  
        Class="Parameter" ID="r_181029_114121618_001971"  
        PrintingType="SheetFed" Status="Incomplete"  
        WorkStyle="Perfecting"/><ApprovalSuccess Class="Parameter"  
        ID="r_181029_114121649_001982"  
        PartIDKeys="SignatureName SheetName" PartUsage="Explicit"  
        Status="Unavailable"/><Component Class="Quantity"  
        ComponentType="PartialProduct" ID="r_181029_114121681_001995"  
        PartIDKeys="SignatureName SheetName"  
          Status="Unavailable"><Component  
            SignatureName="SIG003"><Component DescriptiveName="Bg_1_2"  
        SheetName="Bg_1_2"/></Component></Component><ConventionalPrintingParams  
        Class="Parameter" ID="r_181029_114121681_001996"  
        PrintingType="SheetFed" Status="Incomplete"  
        WorkStyle="Perfecting"/><Component Class="Quantity"  
        ComponentType="PartialProduct" ID="r_181029_114121743_002008"  
        PartIDKeys="SignatureName SheetName"  
          Status="Unavailable"><Component  
            SignatureName="SIG004"><Component DescriptiveName="Bg_1_3"  
        SheetName="Bg_1_3"/></Component></Component><ConventionalPrintingParams  
        Class="Parameter" ID="r_181029_114121743_002009"  
        PrintingType="SheetFed" Status="Incomplete"  
        WorkStyle="Perfecting"/><Component Class="Quantity"  
        ComponentType="PartialProduct" ID="r_181029_114121821_002021"  
        PartIDKeys="SignatureName SheetName"  
          Status="Unavailable"><Component  
            SignatureName="SIG005"><Component DescriptiveName="Bg_1_4"  
        SheetName="Bg_1_4"/></Component></Component><ConventionalPrintingParams  
        Class="Parameter" ID="r_181029_114121821_002022"  
        PrintingType="SheetFed" Status="Incomplete"  
        WorkStyle="Perfecting"/><Component Class="Quantity"  
        ComponentType="PartialProduct" ID="r_181029_114121883_002034"  
        PartIDKeys="SignatureName SheetName"  
          Status="Unavailable"><Component  
            SignatureName="SIG006"><Component DescriptiveName="Bg_2_1"  
        SheetName="Bg_2_1"/></Component></Component><ConventionalPrintingParams  
        Class="Parameter" ID="r_181029_114121883_002035"  
        PrintingType="SheetFed" Status="Incomplete"  
        WorkStyle="Perfecting"/><ApprovalSuccess Class="Parameter"  
        ID="r_181029_114121930_002046"  
        PartIDKeys="SignatureName SheetName" PartUsage="Explicit"  
        Status="Unavailable"/><Component Class="Quantity"  
        ComponentType="PartialProduct" ID="r_181029_114121961_002060"  
        PartIDKeys="SignatureName SheetName"  
          Status="Unavailable"><Component  
            SignatureName="SIG007"><Component DescriptiveName="Bg_2_2"  
        SheetName="Bg_2_2"/></Component></Component><ConventionalPrintingParams  
        Class="Parameter" ID="r_181029_114121961_002061"  
        PrintingType="SheetFed" Status="Incomplete"  
      WorkStyle="Perfecting"/></ResourcePool><JDF  
      Category="MISFin.SheetFin" DescriptiveName="Bg_1_1(KDL 78)"  
      HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3"  
      ID="n_181029_114121603_001962" JobPartID="1006" Status="Waiting"  
      Type="ProcessGroup" Types="HoleMaking"  
          xsi:type="HoleMaking"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121603_001963"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121603_001964"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          CombinedProcessIndex="0" Usage="Output"  
            rRef="r_181029_114121478_001912"><Part SheetName="Bg_1_1"  
              SignatureName="SIG002"/><AmountPool><PartAmount  
                Amount="6000"><Part Condition="Good" SheetName="Bg_1_1"  
              SignatureName="SIG002"/></PartAmount><PartAmount  
                Amount="0"><Part Condition="Waste" SheetName="Bg_1_1"  
          SignatureName="SIG002"/></PartAmount></AmountPool></ComponentLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121603_001965"><Part  
            SheetName="Bg_1_1"  
          SignatureName="SIG002"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121603_001966"/><ComponentLink  
          CombinedProcessIndex="0" Usage="Input"  
            rRef="r_181029_114121618_001970"><Part SheetName="Bg_1_1"  
          SignatureName="SIG002"/></ComponentLink><LayoutLink  
          Usage="Input"  
          rRef="r_181029_114121571_001958"/></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121603_001965"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG002"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT13M" SheetName="Bg_1_1"  
          TotalDuration="PT54M24S"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Test Stahlfolder KDL 78"  
          DeviceType="Test Stahlfolder KDL 78"  
          FriendlyName="KDL 78" ID="r_181029_114121603_001966"  
            Status="Available"><CostCenter  
      CostCenterID="5230"/></Device></ResourcePool></JDF><JDF  
      DescriptiveName="Bg_1_1(XL105-8P)" ID="n_181029_114121618_001967"  
      JobPartID="1007" Status="Waiting" Type="ConventionalPrinting"  
          xsi:type="ConventionalPrinting"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121618_001968"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121618_001969"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          Usage="Output" rRef="r_181029_114121618_001970"><Part  
            SheetName="Bg_1_1"  
              SignatureName="SIG002"/><AmountPool><PartAmount  
                Amount="6060"><Part Condition="Good" SheetName="Bg_1_1"  
              SignatureName="SIG002"/></PartAmount><PartAmount  
                Amount="1810"><Part Condition="Waste" SheetName="Bg_1_1"  
          SignatureName="SIG002"/></PartAmount></AmountPool></ComponentLink><ConventionalPrintingParamsLink  
          Usage="Input" rRef="r_181029_114121618_001971"/><DeviceLink  
          Usage="Input" rRef="r_181029_114121618_001972"><Part  
            SheetName="Bg_1_1"  
          SignatureName="SIG002"/></DeviceLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121618_001973"><Part  
            SheetName="Bg_1_1"  
          SignatureName="SIG002"/></NodeInfoLink><MediaLink  
          Usage="Input" rRef="r_181029_114121525_001934"><Part  
            SheetName="Bg_1_1"  
          SignatureName="SIG002"/></MediaLink><ExposedMediaLink  
          ProcessUsage="Plate" Usage="Input"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_1_1"  
          SignatureName="SIG002"/></ExposedMediaLink><InkLink  
          Usage="Input" rRef="r_181029_114121540_001937"><Part  
            SheetName="Bg_1_1"  
          SignatureName="SIG002"/></InkLink><ColorantControlLink  
          Usage="Input" rRef="r_181029_114121540_001938"><Part  
            SheetName="Bg_1_1"  
          SignatureName="SIG002"/></ColorantControlLink><LayoutLink  
          Usage="Input" rRef="r_181029_114121571_001958"/><PreviewLink  
          Usage="Input" rRef="r_181029_114134254_002071"><Part  
            SheetName="Bg_1_1"  
          SignatureName="SIG002"/></PreviewLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121618_001973"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG002"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT7M24S" SheetName="Bg_1_1"  
      TotalDuration="PT42M49S"/></NodeInfo></NodeInfo></ResourcePool></JDF><JDF  
      Category="MISPRE.PlateMaking" DescriptiveName="Bg_1(CTP TOP)"  
      ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121634_001974"  
      JobPartID="1026" Status="Waiting" Type="ProcessGroup"  
      Types="Imposition RIPing PreviewGeneration ImageSetting"  
          xsi:type="ProcessGroup"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121634_001975"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121634_001976"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ExposedMediaLink  
          Amount="1" CombinedProcessIndex="3" Usage="Output"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/><Part SheetName="Bg_1_4"  
          SignatureName="SIG005"/></ExposedMediaLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121634_001977"><Part  
            SheetName="Bg_1_1" SignatureName="SIG002"/><Part  
            SheetName="Bg_1_2" SignatureName="SIG003"/><Part  
            SheetName="Bg_1_3" SignatureName="SIG004"/><Part  
            SheetName="Bg_1_4"  
          SignatureName="SIG005"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121634_001978"/><RunListLink  
          CombinedProcessIndex="0 2 3" ProcessUsage="Document"  
          Usage="Input"  
          rRef="r_181029_114121556_001947"/><ApprovalSuccessLink  
          CombinedProcessIndex="0 1 2 3" Usage="Input"  
          rRef="r_181029_114121649_001982"/><LayoutLink  
          CombinedProcessIndex="0 1" Usage="Input"  
          rRef="r_181029_114121571_001958"/><RunListLink  
          CombinedProcessIndex="0 2 3" ProcessUsage="Marks"  
          Usage="Input" rRef="r_181029_114134254_002070"/><PreviewLink  
          ProcessUsage="Previews" Usage="Output"  
            rRef="r_181029_114134254_002071"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/><Part SheetName="Bg_1_4"  
          SignatureName="SIG005"/></PreviewLink><MediaLink  
          CombinedProcessIndex="1 3" Usage="Input"  
            rRef="r_181029_114121540_001935"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/><Part SheetName="Bg_1_4"  
          SignatureName="SIG005"/></MediaLink><ColorantControlLink  
          CombinedProcessIndex="1 2 3" Usage="Input"  
            rRef="r_181029_114121540_001938"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/><Part SheetName="Bg_1_4"  
          SignatureName="SIG005"/></ColorantControlLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121634_001977"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG002"><NodeInfo NodeStatus="Waiting"  
            SheetName="Bg_1_1"/></NodeInfo><NodeInfo  
              SignatureName="SIG003"><NodeInfo NodeStatus="Waiting"  
            SheetName="Bg_1_2"/></NodeInfo><NodeInfo  
              SignatureName="SIG004"><NodeInfo NodeStatus="Waiting"  
            SheetName="Bg_1_3"/></NodeInfo><NodeInfo  
              SignatureName="SIG005"><NodeInfo NodeStatus="Waiting"  
          SheetName="Bg_1_4"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Computer to Plate Tester TopSetter"  
          DeviceType="Computer to Plate Tester TopSetter"  
          FriendlyName="CTP TOP" ID="r_181029_114121634_001978"  
            Status="Available"><CostCenter  
      CostCenterID="3400"/></Device></ResourcePool></JDF><JDF  
      Category="MISPRE.ImpositionProofing"  
      DescriptiveName="Bg_1(CTP TOP)" ICSVersions="MISPRE_L1-1.3"  
      ID="n_181029_114121649_001979" JobPartID="1028" Status="Waiting"  
      Type="ProcessGroup" Types="Imposition ProofImaging"  
          xsi:type="ProcessGroup"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121649_001980"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121649_001981"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ApprovalSuccessLink  
          CombinedProcessIndex="1" Usage="Output"  
          rRef="r_181029_114121649_001982"/><ExposedMediaLink Amount="1"  
          CombinedProcessIndex="1" Usage="Output"  
          rRef="r_181029_114121649_001983"/><NodeInfoLink Usage="Input"  
            rRef="r_181029_114121649_001984"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/><Part SheetName="Bg_1_4"  
          SignatureName="SIG005"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121649_001985"/><LayoutLink  
          CombinedProcessIndex="0 1" Usage="Input"  
          rRef="r_181029_114121571_001958"/><MediaLink  
          CombinedProcessIndex="1" Usage="Input"  
            rRef="r_181029_114134285_002073"><Part SheetName="Bg_1_1"  
            SignatureName="SIG002"/><Part SheetName="Bg_1_2"  
            SignatureName="SIG003"/><Part SheetName="Bg_1_3"  
            SignatureName="SIG004"/><Part SheetName="Bg_1_4"  
          SignatureName="SIG005"/></MediaLink><RunListLink  
          CombinedProcessIndex="0 1" ProcessUsage="Document"  
          Usage="Input" rRef="r_181029_114121556_001947"/><RunListLink  
          CombinedProcessIndex="0 1" ProcessUsage="Marks" Usage="Input"  
          rRef="r_181029_114134254_002070"/><ColorantControlLink  
          CombinedProcessIndex="1" Usage="Input"  
          rRef="r_181029_114121540_001938"/></ResourceLinkPool><ResourcePool><ExposedMedia  
          Class="Handling" ID="r_181029_114121649_001983"  
          PartIDKeys="SignatureName SheetName" PartUsage="Explicit"  
          ProofType="Imposition" Status="Unavailable"><Media  
            MediaType="Paper"/><MediaRef  
            rRef="r_181029_114134285_002073"/><ExposedMedia  
              SignatureName="SIG002"><ExposedMedia  
            SheetName="Bg_1_1"/></ExposedMedia><ExposedMedia  
              SignatureName="SIG003"><ExposedMedia  
            SheetName="Bg_1_2"/></ExposedMedia><ExposedMedia  
              SignatureName="SIG004"><ExposedMedia  
            SheetName="Bg_1_3"/></ExposedMedia><ExposedMedia  
              SignatureName="SIG005"><ExposedMedia  
          SheetName="Bg_1_4"/></ExposedMedia></ExposedMedia><NodeInfo  
          Class="Parameter" ID="r_181029_114121649_001984"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG002"><NodeInfo NodeStatus="Waiting"  
            SheetName="Bg_1_1"/></NodeInfo><NodeInfo  
              SignatureName="SIG003"><NodeInfo NodeStatus="Waiting"  
            SheetName="Bg_1_2"/></NodeInfo><NodeInfo  
              SignatureName="SIG004"><NodeInfo NodeStatus="Waiting"  
            SheetName="Bg_1_3"/></NodeInfo><NodeInfo  
              SignatureName="SIG005"><NodeInfo NodeStatus="Waiting"  
          SheetName="Bg_1_4"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Computer to Plate Tester TopSetter"  
          DeviceType="Computer to Plate Tester TopSetter"  
          FriendlyName="CTP TOP" ID="r_181029_114121649_001985"  
            Status="Available"><CostCenter  
          CostCenterID="3400"/></Device><Media Class="Consumable"  
          ID="r_181029_114134285_002073" MediaType="Paper"  
          PartIDKeys="SignatureName SheetName" Status="Available"><Media  
              SignatureName="SIG002"><Media  
            SheetName="Bg_1_1"/></Media><Media  
              SignatureName="SIG003"><Media  
            SheetName="Bg_1_2"/></Media><Media  
              SignatureName="SIG004"><Media  
            SheetName="Bg_1_3"/></Media><Media  
              SignatureName="SIG005"><Media  
      SheetName="Bg_1_4"/></Media></Media></ResourcePool></JDF><JDF  
      Category="MISFin.SheetFin" DescriptiveName="Bg_1_2(KDL 78)"  
      HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3"  
      ID="n_181029_114121665_001987" JobPartID="1012" Status="Waiting"  
      Type="ProcessGroup" Types="HoleMaking"  
          xsi:type="HoleMaking"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121681_001988"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121681_001989"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          CombinedProcessIndex="0" Usage="Output"  
            rRef="r_181029_114121478_001912"><Part SheetName="Bg_1_2"  
              SignatureName="SIG003"/><AmountPool><PartAmount  
                Amount="6000"><Part Condition="Good" SheetName="Bg_1_2"  
              SignatureName="SIG003"/></PartAmount><PartAmount  
                Amount="0"><Part Condition="Waste" SheetName="Bg_1_2"  
          SignatureName="SIG003"/></PartAmount></AmountPool></ComponentLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121681_001990"><Part  
            SheetName="Bg_1_2"  
          SignatureName="SIG003"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121681_001991"/><ComponentLink  
          CombinedProcessIndex="0" Usage="Input"  
            rRef="r_181029_114121681_001995"><Part SheetName="Bg_1_2"  
          SignatureName="SIG003"/></ComponentLink><LayoutLink  
          Usage="Input"  
          rRef="r_181029_114121571_001958"/></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121681_001990"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG003"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT13M" SheetName="Bg_1_2"  
          TotalDuration="PT54M24S"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Test Stahlfolder KDL 78"  
          DeviceType="Test Stahlfolder KDL 78"  
          FriendlyName="KDL 78" ID="r_181029_114121681_001991"  
            Status="Available"><CostCenter  
      CostCenterID="5230"/></Device></ResourcePool></JDF><JDF  
      DescriptiveName="Bg_1_2(XL105-8P)" ID="n_181029_114121681_001992"  
      JobPartID="1013" Status="Waiting" Type="ConventionalPrinting"  
          xsi:type="ConventionalPrinting"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121681_001993"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121681_001994"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          Usage="Output" rRef="r_181029_114121681_001995"><Part  
            SheetName="Bg_1_2"  
              SignatureName="SIG003"/><AmountPool><PartAmount  
                Amount="6060"><Part Condition="Good" SheetName="Bg_1_2"  
              SignatureName="SIG003"/></PartAmount><PartAmount  
                Amount="1810"><Part Condition="Waste" SheetName="Bg_1_2"  
          SignatureName="SIG003"/></PartAmount></AmountPool></ComponentLink><ConventionalPrintingParamsLink  
          Usage="Input" rRef="r_181029_114121681_001996"/><DeviceLink  
          Usage="Input" rRef="r_181029_114121681_001997"><Part  
            SheetName="Bg_1_2"  
          SignatureName="SIG003"/></DeviceLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121681_001998"><Part  
            SheetName="Bg_1_2"  
          SignatureName="SIG003"/></NodeInfoLink><MediaLink  
          Usage="Input" rRef="r_181029_114121525_001934"><Part  
            SheetName="Bg_1_2"  
          SignatureName="SIG003"/></MediaLink><ExposedMediaLink  
          ProcessUsage="Plate" Usage="Input"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_1_2"  
          SignatureName="SIG003"/></ExposedMediaLink><InkLink  
          Usage="Input" rRef="r_181029_114121540_001937"><Part  
            SheetName="Bg_1_2"  
          SignatureName="SIG003"/></InkLink><ColorantControlLink  
          Usage="Input" rRef="r_181029_114121540_001938"><Part  
            SheetName="Bg_1_2"  
          SignatureName="SIG003"/></ColorantControlLink><LayoutLink  
          Usage="Input" rRef="r_181029_114121571_001958"/><PreviewLink  
          Usage="Input" rRef="r_181029_114134254_002071"><Part  
            SheetName="Bg_1_2"  
          SignatureName="SIG003"/></PreviewLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121681_001998"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG003"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT7M24S" SheetName="Bg_1_2"  
      TotalDuration="PT42M49S"/></NodeInfo></NodeInfo></ResourcePool></JDF><JDF  
      Category="MISFin.SheetFin" DescriptiveName="Bg_1_3(KDL 78)"  
      HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3"  
      ID="n_181029_114121727_002000" JobPartID="1018" Status="Waiting"  
      Type="ProcessGroup" Types="HoleMaking"  
          xsi:type="HoleMaking"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121727_002001"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121727_002002"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          CombinedProcessIndex="0" Usage="Output"  
            rRef="r_181029_114121478_001912"><Part SheetName="Bg_1_3"  
              SignatureName="SIG004"/><AmountPool><PartAmount  
                Amount="6000"><Part Condition="Good" SheetName="Bg_1_3"  
              SignatureName="SIG004"/></PartAmount><PartAmount  
                Amount="0"><Part Condition="Waste" SheetName="Bg_1_3"  
          SignatureName="SIG004"/></PartAmount></AmountPool></ComponentLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121743_002003"><Part  
            SheetName="Bg_1_3"  
          SignatureName="SIG004"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121743_002004"/><ComponentLink  
          CombinedProcessIndex="0" Usage="Input"  
            rRef="r_181029_114121743_002008"><Part SheetName="Bg_1_3"  
          SignatureName="SIG004"/></ComponentLink><LayoutLink  
          Usage="Input"  
          rRef="r_181029_114121571_001958"/></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121743_002003"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG004"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT13M" SheetName="Bg_1_3"  
          TotalDuration="PT54M24S"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Test Stahlfolder KDL 78"  
          DeviceType="Test Stahlfolder KDL 78"  
          FriendlyName="KDL 78" ID="r_181029_114121743_002004"  
            Status="Available"><CostCenter  
      CostCenterID="5230"/></Device></ResourcePool></JDF><JDF  
      DescriptiveName="Bg_1_3(XL105-8P)" ID="n_181029_114121743_002005"  
      JobPartID="1019" Status="Waiting" Type="ConventionalPrinting"  
          xsi:type="ConventionalPrinting"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121743_002006"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121743_002007"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          Usage="Output" rRef="r_181029_114121743_002008"><Part  
            SheetName="Bg_1_3"  
              SignatureName="SIG004"/><AmountPool><PartAmount  
                Amount="6060"><Part Condition="Good" SheetName="Bg_1_3"  
              SignatureName="SIG004"/></PartAmount><PartAmount  
                Amount="1810"><Part Condition="Waste" SheetName="Bg_1_3"  
          SignatureName="SIG004"/></PartAmount></AmountPool></ComponentLink><ConventionalPrintingParamsLink  
          Usage="Input" rRef="r_181029_114121743_002009"/><DeviceLink  
          Usage="Input" rRef="r_181029_114121743_002010"><Part  
            SheetName="Bg_1_3"  
          SignatureName="SIG004"/></DeviceLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121743_002011"><Part  
            SheetName="Bg_1_3"  
          SignatureName="SIG004"/></NodeInfoLink><MediaLink  
          Usage="Input" rRef="r_181029_114121525_001934"><Part  
            SheetName="Bg_1_3"  
          SignatureName="SIG004"/></MediaLink><ExposedMediaLink  
          ProcessUsage="Plate" Usage="Input"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_1_3"  
          SignatureName="SIG004"/></ExposedMediaLink><InkLink  
          Usage="Input" rRef="r_181029_114121540_001937"><Part  
            SheetName="Bg_1_3"  
          SignatureName="SIG004"/></InkLink><ColorantControlLink  
          Usage="Input" rRef="r_181029_114121540_001938"><Part  
            SheetName="Bg_1_3"  
          SignatureName="SIG004"/></ColorantControlLink><LayoutLink  
          Usage="Input" rRef="r_181029_114121571_001958"/><PreviewLink  
          Usage="Input" rRef="r_181029_114134254_002071"><Part  
            SheetName="Bg_1_3"  
          SignatureName="SIG004"/></PreviewLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121743_002011"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG004"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT7M24S" SheetName="Bg_1_3"  
      TotalDuration="PT42M49S"/></NodeInfo></NodeInfo></ResourcePool></JDF><JDF  
      Category="MISFin.SheetFin" DescriptiveName="Bg_1_4(KDL 78)"  
      HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3"  
      ID="n_181029_114121805_002013" JobPartID="1024" Status="Waiting"  
      Type="ProcessGroup" Types="HoleMaking"  
          xsi:type="HoleMaking"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121805_002014"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121805_002015"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          CombinedProcessIndex="0" Usage="Output"  
            rRef="r_181029_114121478_001912"><Part SheetName="Bg_1_4"  
              SignatureName="SIG005"/><AmountPool><PartAmount  
                Amount="6000"><Part Condition="Good" SheetName="Bg_1_4"  
              SignatureName="SIG005"/></PartAmount><PartAmount  
                Amount="0"><Part Condition="Waste" SheetName="Bg_1_4"  
          SignatureName="SIG005"/></PartAmount></AmountPool></ComponentLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121805_002016"><Part  
            SheetName="Bg_1_4"  
          SignatureName="SIG005"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121805_002017"/><ComponentLink  
          CombinedProcessIndex="0" Usage="Input"  
            rRef="r_181029_114121821_002021"><Part SheetName="Bg_1_4"  
          SignatureName="SIG005"/></ComponentLink><LayoutLink  
          Usage="Input"  
          rRef="r_181029_114121571_001958"/></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121805_002016"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG005"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT13M" SheetName="Bg_1_4"  
          TotalDuration="PT54M24S"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Test Stahlfolder KDL 78"  
          DeviceType="Test Stahlfolder KDL 78"  
          FriendlyName="KDL 78" ID="r_181029_114121805_002017"  
            Status="Available"><CostCenter  
      CostCenterID="5230"/></Device></ResourcePool></JDF><JDF  
      DescriptiveName="Bg_1_4(XL105-8P)" ID="n_181029_114121821_002018"  
      JobPartID="1025" Status="Waiting" Type="ConventionalPrinting"  
          xsi:type="ConventionalPrinting"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121821_002019"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121821_002020"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          Usage="Output" rRef="r_181029_114121821_002021"><Part  
            SheetName="Bg_1_4"  
              SignatureName="SIG005"/><AmountPool><PartAmount  
                Amount="6060"><Part Condition="Good" SheetName="Bg_1_4"  
              SignatureName="SIG005"/></PartAmount><PartAmount  
                Amount="1810"><Part Condition="Waste" SheetName="Bg_1_4"  
          SignatureName="SIG005"/></PartAmount></AmountPool></ComponentLink><ConventionalPrintingParamsLink  
          Usage="Input" rRef="r_181029_114121821_002022"/><DeviceLink  
          Usage="Input" rRef="r_181029_114121821_002023"><Part  
            SheetName="Bg_1_4"  
          SignatureName="SIG005"/></DeviceLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121821_002024"><Part  
            SheetName="Bg_1_4"  
          SignatureName="SIG005"/></NodeInfoLink><MediaLink  
          Usage="Input" rRef="r_181029_114121525_001934"><Part  
            SheetName="Bg_1_4"  
          SignatureName="SIG005"/></MediaLink><ExposedMediaLink  
          ProcessUsage="Plate" Usage="Input"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_1_4"  
          SignatureName="SIG005"/></ExposedMediaLink><InkLink  
          Usage="Input" rRef="r_181029_114121540_001937"><Part  
            SheetName="Bg_1_4"  
          SignatureName="SIG005"/></InkLink><ColorantControlLink  
          Usage="Input" rRef="r_181029_114121540_001938"><Part  
            SheetName="Bg_1_4"  
          SignatureName="SIG005"/></ColorantControlLink><LayoutLink  
          Usage="Input" rRef="r_181029_114121571_001958"/><PreviewLink  
          Usage="Input" rRef="r_181029_114134254_002071"><Part  
            SheetName="Bg_1_4"  
          SignatureName="SIG005"/></PreviewLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121821_002024"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG005"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT7M24S" SheetName="Bg_1_4"  
      TotalDuration="PT42M49S"/></NodeInfo></NodeInfo></ResourcePool></JDF><JDF  
      Category="MISFin.SheetFin" DescriptiveName="Bg_2_1(POL 137)"  
      HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3"  
      ID="n_181029_114121883_002026" JobPartID="1030" Status="Waiting"  
      Type="ProcessGroup" Types="HoleMaking"  
          xsi:type="HoleMaking"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121883_002027"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121883_002028"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          CombinedProcessIndex="0" Usage="Output"  
            rRef="r_181029_114121478_001912"><Part SheetName="Bg_2_1"  
              SignatureName="SIG006"/><AmountPool><PartAmount  
                Amount="6000"><Part Condition="Good" SheetName="Bg_2_1"  
              SignatureName="SIG006"/></PartAmount><PartAmount  
                Amount="0"><Part Condition="Waste" SheetName="Bg_2_1"  
          SignatureName="SIG006"/></PartAmount></AmountPool></ComponentLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121883_002029"><Part  
            SheetName="Bg_2_1"  
          SignatureName="SIG006"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121883_002030"/><ComponentLink  
          CombinedProcessIndex="0" Usage="Input"  
            rRef="r_181029_114121883_002034"><Part SheetName="Bg_2_1"  
          SignatureName="SIG006"/></ComponentLink><LayoutLink  
          Usage="Input"  
          rRef="r_181029_114121571_001958"/></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121883_002029"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG006"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT21M" SheetName="Bg_2_1"  
          TotalDuration="PT1H33M36S"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Planschneider Polar XT 137"  
          DeviceType="Planschneider Polar XT 137" FriendlyName="POL 137"  
          ID="r_181029_114121883_002030" Status="Available"><CostCenter  
      CostCenterID="5120"/></Device></ResourcePool></JDF><JDF  
      DescriptiveName="Bg_2_1(XL105-8P)" ID="n_181029_114121883_002031"  
      JobPartID="1031" Status="Waiting" Type="ConventionalPrinting"  
          xsi:type="ConventionalPrinting"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121883_002032"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121883_002033"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          Usage="Output" rRef="r_181029_114121883_002034"><Part  
            SheetName="Bg_2_1"  
              SignatureName="SIG006"/><AmountPool><PartAmount  
                Amount="6060"><Part Condition="Good" SheetName="Bg_2_1"  
              SignatureName="SIG006"/></PartAmount><PartAmount  
                Amount="2200"><Part Condition="Waste" SheetName="Bg_2_1"  
          SignatureName="SIG006"/></PartAmount></AmountPool></ComponentLink><ConventionalPrintingParamsLink  
          Usage="Input" rRef="r_181029_114121883_002035"/><DeviceLink  
          Usage="Input" rRef="r_181029_114121883_002036"><Part  
            SheetName="Bg_2_1"  
          SignatureName="SIG006"/></DeviceLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121883_002037"><Part  
            SheetName="Bg_2_1"  
          SignatureName="SIG006"/></NodeInfoLink><MediaLink  
          Usage="Input" rRef="r_181029_114121525_001934"><Part  
            SheetName="Bg_2_1"  
          SignatureName="SIG006"/></MediaLink><ExposedMediaLink  
          ProcessUsage="Plate" Usage="Input"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_2_1"  
          SignatureName="SIG006"/></ExposedMediaLink><InkLink  
          Usage="Input" rRef="r_181029_114121540_001937"><Part  
            SheetName="Bg_2_1"  
          SignatureName="SIG006"/></InkLink><ColorantControlLink  
          Usage="Input" rRef="r_181029_114121540_001938"><Part  
            SheetName="Bg_2_1"  
          SignatureName="SIG006"/></ColorantControlLink><LayoutLink  
          Usage="Input" rRef="r_181029_114121571_001958"/><PreviewLink  
          Usage="Input" rRef="r_181029_114134254_002071"><Part  
            SheetName="Bg_2_1"  
          SignatureName="SIG006"/></PreviewLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121883_002037"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG006"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT8M24S" SheetName="Bg_2_1"  
      TotalDuration="PT45M34S"/></NodeInfo></NodeInfo></ResourcePool></JDF><JDF  
      Category="MISPRE.PlateMaking" DescriptiveName="Bg_2(CTP TOP)"  
      ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121899_002038"  
      JobPartID="1038" Status="Waiting" Type="ProcessGroup"  
      Types="Imposition RIPing PreviewGeneration ImageSetting"  
          xsi:type="ProcessGroup"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121899_002039"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121899_002040"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ExposedMediaLink  
          Amount="1" CombinedProcessIndex="3" Usage="Output"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/><Part SheetName="Bg_2_2"  
          SignatureName="SIG007"/></ExposedMediaLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121915_002041"><Part  
            SheetName="Bg_2_1" SignatureName="SIG006"/><Part  
            SheetName="Bg_2_2"  
          SignatureName="SIG007"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121915_002042"/><RunListLink  
          CombinedProcessIndex="0 2 3" ProcessUsage="Document"  
          Usage="Input"  
          rRef="r_181029_114121556_001947"/><ApprovalSuccessLink  
          CombinedProcessIndex="0 1 2 3" Usage="Input"  
          rRef="r_181029_114121930_002046"/><LayoutLink  
          CombinedProcessIndex="0 1" Usage="Input"  
          rRef="r_181029_114121571_001958"/><RunListLink  
          CombinedProcessIndex="0 2 3" ProcessUsage="Marks"  
          Usage="Input" rRef="r_181029_114134254_002070"/><PreviewLink  
          ProcessUsage="Previews" Usage="Output"  
            rRef="r_181029_114134254_002071"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/><Part SheetName="Bg_2_2"  
          SignatureName="SIG007"/></PreviewLink><MediaLink  
          CombinedProcessIndex="1 3" Usage="Input"  
            rRef="r_181029_114121540_001935"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/><Part SheetName="Bg_2_2"  
          SignatureName="SIG007"/></MediaLink><ColorantControlLink  
          CombinedProcessIndex="1 2 3" Usage="Input"  
            rRef="r_181029_114121540_001938"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/><Part SheetName="Bg_2_2"  
          SignatureName="SIG007"/></ColorantControlLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121915_002041"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG006"><NodeInfo NodeStatus="Waiting"  
            SheetName="Bg_2_1"/></NodeInfo><NodeInfo  
              SignatureName="SIG007"><NodeInfo NodeStatus="Waiting"  
          SheetName="Bg_2_2"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Computer to Plate Tester TopSetter"  
          DeviceType="Computer to Plate Tester TopSetter"  
          FriendlyName="CTP TOP" ID="r_181029_114121915_002042"  
            Status="Available"><CostCenter  
      CostCenterID="3400"/></Device></ResourcePool></JDF><JDF  
      Category="MISPRE.ImpositionProofing"  
      DescriptiveName="Bg_2(CTP TOP)" ICSVersions="MISPRE_L1-1.3"  
      ID="n_181029_114121930_002043" JobPartID="1040" Status="Waiting"  
      Type="ProcessGroup" Types="Imposition ProofImaging"  
          xsi:type="ProcessGroup"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121930_002044"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121930_002045"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ApprovalSuccessLink  
          CombinedProcessIndex="1" Usage="Output"  
          rRef="r_181029_114121930_002046"/><ExposedMediaLink Amount="1"  
          CombinedProcessIndex="1" Usage="Output"  
          rRef="r_181029_114121930_002047"/><NodeInfoLink Usage="Input"  
            rRef="r_181029_114121930_002048"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/><Part SheetName="Bg_2_2"  
          SignatureName="SIG007"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121930_002049"/><LayoutLink  
          CombinedProcessIndex="0 1" Usage="Input"  
          rRef="r_181029_114121571_001958"/><MediaLink  
          CombinedProcessIndex="1" Usage="Input"  
            rRef="r_181029_114134285_002074"><Part SheetName="Bg_2_1"  
            SignatureName="SIG006"/><Part SheetName="Bg_2_2"  
          SignatureName="SIG007"/></MediaLink><RunListLink  
          CombinedProcessIndex="0 1" ProcessUsage="Document"  
          Usage="Input" rRef="r_181029_114121556_001947"/><RunListLink  
          CombinedProcessIndex="0 1" ProcessUsage="Marks" Usage="Input"  
          rRef="r_181029_114134254_002070"/><ColorantControlLink  
          CombinedProcessIndex="1" Usage="Input"  
          rRef="r_181029_114121540_001938"/></ResourceLinkPool><ResourcePool><ExposedMedia  
          Class="Handling" ID="r_181029_114121930_002047"  
          PartIDKeys="SignatureName SheetName" PartUsage="Explicit"  
          ProofType="Imposition" Status="Unavailable"><Media  
            MediaType="Paper"/><MediaRef  
            rRef="r_181029_114134285_002074"/><ExposedMedia  
              SignatureName="SIG006"><ExposedMedia  
            SheetName="Bg_2_1"/></ExposedMedia><ExposedMedia  
              SignatureName="SIG007"><ExposedMedia  
          SheetName="Bg_2_2"/></ExposedMedia></ExposedMedia><NodeInfo  
          Class="Parameter" ID="r_181029_114121930_002048"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG006"><NodeInfo NodeStatus="Waiting"  
            SheetName="Bg_2_1"/></NodeInfo><NodeInfo  
              SignatureName="SIG007"><NodeInfo NodeStatus="Waiting"  
          SheetName="Bg_2_2"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Computer to Plate Tester TopSetter"  
          DeviceType="Computer to Plate Tester TopSetter"  
          FriendlyName="CTP TOP" ID="r_181029_114121930_002049"  
            Status="Available"><CostCenter  
          CostCenterID="3400"/></Device><Media Class="Consumable"  
          ID="r_181029_114134285_002074" MediaType="Paper"  
          PartIDKeys="SignatureName SheetName" Status="Available"><Media  
              SignatureName="SIG006"><Media  
            SheetName="Bg_2_1"/></Media><Media  
              SignatureName="SIG007"><Media  
      SheetName="Bg_2_2"/></Media></Media></ResourcePool></JDF><JDF  
      Category="MISFin.SheetFin" DescriptiveName="Bg_2_2(POL 137)"  
      HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3"  
      ID="n_181029_114121961_002052" JobPartID="1036" Status="Waiting"  
      Type="ProcessGroup" Types="HoleMaking"  
          xsi:type="HoleMaking"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121961_002053"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121961_002054"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          CombinedProcessIndex="0" Usage="Output"  
            rRef="r_181029_114121478_001912"><Part SheetName="Bg_2_2"  
              SignatureName="SIG007"/><AmountPool><PartAmount  
                Amount="6000"><Part Condition="Good" SheetName="Bg_2_2"  
              SignatureName="SIG007"/></PartAmount><PartAmount  
                Amount="0"><Part Condition="Waste" SheetName="Bg_2_2"  
          SignatureName="SIG007"/></PartAmount></AmountPool></ComponentLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121961_002055"><Part  
            SheetName="Bg_2_2"  
          SignatureName="SIG007"/></NodeInfoLink><DeviceLink  
          Usage="Input" rRef="r_181029_114121961_002056"/><ComponentLink  
          CombinedProcessIndex="0" Usage="Input"  
            rRef="r_181029_114121961_002060"><Part SheetName="Bg_2_2"  
          SignatureName="SIG007"/></ComponentLink><LayoutLink  
          Usage="Input"  
          rRef="r_181029_114121571_001958"/></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121961_002055"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG007"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT21M" SheetName="Bg_2_2"  
          TotalDuration="PT1H33M36S"/></NodeInfo></NodeInfo><Device  
          Class="Implementation"  
          DescriptiveName="Planschneider Polar XT 137"  
          DeviceType="Planschneider Polar XT 137" FriendlyName="POL 137"  
          ID="r_181029_114121961_002056" Status="Available"><CostCenter  
      CostCenterID="5120"/></Device></ResourcePool></JDF><JDF  
      DescriptiveName="Bg_2_2(XL105-8P)" ID="n_181029_114121961_002057"  
      JobPartID="1037" Status="Waiting" Type="ConventionalPrinting"  
          xsi:type="ConventionalPrinting"><AuditPool><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          ID="a_181029_114121961_002058"  
          TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
          AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
          Author="ProcessEditorFrameWork" ID="a_181029_114121961_002059"  
          TimeStamp="2018-10-29T11:41:21+01:00"  
          XPath="."/></AuditPool><ResourceLinkPool><ComponentLink  
          Usage="Output" rRef="r_181029_114121961_002060"><Part  
            SheetName="Bg_2_2"  
              SignatureName="SIG007"/><AmountPool><PartAmount  
                Amount="6060"><Part Condition="Good" SheetName="Bg_2_2"  
              SignatureName="SIG007"/></PartAmount><PartAmount  
                Amount="2200"><Part Condition="Waste" SheetName="Bg_2_2"  
          SignatureName="SIG007"/></PartAmount></AmountPool></ComponentLink><ConventionalPrintingParamsLink  
          Usage="Input" rRef="r_181029_114121961_002061"/><DeviceLink  
          Usage="Input" rRef="r_181029_114121961_002062"><Part  
            SheetName="Bg_2_2"  
          SignatureName="SIG007"/></DeviceLink><NodeInfoLink  
          Usage="Input" rRef="r_181029_114121961_002063"><Part  
            SheetName="Bg_2_2"  
          SignatureName="SIG007"/></NodeInfoLink><MediaLink  
          Usage="Input" rRef="r_181029_114121525_001934"><Part  
            SheetName="Bg_2_2"  
          SignatureName="SIG007"/></MediaLink><ExposedMediaLink  
          ProcessUsage="Plate" Usage="Input"  
            rRef="r_181029_114121540_001936"><Part SheetName="Bg_2_2"  
          SignatureName="SIG007"/></ExposedMediaLink><InkLink  
          Usage="Input" rRef="r_181029_114121540_001937"><Part  
            SheetName="Bg_2_2"  
          SignatureName="SIG007"/></InkLink><ColorantControlLink  
          Usage="Input" rRef="r_181029_114121540_001938"><Part  
            SheetName="Bg_2_2"  
          SignatureName="SIG007"/></ColorantControlLink><LayoutLink  
          Usage="Input" rRef="r_181029_114121571_001958"/><PreviewLink  
          Usage="Input" rRef="r_181029_114134254_002071"><Part  
            SheetName="Bg_2_2"  
          SignatureName="SIG007"/></PreviewLink></ResourceLinkPool><ResourcePool><NodeInfo  
          Class="Parameter" ID="r_181029_114121961_002063"  
          PartIDKeys="SignatureName SheetName" PartUsage="Implicit"  
            Status="Available"><NodeInfo  
              SignatureName="SIG007"><NodeInfo NodeStatus="Waiting"  
              SetupDuration="PT8M24S" SheetName="Bg_2_2"  
    TotalDuration="PT45M34S"/></NodeInfo></NodeInfo></ResourcePool></JDF></JDF><JDF  
    Category="MISPRE.PrePressPreparation"  
    DescriptiveName="Gesamtes Produkt" ICSVersions="MISPRE_L1-1.3"  
    ID="n_181029_114121556_001944" JobPartID="1039" Status="Waiting"  
    Type="ProcessGroup" Types="PrePressPreparation"  
        xsi:type="ProcessGroup"><AuditPool><Created  
        AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
        ID="a_181029_114121556_001945"  
        TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
        AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
        Author="ProcessEditorFrameWork" ID="a_181029_114121556_001946"  
        TimeStamp="2018-10-29T11:41:21+01:00"  
        XPath="."/></AuditPool><ResourceLinkPool><RunListLink  
        CombinedProcessIndex="0" Usage="Output"  
        rRef="r_181029_114121556_001947"/><RunListLink  
        CombinedProcessIndex="0" ProcessUsage="Document" Usage="Input"  
        rRef="r_181029_114134285_002075"/></ResourceLinkPool><ResourcePool><RunList  
        Class="Parameter" DescriptiveName="The RunList"  
        ID="r_181029_114134285_002075" NPage="100"  
    Status="Available"/></ResourcePool></JDF><JDF  
    DescriptiveName="Bg_2(Stripping)" ID="n_181029_114121571_001955"  
    JobPartID="1041" Status="Waiting" Type="Stripping"  
        xsi:type="Stripping"><AuditPool><Created  
        AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
        ID="a_181029_114121571_001956"  
        TimeStamp="2018-10-29T11:41:21+01:00"/><Created  
        AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74"  
        Author="ProcessEditorFrameWork" ID="a_181029_114121571_001957"  
        TimeStamp="2018-10-29T11:41:21+01:00"  
        XPath="."/></AuditPool><ResourceLinkPool><LayoutLink  
        Usage="Output"  
        rRef="r_181029_114121571_001958"/><StrippingParamsLink  
        Usage="Input" rRef="r_181029_114121571_001959"><Part  
          SheetName="Bg_0" SignatureName="SIG001"/><Part  
          SheetName="Bg_1_1" SignatureName="SIG002"/><Part  
          SheetName="Bg_1_2" SignatureName="SIG003"/><Part  
          SheetName="Bg_1_3" SignatureName="SIG004"/><Part  
          SheetName="Bg_1_4" SignatureName="SIG005"/><Part  
          SheetName="Bg_2_1" SignatureName="SIG006"/><Part  
          SheetName="Bg_2_2"  
        SignatureName="SIG007"/></StrippingParamsLink><AssemblyLink  
        Usage="Input" rRef="r_181029_114121603_001961"/><RunListLink  
        ProcessUsage="Marks" Usage="Output" rRef="r_181029_114134254_002070"/></ResourceLinkPool><ResourcePool/></JDF></JDF>  
Mitglied: 137443
137443 Oct 29, 2018 at 11:12:35 (UTC)
Goto Top
# Quellpfadangabe
$quellpfad = "C:\Users\Admin\Desktop"   
# Alle *.rdf-Dateien rekursiv im Quellordner durchgehen
dir -LiteralPath $quellpfad -Filter *.jdf -Recurse | ?{!$_.PSIsContainer} | %{
    # Datei als XML-Object laden
   $xml = new-object XML
   $xml.Load($_.FullName)
   # NamespaceManager erstellen
   $ns = new-Object System.Xml.XmlNamespaceManager $xml.NameTable
   $xml.SelectNodes('//*') | ?{$_.NamespaceURI -ne ''} | select @{n='Prefix';e={$_.GetPrefixOfNamespace($_.NamespaceURI)}},NamespaceURI | select Prefix,NamespaceURI -unique | %{if($_.Prefix -eq ''){$_.Prefix = 'default'};$ns.AddNamespace($_.Prefix,$_.NamespaceURI)}  

    $xml.SelectNodes('//default:Component[@SignatureName]',$ns) | %{$_.Component.SheetName = $_.SignatureName}  
     # Datei wieder unter dem selben Namen speichern
    $xml.Save($_.FullName)
}
Mitglied: 137443
137443 Oct 29, 2018 updated at 11:20:28 (UTC)
Goto Top
Btw. die XML hat an sich schon so Formatfehler!
Spezielle Zeichen wie &, ', <, > und " in Text-Inhalten der Elemente und Attribute müssen wie in HTML escaped werden
http://www.devtrain.de/artikel_296.aspx
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 11:40:46 (UTC)
Goto Top
Hallo!

Beim ersten Script habe ich ja noch halbwegs durchgeblickt, hier aber nicht mehr. Daher meine Frage: Soll das jetzt alles "erschlagen", also sämtliche Attribute von SheetName korrekt überschreiben?

Funktioniert beim Testlauf in meiner Umgebung leider nicht, siehe xml anbei.


Gruß JENS

<?xml version="1.0" encoding="UTF-8"?>  
<JDF CommentURL="file://192.168.0.1/" DescriptiveName="Testjob" HDM:Auth="1000E8AE94EEEFED5473F5B6A08F1ECB9808" ICSVersions="Base_L2-1.3 MIS_L2-1.3" ID="n_181029_114121415_001884" JobID="18-12006" JobPartID="18-12006" MaxVersion="1.3" RelatedJobID="18-11017" Status="Waiting" Type="Product" Version="1.3" xmlns="http://www.CIP4.org/JDFSchema_1_1" xmlns:HDM="test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="Product">  
  <AuditPool>
    <Created AgentName="test" AgentVersion="7.1000 (Creator:13.00.309.762)" Author="Test" ID="a_181029_114121415_001886" TimeStamp="2018-10-29T11:41:21+01:00" />  
  </AuditPool>
  <!--Generated by the CIP4 Java open source JDF Library version : CIP4 JDF Writer Java 1.4a BLD 74-->
  <Comment AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="c_181029_114121447_001888" Name="JobDescription">Testjob</Comment>  
  <ResourcePool>
    <CustomerInfo Class="Parameter" CustomerID="52082" CustomerJobName="Testjob" DescriptiveName="Test +Test + Test GmbH &amp; Co. KG" ID="r_181029_114121447_001889" PartUsage="Implicit" Status="Available">  
      <ContactRef rRef="r_181029_114121447_001890" />  
      <ContactRef rRef="r_181029_114121462_001893" />  
      <ContactRef rRef="r_181029_114121462_001897" />  
      <ContactRef rRef="r_181029_114121462_001898" />  
    </CustomerInfo>
    <Contact Class="Parameter" ContactTypes="Customer" DescriptiveName="Test +Test + Test GmbH &amp; Co. KG" ID="r_181029_114121447_001890" Status="Available">  
      <CompanyRef rRef="r_181029_114121447_001891" />  
      <AddressRef rRef="r_181029_114121447_001892" />  
    </Contact>
    <Company Class="Parameter" DescriptiveName="Test +Test + Test GmbH &amp; Co. KG" ID="r_181029_114121447_001891" OrganizationName="Test + Test + Test GmbH &amp; Co. KG" Status="Available" />  
    <Address City="Test-City" Class="Parameter" Country="Deutschland" CountryCode="DE" ID="r_181029_114121447_001892" PostalCode="9999999" Status="Available" Street="Teststraße 1111111" />  
    <Contact Class="Parameter" ContactTypes="Administrator Approver" DescriptiveName="Herr Test-Test" ID="r_181029_114121462_001893" Status="Available">  
      <PersonRef rRef="r_181029_114121462_001894" />  
      <AddressRef rRef="r_181029_114121462_001895" />  
    </Contact>
    <Person AdditionalNames="" Class="Parameter" DescriptiveName="Herr Test-Test" FamilyName="Test-Test" FirstName="" ID="r_181029_114121462_001894" JobTitle="" NamePrefix="Herr" NameSuffix="Herr Test-Test" Status="Available">  
      <AddressRef rRef="r_181029_114121462_001896" />  
    </Person>
    <Address City="Test-City" Class="Parameter" Country="Deutschland" CountryCode="DE" ID="r_181029_114121462_001895" PostalCode="9999999" Status="Available" Street="Teststraße 1111111" />  
    <Address City="Test-City" Class="Parameter" Country="Deutschland" CountryCode="DE" ID="r_181029_114121462_001896" PostalCode="9999999" Status="Available" Street="Teststraße 1111111" />  
    <Contact Class="Parameter" ContactTypes="Delivery" DescriptiveName="Test +Test + Test GmbH &amp; Co. KG" ID="r_181029_114121462_001897" Status="Available">  
      <CompanyRef rRef="r_181029_114121447_001891" />  
      <AddressRef rRef="r_181029_114121447_001892" />  
    </Contact>
    <Contact Class="Parameter" ContactTypes="Accounting" DescriptiveName="Test +Test + Test GmbH &amp; Co. KG" ID="r_181029_114121462_001898" Status="Available">  
      <CompanyRef rRef="r_181029_114121447_001891" />  
      <AddressRef rRef="r_181029_114121447_001892" />  
    </Contact>
    <DeliveryIntent Class="Intent" ID="r_181029_114121462_001899" Status="Available">  
      <DropIntent>
        <DropItemIntent Amount="6000">  
          <ComponentRef rRef="r_181029_114121462_001900" />  
        </DropItemIntent>
      </DropIntent>
    </DeliveryIntent>
    <Component Class="Quantity" ComponentType="FinalProduct" DescriptiveName="Testjob" HDM:HDMProductType="Drahtgeheftete Broschüren" ID="r_181029_114121462_001900" ProductType="Brochure" Status="Unavailable" />  
    <NodeInfo Class="Parameter" ID="r_181029_114121462_001901" JobPriority="30" PartUsage="Implicit" Status="Available">  
      <Employee DescriptiveName="Test Test" Roles="CSR">  
        <Person DescriptiveName="Test Test" FamilyName="Test" FirstName="Test">  
          <ComChannel ChannelType="Phone" Locator="000000-00000-0000" />  
          <ComChannel ChannelType="Email" Locator="j.Test@Test.de" />  
          <ComChannel ChannelType="Fax" Locator="000000-00000-0000" />  
        </Person>
      </Employee>
    </NodeInfo>
    <ColorPool Class="Parameter" ID="r_181029_114121462_001902" Status="Available">  
      <Color CMYK="0 0 0 1" ColorBook="Default" Lab="16 0 0" Name="Black" />  
      <Color CMYK="0 1 0 0" ColorBook="Default" Lab="46 72 -5" Name="Magenta" />  
      <Color CMYK="0 0 1 0" ColorBook="Default" Lab="88 -6 90" Name="Yellow" />  
      <Color CMYK="1 0 0 0" ColorBook="Default" Lab="54 -36 -49" Name="Cyan" />  
    </ColorPool>
    <BindingIntent Class="Intent" ID="r_181029_114121462_001903" Status="Available">  
      <BindingType Actual="SaddleStitch" DataType="EnumerationSpan" Preferred="SaddleStitch" />  
    </BindingIntent>
    <Component Class="Quantity" ComponentType="PartialProduct" HDM:P4SheetTypeNr="1" ID="r_181029_114121462_001906" PartIDKeys="SignatureName SheetName" ProductType="Cover" Status="Unavailable">  
      <Component SignatureName="SIG001">  
        <Component SheetName="SIG001" />  
      </Component>
    </Component>
    <Component Class="Quantity" ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ID="r_181029_114121478_001912" PartIDKeys="SignatureName SheetName" ProductType="Text" Status="Unavailable">  
      <Component SignatureName="SIG002">  
        <Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="SIG002" Status="Unavailable" />  
      </Component>
      <Component SignatureName="SIG003">  
        <Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="SIG003" Status="Unavailable" />  
      </Component>
      <Component SignatureName="SIG004">  
        <Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="SIG004" Status="Unavailable" />  
      </Component>
      <Component SignatureName="SIG005">  
        <Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="SIG005" Status="Unavailable" />  
      </Component>
      <Component SignatureName="SIG006">  
        <Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="SIG006" Status="Unavailable" />  
      </Component>
      <Component SignatureName="SIG007">  
        <Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="SIG007" Status="Unavailable" />  
      </Component>
    </Component>
    <Media Class="Consumable" HDM:RAWMEDIA="false" ID="r_181029_114121525_001934" MediaType="Paper" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Unavailable">  
      <Media SignatureName="SIG001">  
        <Media Brand="Maxigloss" DescriptiveName="Maxigloss" Dimension="2494.48818898 1785.82677165" Grade="1" GrainDirection="ShortEdge" HDM:RawDimension="2494.48818898 1785.82677165" ProductID="202-250-088063-01-5U" SheetName="Bg_0" Thickness="200" Weight="250" />  
      </Media>
      <Media SignatureName="SIG002">  
        <Media Brand="MultiArt gloss , PEFC" DescriptiveName="MultiArt gloss , PEFC" Dimension="2494.48818898 1785.82677165" Grade="1" GrainDirection="ShortEdge" HDM:RawDimension="2494.48818898 1785.82677165" ProductID="201-090-088063-01-7U" SheetName="Bg_1_1" Thickness="72" Weight="90" />  
      </Media>
      <Media SignatureName="SIG003">  
        <Media Brand="MultiArt gloss , PEFC" DescriptiveName="MultiArt gloss , PEFC" Dimension="2494.48818898 1785.82677165" Grade="1" GrainDirection="ShortEdge" HDM:RawDimension="2494.48818898 1785.82677165" ProductID="201-090-088063-01-7U" SheetName="Bg_1_2" Thickness="72" Weight="90" />  
      </Media>
      <Media SignatureName="SIG004">  
        <Media Brand="MultiArt gloss , PEFC" DescriptiveName="MultiArt gloss , PEFC" Dimension="2494.48818898 1785.82677165" Grade="1" GrainDirection="ShortEdge" HDM:RawDimension="2494.48818898 1785.82677165" ProductID="201-090-088063-01-7U" SheetName="Bg_1_3" Thickness="72" Weight="90" />  
      </Media>
      <Media SignatureName="SIG005">  
        <Media Brand="MultiArt gloss , PEFC" DescriptiveName="MultiArt gloss , PEFC" Dimension="2494.48818898 1785.82677165" Grade="1" GrainDirection="ShortEdge" HDM:RawDimension="2494.48818898 1785.82677165" ProductID="201-090-088063-01-7U" SheetName="Bg_1_4" Thickness="72" Weight="90" />  
      </Media>
      <Media SignatureName="SIG006">  
        <Media Brand="MultiArt gloss , PEFC" DescriptiveName="MultiArt gloss , PEFC" Dimension="2494.48818898 1785.82677165" Grade="1" GrainDirection="ShortEdge" HDM:RawDimension="2494.48818898 1785.82677165" ProductID="201-090-088063-01-7U" SheetName="Bg_2_1" Thickness="72" Weight="90" />  
      </Media>
      <Media SignatureName="SIG007">  
        <Media Brand="MultiArt gloss , PEFC" DescriptiveName="MultiArt gloss , PEFC" Dimension="2494.48818898 1785.82677165" Grade="1" GrainDirection="ShortEdge" HDM:RawDimension="2494.48818898 1785.82677165" ProductID="201-090-088063-01-7U" SheetName="Bg_2_2" Thickness="72" Weight="90" />  
      </Media>
    </Media>
    <Media Class="Consumable" ID="r_181029_114121540_001935" MediaType="Plate" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Unavailable">  
      <Media SignatureName="SIG001">  
        <Media Dimension="2990.5511811 2298.8976378" SheetName="Bg_0" />  
      </Media>
      <Media SignatureName="SIG002">  
        <Media Dimension="2990.5511811 2298.8976378" SheetName="Bg_1_1" />  
      </Media>
      <Media SignatureName="SIG003">  
        <Media Dimension="2990.5511811 2298.8976378" SheetName="Bg_1_2" />  
      </Media>
      <Media SignatureName="SIG004">  
        <Media Dimension="2990.5511811 2298.8976378" SheetName="Bg_1_3" />  
      </Media>
      <Media SignatureName="SIG005">  
        <Media Dimension="2990.5511811 2298.8976378" SheetName="Bg_1_4" />  
      </Media>
      <Media SignatureName="SIG006">  
        <Media Dimension="2990.5511811 2298.8976378" SheetName="Bg_2_1" />  
      </Media>
      <Media SignatureName="SIG007">  
        <Media Dimension="2990.5511811 2298.8976378" SheetName="Bg_2_2" />  
      </Media>
    </Media>
    <ExposedMedia Class="Handling" ID="r_181029_114121540_001936" PartIDKeys="SignatureName SheetName Side Separation" PartUsage="Explicit" Status="Unavailable">  
      <ExposedMedia SignatureName="SIG001">  
        <ExposedMedia SheetName="Bg_0" Status="Unavailable">  
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_0" SignatureName="SIG001" />  
          </MediaRef>
          <ExposedMedia Side="Front">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
          <ExposedMedia Side="Back">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
        </ExposedMedia>
      </ExposedMedia>
      <ExposedMedia SignatureName="SIG002">  
        <ExposedMedia SheetName="Bg_1_1" Status="Unavailable">  
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          </MediaRef>
          <ExposedMedia Side="Front">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
          <ExposedMedia Side="Back">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
        </ExposedMedia>
      </ExposedMedia>
      <ExposedMedia SignatureName="SIG003">  
        <ExposedMedia SheetName="Bg_1_2" Status="Unavailable">  
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          </MediaRef>
          <ExposedMedia Side="Front">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
          <ExposedMedia Side="Back">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
        </ExposedMedia>
      </ExposedMedia>
      <ExposedMedia SignatureName="SIG004">  
        <ExposedMedia SheetName="Bg_1_3" Status="Unavailable">  
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          </MediaRef>
          <ExposedMedia Side="Front">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
          <ExposedMedia Side="Back">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
        </ExposedMedia>
      </ExposedMedia>
      <ExposedMedia SignatureName="SIG005">  
        <ExposedMedia SheetName="Bg_1_4" Status="Unavailable">  
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
          </MediaRef>
          <ExposedMedia Side="Front">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
          <ExposedMedia Side="Back">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
        </ExposedMedia>
      </ExposedMedia>
      <ExposedMedia SignatureName="SIG006">  
        <ExposedMedia SheetName="Bg_2_1" Status="Unavailable">  
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          </MediaRef>
          <ExposedMedia Side="Front">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
          <ExposedMedia Side="Back">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
        </ExposedMedia>
      </ExposedMedia>
      <ExposedMedia SignatureName="SIG007">  
        <ExposedMedia SheetName="Bg_2_2" Status="Unavailable">  
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
          </MediaRef>
          <ExposedMedia Side="Front">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
          <ExposedMedia Side="Back">  
            <ExposedMedia Separation="Cyan" />  
            <ExposedMedia Separation="Magenta" />  
            <ExposedMedia Separation="Yellow" />  
            <ExposedMedia Separation="Black" />  
          </ExposedMedia>
        </ExposedMedia>
      </ExposedMedia>
    </ExposedMedia>
    <Ink Class="Consumable" ID="r_181029_114121540_001937" PartIDKeys="SignatureName SheetName Side Separation" PartUsage="Implicit" Status="Available">  
      <Ink SignatureName="SIG001">  
        <Ink SheetName="Bg_0">  
          <Ink Side="Front">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
          <Ink Side="Back">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
        </Ink>
      </Ink>
      <Ink SignatureName="SIG002">  
        <Ink SheetName="Bg_1_1">  
          <Ink Side="Front">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
          <Ink Side="Back">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
        </Ink>
      </Ink>
      <Ink SignatureName="SIG003">  
        <Ink SheetName="Bg_1_2">  
          <Ink Side="Front">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
          <Ink Side="Back">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
        </Ink>
      </Ink>
      <Ink SignatureName="SIG004">  
        <Ink SheetName="Bg_1_3">  
          <Ink Side="Front">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
          <Ink Side="Back">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
        </Ink>
      </Ink>
      <Ink SignatureName="SIG005">  
        <Ink SheetName="Bg_1_4">  
          <Ink Side="Front">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
          <Ink Side="Back">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
        </Ink>
      </Ink>
      <Ink SignatureName="SIG006">  
        <Ink SheetName="Bg_2_1">  
          <Ink Side="Front">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
          <Ink Side="Back">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
        </Ink>
      </Ink>
      <Ink SignatureName="SIG007">  
        <Ink SheetName="Bg_2_2">  
          <Ink Side="Front">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
          <Ink Side="Back">  
            <Ink Separation="Cyan" />  
            <Ink Separation="Magenta" />  
            <Ink Separation="Yellow" />  
            <Ink Separation="Black" />  
          </Ink>
        </Ink>
      </Ink>
    </Ink>
    <ColorantControl Class="Parameter" ID="r_181029_114121540_001938" PartIDKeys="SignatureName SheetName Side" PartUsage="Implicit" Status="Available">  
      <ColorPoolRef rRef="r_181029_114121462_001902" />  
      <ColorantControl SignatureName="SIG001">  
        <ColorantControl SheetName="Bg_0">  
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Front">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Back">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
        </ColorantControl>
      </ColorantControl>
      <ColorantControl SignatureName="SIG002">  
        <ColorantControl SheetName="Bg_1_1">  
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Front">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Back">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
        </ColorantControl>
      </ColorantControl>
      <ColorantControl SignatureName="SIG003">  
        <ColorantControl SheetName="Bg_1_2">  
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Front">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Back">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
        </ColorantControl>
      </ColorantControl>
      <ColorantControl SignatureName="SIG004">  
        <ColorantControl SheetName="Bg_1_3">  
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Front">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Back">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
        </ColorantControl>
      </ColorantControl>
      <ColorantControl SignatureName="SIG005">  
        <ColorantControl SheetName="Bg_1_4">  
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Front">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Back">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
        </ColorantControl>
      </ColorantControl>
      <ColorantControl SignatureName="SIG006">  
        <ColorantControl SheetName="Bg_2_1">  
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Front">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Back">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
        </ColorantControl>
      </ColorantControl>
      <ColorantControl SignatureName="SIG007">  
        <ColorantControl SheetName="Bg_2_2">  
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Front">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
          <ColorantControl ProcessColorModel="DeviceCMYK" Side="Back">  
            <ColorantParams />
            <ColorantOrder>
              <SeparationSpec Name="Cyan" />  
              <SeparationSpec Name="Magenta" />  
              <SeparationSpec Name="Yellow" />  
              <SeparationSpec Name="Black" />  
            </ColorantOrder>
          </ColorantControl>
        </ColorantControl>
      </ColorantControl>
    </ColorantControl>
    <BinderySignature Class="Parameter" ID="r_181029_114121571_001960" NumberUp="2 1" Status="Available" />  
    <Device Class="Implementation" DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P" FriendlyName="XL105-8P" ID="r_181029_114121525_001932" PartIDKeys="SignatureName SheetName" Status="Available">  
      <Device SignatureName="SIG001">  
        <Device DeviceID="4102" SheetName="Bg_0" />  
      </Device>
      <CostCenter CostCenterID="4103" />  
    </Device>
    <BinderySignature Class="Parameter" ID="r_181029_114121665_001986" NumberUp="4 2" Status="Available" />  
    <Device Class="Implementation" DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P" FriendlyName="XL105-8P" ID="r_181029_114121618_001972" PartIDKeys="SignatureName SheetName" Status="Available">  
      <Device SignatureName="SIG002">  
        <Device DeviceID="4102" SheetName="Bg_1_1" />  
      </Device>
      <CostCenter CostCenterID="4103" />  
    </Device>
    <BinderySignature Class="Parameter" ID="r_181029_114121727_001999" NumberUp="4 2" Status="Available" />  
    <Device Class="Implementation" DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P" FriendlyName="XL105-8P" ID="r_181029_114121681_001997" PartIDKeys="SignatureName SheetName" Status="Available">  
      <Device SignatureName="SIG003">  
        <Device DeviceID="4102" SheetName="Bg_1_2" />  
      </Device>
      <CostCenter CostCenterID="4103" />  
    </Device>
    <BinderySignature Class="Parameter" ID="r_181029_114121790_002012" NumberUp="4 2" Status="Available" />  
    <Device Class="Implementation" DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P" FriendlyName="XL105-8P" ID="r_181029_114121743_002010" PartIDKeys="SignatureName SheetName" Status="Available">  
      <Device SignatureName="SIG004">  
        <Device DeviceID="4102" SheetName="Bg_1_3" />  
      </Device>
      <CostCenter CostCenterID="4103" />  
    </Device>
    <BinderySignature Class="Parameter" ID="r_181029_114121868_002025" NumberUp="4 2" Status="Available" />  
    <Device Class="Implementation" DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P" FriendlyName="XL105-8P" ID="r_181029_114121821_002023" PartIDKeys="SignatureName SheetName" Status="Available">  
      <Device SignatureName="SIG005">  
        <Device DeviceID="4102" SheetName="Bg_1_4" />  
      </Device>
      <CostCenter CostCenterID="4103" />  
    </Device>
    <BinderySignature Class="Parameter" ID="r_181029_114121946_002050" NumberUp="2 2" Status="Available" />  
    <BinderySignature Class="Parameter" ID="r_181029_114121946_002051" NumberUp="2 2" Status="Available" />  
    <Device Class="Implementation" DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P" FriendlyName="XL105-8P" ID="r_181029_114121883_002036" PartIDKeys="SignatureName SheetName" Status="Available">  
      <Device SignatureName="SIG006">  
        <Device DeviceID="4102" SheetName="Bg_2_1" />  
      </Device>
      <CostCenter CostCenterID="4103" />  
    </Device>
    <RunList Class="Parameter" ID="r_181029_114121556_001947" Status="Unavailable" />  
    <Layout Class="Parameter" DescriptiveName="Lay" ID="r_181029_114121571_001958" Name="Lay" PartIDKeys="SignatureName SheetName Side" Status="Unavailable">  
      <Layout Name="SIG001" SignatureName="SIG001">  
        <Layout Name="Bg_0" SheetName="Bg_0">  
          <Layout Side="Front" />  
          <Layout Side="Back" />  
        </Layout>
      </Layout>
      <Layout Name="SIG002" SignatureName="SIG002">  
        <Layout Name="Bg_1_1" SheetName="Bg_1_1">  
          <Layout Side="Front" />  
          <Layout Side="Back" />  
        </Layout>
      </Layout>
      <Layout Name="SIG003" SignatureName="SIG003">  
        <Layout Name="Bg_1_2" SheetName="Bg_1_2">  
          <Layout Side="Front" />  
          <Layout Side="Back" />  
        </Layout>
      </Layout>
      <Layout Name="SIG004" SignatureName="SIG004">  
        <Layout Name="Bg_1_3" SheetName="Bg_1_3">  
          <Layout Side="Front" />  
          <Layout Side="Back" />  
        </Layout>
      </Layout>
      <Layout Name="SIG005" SignatureName="SIG005">  
        <Layout Name="Bg_1_4" SheetName="Bg_1_4">  
          <Layout Side="Front" />  
          <Layout Side="Back" />  
        </Layout>
      </Layout>
      <Layout Name="SIG006" SignatureName="SIG006">  
        <Layout Name="Bg_2_1" SheetName="Bg_2_1">  
          <Layout Side="Front" />  
          <Layout Side="Back" />  
        </Layout>
      </Layout>
      <Layout Name="SIG007" SignatureName="SIG007">  
        <Layout Name="Bg_2_2" SheetName="Bg_2_2">  
          <Layout Side="Front" />  
          <Layout Side="Back" />  
        </Layout>
      </Layout>
    </Layout>
    <StrippingParams Class="Parameter" ID="r_181029_114121571_001959" PartIDKeys="SignatureName SheetName BinderySignatureName" PartUsage="Explicit" Status="Available">  
      <StrippingParams SignatureName="SIG001">  
        <StrippingParams AssemblyIDs="Bg_0_BS_0" HDM:SortCount="1" HDM:SortSheetCount="1" HDM:SortSheetNUp="4" SheetName="Bg_0" WorkStyle="Perfecting">  
          <BinderySignatureRef rRef="r_181029_114121571_001960" />  
          <Position MarginBottom="28.346456692913407" MarginLeft="34.01574803149607" MarginRight="0.0" MarginTop="0.0" Orientation="Rotate0" RelativeBox="0.0 0.0 0.5 0.5" />  
          <Position MarginBottom="0.0" MarginLeft="34.01574803149607" MarginRight="0.0" MarginTop="28.346456692913407" Orientation="Rotate0" RelativeBox="0.0 0.5 0.5 1.0" />  
          <Position MarginBottom="28.346456692913407" MarginLeft="0.0" MarginRight="34.01574803149607" MarginTop="0.0" Orientation="Rotate0" RelativeBox="0.5 0.0 1.0 0.5" />  
          <Position MarginBottom="0.0" MarginLeft="0.0" MarginRight="34.01574803149607" MarginTop="28.346456692913407" Orientation="Rotate0" RelativeBox="0.5 0.5 1.0 1.0" />  
          <StripCellParams BleedFace="7.086614173228346" BleedFoot="7.086614173228346" BleedHead="7.086614173228346" BleedSpine="0.0" Spine="0.0" TrimFace="11.338582677165354" TrimFoot="11.338582677165354" TrimHead="11.338582677165354" TrimSize="595.275590551181 841.8897637795276" />  
          <MediaRef rRef="r_181029_114121525_001934">  
            <Part SheetName="Bg_0" SignatureName="SIG001" />  
          </MediaRef>
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_0" SignatureName="SIG001" />  
          </MediaRef>
          <DeviceRef rRef="r_181029_114121525_001932">  
            <Part SheetName="Bg_0" SignatureName="SIG001" />  
          </DeviceRef>
        </StrippingParams>
      </StrippingParams>
      <StrippingParams SignatureName="SIG002">  
        <StrippingParams AssemblyIDs="Bg_1_1_BS_0" HDM:SortCount="4" HDM:SortSheetCount="1" HDM:SortSheetNUp="1" SheetName="Bg_1_1" WorkStyle="Perfecting">  
          <BinderySignatureRef rRef="r_181029_114121665_001986" />  
          <Position MarginBottom="0.0" MarginLeft="0.0" MarginRight="0.0" MarginTop="0.0" Orientation="Rotate0" RelativeBox="0.0 0.0 1.0 1.0" />  
          <StripCellParams BleedFace="1.4173228346456699" BleedFoot="1.4173228346456699" BleedHead="1.4173228346456699" BleedSpine="0.0" Spine="0.0" TrimFace="28.346456692913385" TrimFoot="39.68503937007874" TrimHead="39.68503937007874" TrimSize="595.275590551181 841.8897637795276" />  
          <MediaRef rRef="r_181029_114121525_001934">  
            <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          </MediaRef>
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          </MediaRef>
          <DeviceRef rRef="r_181029_114121618_001972">  
            <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          </DeviceRef>
        </StrippingParams>
      </StrippingParams>
      <StrippingParams SignatureName="SIG003">  
        <StrippingParams AssemblyIDs="Bg_1_2_BS_0" HDM:SortCount="4" HDM:SortSheetCount="1" HDM:SortSheetNUp="1" SheetName="Bg_1_2" WorkStyle="Perfecting">  
          <BinderySignatureRef rRef="r_181029_114121727_001999" />  
          <Position MarginBottom="0.0" MarginLeft="0.0" MarginRight="0.0" MarginTop="0.0" Orientation="Rotate0" RelativeBox="0.0 0.0 1.0 1.0" />  
          <StripCellParams BleedFace="1.4173228346456699" BleedFoot="1.4173228346456699" BleedHead="1.4173228346456699" BleedSpine="0.0" Spine="0.0" TrimFace="28.346456692913385" TrimFoot="39.68503937007874" TrimHead="39.68503937007874" TrimSize="595.275590551181 841.8897637795276" />  
          <MediaRef rRef="r_181029_114121525_001934">  
            <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          </MediaRef>
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          </MediaRef>
          <DeviceRef rRef="r_181029_114121681_001997">  
            <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          </DeviceRef>
        </StrippingParams>
      </StrippingParams>
      <StrippingParams SignatureName="SIG004">  
        <StrippingParams AssemblyIDs="Bg_1_3_BS_0" HDM:SortCount="4" HDM:SortSheetCount="1" HDM:SortSheetNUp="1" SheetName="Bg_1_3" WorkStyle="Perfecting">  
          <BinderySignatureRef rRef="r_181029_114121790_002012" />  
          <Position MarginBottom="0.0" MarginLeft="0.0" MarginRight="0.0" MarginTop="0.0" Orientation="Rotate0" RelativeBox="0.0 0.0 1.0 1.0" />  
          <StripCellParams BleedFace="1.4173228346456699" BleedFoot="1.4173228346456699" BleedHead="1.4173228346456699" BleedSpine="0.0" Spine="0.0" TrimFace="28.346456692913385" TrimFoot="39.68503937007874" TrimHead="39.68503937007874" TrimSize="595.275590551181 841.8897637795276" />  
          <MediaRef rRef="r_181029_114121525_001934">  
            <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          </MediaRef>
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          </MediaRef>
          <DeviceRef rRef="r_181029_114121743_002010">  
            <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          </DeviceRef>
        </StrippingParams>
      </StrippingParams>
      <StrippingParams SignatureName="SIG005">  
        <StrippingParams AssemblyIDs="Bg_1_4_BS_0" HDM:SortCount="4" HDM:SortSheetCount="1" HDM:SortSheetNUp="1" SheetName="Bg_1_4" WorkStyle="Perfecting">  
          <BinderySignatureRef rRef="r_181029_114121868_002025" />  
          <Position MarginBottom="0.0" MarginLeft="0.0" MarginRight="0.0" MarginTop="0.0" Orientation="Rotate0" RelativeBox="0.0 0.0 1.0 1.0" />  
          <StripCellParams BleedFace="1.4173228346456699" BleedFoot="1.4173228346456699" BleedHead="1.4173228346456699" BleedSpine="0.0" Spine="0.0" TrimFace="28.346456692913385" TrimFoot="39.68503937007874" TrimHead="39.68503937007874" TrimSize="595.275590551181 841.8897637795276" />  
          <MediaRef rRef="r_181029_114121525_001934">  
            <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
          </MediaRef>
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
          </MediaRef>
          <DeviceRef rRef="r_181029_114121821_002023">  
            <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
          </DeviceRef>
        </StrippingParams>
      </StrippingParams>
      <StrippingParams SignatureName="SIG006">  
        <StrippingParams HDM:SortCount="4" HDM:SortSheetCount="2" HDM:SortSheetNUp="1" SheetName="Bg_2_1" WorkStyle="Perfecting">  
          <StrippingParams AssemblyIDs="Bg_2_1_BS_0" BinderySignatureName="BS_0">  
            <BinderySignatureRef rRef="r_181029_114121946_002050" />  
            <Position MarginBottom="39.68503937007874" MarginLeft="28.346456692913385" MarginRight="0.0" MarginTop="39.68503937007874" Orientation="Rotate0" RelativeBox="0.0 0.0 0.5 1.0" />  
          </StrippingParams>
          <StrippingParams AssemblyIDs="Bg_2_1_BS_1" BinderySignatureName="BS_1">  
            <BinderySignatureRef rRef="r_181029_114121946_002051" />  
            <Position MarginBottom="39.68503937007874" MarginLeft="0.0" MarginRight="28.346456692913385" MarginTop="39.68503937007874" Orientation="Rotate0" RelativeBox="0.5 0.0 1.0 1.0" />  
          </StrippingParams>
          <StripCellParams BleedFace="0.0" BleedFoot="0.0" BleedHead="0.0" BleedSpine="0.0" Spine="0.0" TrimFace="0.0" TrimFoot="0.0" TrimHead="0.0" TrimSize="595.275590551181 841.8897637795276" />  
          <MediaRef rRef="r_181029_114121525_001934">  
            <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          </MediaRef>
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          </MediaRef>
          <DeviceRef rRef="r_181029_114121883_002036">  
            <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          </DeviceRef>
        </StrippingParams>
      </StrippingParams>
      <StrippingParams SignatureName="SIG007">  
        <StrippingParams HDM:SortCount="4" HDM:SortSheetCount="2" HDM:SortSheetNUp="1" SheetName="Bg_2_2" WorkStyle="Perfecting">  
          <StrippingParams AssemblyIDs="Bg_2_2_BS_0" BinderySignatureName="BS_0">  
            <BinderySignatureRef rRef="r_181029_114122024_002064" />  
            <Position MarginBottom="39.68503937007874" MarginLeft="28.346456692913385" MarginRight="0.0" MarginTop="39.68503937007874" Orientation="Rotate0" RelativeBox="0.0 0.0 0.5 1.0" />  
          </StrippingParams>
          <StrippingParams AssemblyIDs="Bg_2_2_BS_1" BinderySignatureName="BS_1">  
            <BinderySignatureRef rRef="r_181029_114122024_002065" />  
            <Position MarginBottom="39.68503937007874" MarginLeft="0.0" MarginRight="28.346456692913385" MarginTop="39.68503937007874" Orientation="Rotate0" RelativeBox="0.5 0.0 1.0 1.0" />  
          </StrippingParams>
          <StripCellParams BleedFace="0.0" BleedFoot="0.0" BleedHead="0.0" BleedSpine="0.0" Spine="0.0" TrimFace="0.0" TrimFoot="0.0" TrimHead="0.0" TrimSize="595.275590551181 841.8897637795276" />  
          <MediaRef rRef="r_181029_114121525_001934">  
            <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
          </MediaRef>
          <MediaRef rRef="r_181029_114121540_001935">  
            <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
          </MediaRef>
          <DeviceRef rRef="r_181029_114121961_002062">  
            <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
          </DeviceRef>
        </StrippingParams>
      </StrippingParams>
    </StrippingParams>
    <Assembly AssemblyIDs="Bg_0_BS_0 Bg_1_1_BS_0 Bg_1_2_BS_0 Bg_1_3_BS_0 Bg_1_4_BS_0 Bg_2_1_BS_0 Bg_2_1_BS_1 Bg_2_2_BS_0 Bg_2_2_BS_1" BindingSide="Left" Class="Parameter" ID="r_181029_114121603_001961" Order="Collecting" Status="Available" />  
    <BinderySignature Class="Parameter" ID="r_181029_114122024_002064" NumberUp="2 2" Status="Available" />  
    <BinderySignature Class="Parameter" ID="r_181029_114122024_002065" NumberUp="2 2" Status="Available" />  
    <Device Class="Implementation" DescriptiveName="XL 105-8P" DeviceID="4102" DeviceType="XL 105-8P" FriendlyName="XL105-8P" ID="r_181029_114121961_002062" PartIDKeys="SignatureName SheetName" Status="Available">  
      <Device SignatureName="SIG007">  
        <Device DeviceID="4102" SheetName="Bg_2_2" />  
      </Device>
      <CostCenter CostCenterID="4103" />  
    </Device>
    <RunList Class="Parameter" ID="r_181029_114134254_002070" Status="Unavailable" />  
    <Preview Class="Parameter" ID="r_181029_114134254_002071" PartIDKeys="SignatureName SheetName Side Separation" PreviewUsage="Separation" Status="Unavailable">  
      <Preview SignatureName="SIG001">  
        <Preview SheetName="Bg_0">  
          <Preview Side="Front">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
          <Preview Side="Back">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
        </Preview>
      </Preview>
      <Preview SignatureName="SIG002">  
        <Preview SheetName="Bg_1_1">  
          <Preview Side="Front">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
          <Preview Side="Back">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
        </Preview>
      </Preview>
      <Preview SignatureName="SIG003">  
        <Preview SheetName="Bg_1_2">  
          <Preview Side="Front">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
          <Preview Side="Back">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
        </Preview>
      </Preview>
      <Preview SignatureName="SIG004">  
        <Preview SheetName="Bg_1_3">  
          <Preview Side="Front">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
          <Preview Side="Back">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
        </Preview>
      </Preview>
      <Preview SignatureName="SIG005">  
        <Preview SheetName="Bg_1_4">  
          <Preview Side="Front">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
          <Preview Side="Back">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
        </Preview>
      </Preview>
      <Preview SignatureName="SIG006">  
        <Preview SheetName="Bg_2_1">  
          <Preview Side="Front">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
          <Preview Side="Back">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
        </Preview>
      </Preview>
      <Preview SignatureName="SIG007">  
        <Preview SheetName="Bg_2_2">  
          <Preview Side="Front">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
          <Preview Side="Back">  
            <Preview Separation="Cyan" Status="Incomplete" />  
            <Preview Separation="Magenta" Status="Incomplete" />  
            <Preview Separation="Yellow" Status="Incomplete" />  
            <Preview Separation="Black" Status="Incomplete" />  
          </Preview>
        </Preview>
      </Preview>
    </Preview>
  </ResourcePool>
  <ResourceLinkPool>
    <CustomerInfoLink Usage="Input" rRef="r_181029_114121447_001889" />  
    <DeliveryIntentLink Usage="Input" rRef="r_181029_114121462_001899" />  
    <ComponentLink Amount="6000" Usage="Output" rRef="r_181029_114121462_001900" />  
    <NodeInfoLink Usage="Input" rRef="r_181029_114121462_001901" />  
    <BindingIntentLink Usage="Input" rRef="r_181029_114121462_001903" />  
    <ComponentLink Usage="Input" rRef="r_181029_114121462_001906" />  
    <ComponentLink Usage="Input" rRef="r_181029_114121478_001912" />  
  </ResourceLinkPool>
  <JDF DescriptiveName="Bg_0" HDM:SheetGroupID="3" HDM:SheetTypeID="1" ID="n_181029_114121462_001904" JobPartID="SG3" Status="Waiting" Type="Product" xsi:type="Product">  
    <AuditPool>
      <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121462_001905" TimeStamp="2018-10-29T11:41:21+01:00" />  
    </AuditPool>
    <ResourceLinkPool>
      <ComponentLink Usage="Output" rRef="r_181029_114121462_001906" />  
      <ColorIntentLink Usage="Input" rRef="r_181029_114121462_001907" />  
      <LayoutIntentLink Usage="Input" rRef="r_181029_114121478_001908" />  
      <MediaIntentLink Usage="Input" rRef="r_181029_114121478_001909" />  
    </ResourceLinkPool>
    <ResourcePool>
      <ColorIntent Class="Intent" ID="r_181029_114121462_001907" Status="Available">  
        <ColorPoolRef rRef="r_181029_114121462_001902" />  
        <ColorStandard Actual="Euroskala" DataType="NameSpan" Preferred="Euroskala" />  
        <Coverage Actual="40" DataType="NumberSpan" Preferred="40" />  
        <ColorsUsed>
          <SeparationSpec Name="Cyan" />  
          <SeparationSpec Name="Magenta" />  
          <SeparationSpec Name="Yellow" />  
          <SeparationSpec Name="Black" />  
        </ColorsUsed>
      </ColorIntent>
      <LayoutIntent Class="Intent" ID="r_181029_114121478_001908" Sides="TwoSidedHeadToHead" Status="Available">  
        <Pages Actual="4" DataType="IntegerSpan" Preferred="4" />  
        <FinishedDimensions Actual="595.27559055 841.88976378 0" DataType="ShapeSpan" Preferred="595.27559055 841.88976378 0" />  
        <Dimensions Actual="1190.5511811 841.88976378" DataType="XYPairSpan" Preferred="1190.5511811 841.88976378" />  
      </LayoutIntent>
      <MediaIntent Class="Intent" ID="r_181029_114121478_001909" ProductID="202-250-088063-01-5U" Status="Available">  
        <Dimensions Actual="2494.48818898 1785.82677165" DataType="XYPairSpan" Preferred="2494.48818898 1785.82677165" />  
        <Weight Actual="250" DataType="NumberSpan" Preferred="250" />  
        <Thickness Actual="200" DataType="NumberSpan" Preferred="200" />  
        <StockBrand Actual="Maxigloss" DataType="StringSpan" Preferred="Maxigloss" />  
      </MediaIntent>
      <Component Class="Quantity" ComponentType="PartialProduct" ID="r_181029_114121525_001930" PartIDKeys="SignatureName SheetName" Status="Unavailable">  
        <Component SignatureName="SIG001">  
          <Component DescriptiveName="Bg_0" SheetName="SIG001" />  
        </Component>
      </Component>
      <ConventionalPrintingParams Class="Parameter" ID="r_181029_114121525_001931" PrintingType="SheetFed" Status="Incomplete" WorkStyle="Perfecting" />  
      <ApprovalSuccess Class="Parameter" ID="r_181029_114121556_001951" PartIDKeys="SignatureName SheetName" PartUsage="Explicit" Status="Unavailable" />  
    </ResourcePool>
    <JDF Category="MISFin.SheetFin" DescriptiveName="Bg_0(POL 137)" HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3" ID="n_181029_114121525_001922" JobPartID="1000" Status="Waiting" Type="ProcessGroup" Types="HoleMaking" xsi:type="HoleMaking">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121525_001923" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121525_001924" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink CombinedProcessIndex="0" Usage="Output" rRef="r_181029_114121462_001906">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
          <AmountPool>
            <PartAmount Amount="6000">  
              <Part Condition="Good" SheetName="Bg_0" SignatureName="SIG001" />  
            </PartAmount>
            <PartAmount Amount="0">  
              <Part Condition="Waste" SheetName="Bg_0" SignatureName="SIG001" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121525_001925">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121525_001926" />  
        <ComponentLink CombinedProcessIndex="0" Usage="Input" rRef="r_181029_114121525_001930">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </ComponentLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121525_001925" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG001">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT2M" SheetName="Bg_0" TotalDuration="PT17M23S" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Planschneider Polar XT 137" DeviceType="Planschneider Polar XT 137" FriendlyName="POL 137" ID="r_181029_114121525_001926" Status="Available">  
          <CostCenter CostCenterID="5120" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF DescriptiveName="Bg_0(XL105-8P)" ID="n_181029_114121525_001927" JobPartID="1001" Status="Waiting" Type="ConventionalPrinting" xsi:type="ConventionalPrinting">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121525_001928" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121525_001929" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink Usage="Output" rRef="r_181029_114121525_001930">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
          <AmountPool>
            <PartAmount Amount="1515">  
              <Part Condition="Good" SheetName="Bg_0" SignatureName="SIG001" />  
            </PartAmount>
            <PartAmount Amount="735">  
              <Part Condition="Waste" SheetName="Bg_0" SignatureName="SIG001" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <ConventionalPrintingParamsLink Usage="Input" rRef="r_181029_114121525_001931" />  
        <DeviceLink Usage="Input" rRef="r_181029_114121525_001932">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </DeviceLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121525_001933">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </NodeInfoLink>
        <MediaLink Usage="Input" rRef="r_181029_114121525_001934">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </MediaLink>
        <ExposedMediaLink ProcessUsage="Plate" Usage="Input" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </ExposedMediaLink>
        <InkLink Usage="Input" rRef="r_181029_114121540_001937">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </InkLink>
        <ColorantControlLink Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </ColorantControlLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
        <PreviewLink Usage="Input" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </PreviewLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121525_001933" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG001">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT10M24S" SheetName="Bg_0" TotalDuration="PT22M33S" />  
          </NodeInfo>
        </NodeInfo>
      </ResourcePool>
    </JDF>
    <JDF Category="MISPRE.PlateMaking" DescriptiveName="Bg_0(CTP TOP)" ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121556_001939" JobPartID="1002" Status="Waiting" Type="ProcessGroup" Types="Imposition RIPing PreviewGeneration ImageSetting" xsi:type="ProcessGroup">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121556_001940" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121556_001941" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ExposedMediaLink Amount="1" CombinedProcessIndex="3" Usage="Output" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </ExposedMediaLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121556_001942">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121556_001943" />  
        <RunListLink CombinedProcessIndex="0 2 3" ProcessUsage="Document" Usage="Input" rRef="r_181029_114121556_001947" />  
        <ApprovalSuccessLink CombinedProcessIndex="0 1 2 3" Usage="Input" rRef="r_181029_114121556_001951" />  
        <LayoutLink CombinedProcessIndex="0 1" Usage="Input" rRef="r_181029_114121571_001958" />  
        <RunListLink CombinedProcessIndex="0 2 3" ProcessUsage="Marks" Usage="Input" rRef="r_181029_114134254_002070" />  
        <PreviewLink ProcessUsage="Previews" Usage="Output" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </PreviewLink>
        <MediaLink CombinedProcessIndex="1 3" Usage="Input" rRef="r_181029_114121540_001935">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </MediaLink>
        <ColorantControlLink CombinedProcessIndex="1 2 3" Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </ColorantControlLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121556_001942" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG001">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_0" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Computer to Plate Tester TopSetter" DeviceType="Computer to Plate Tester TopSetter" FriendlyName="CTP TOP" ID="r_181029_114121556_001943" Status="Available">  
          <CostCenter CostCenterID="3400" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF Category="MISPRE.ImpositionProofing" DescriptiveName="Bg_0(CTP TOP)" ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121556_001948" JobPartID="1004" Status="Waiting" Type="ProcessGroup" Types="Imposition ProofImaging" xsi:type="ProcessGroup">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121556_001949" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121556_001950" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ApprovalSuccessLink CombinedProcessIndex="1" Usage="Output" rRef="r_181029_114121556_001951" />  
        <ExposedMediaLink Amount="1" CombinedProcessIndex="1" Usage="Output" rRef="r_181029_114121556_001952" />  
        <NodeInfoLink Usage="Input" rRef="r_181029_114121556_001953">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121556_001954" />  
        <LayoutLink CombinedProcessIndex="0 1" Usage="Input" rRef="r_181029_114121571_001958" />  
        <MediaLink CombinedProcessIndex="1" Usage="Input" rRef="r_181029_114134285_002072">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </MediaLink>
        <RunListLink CombinedProcessIndex="0 1" ProcessUsage="Document" Usage="Input" rRef="r_181029_114121556_001947" />  
        <RunListLink CombinedProcessIndex="0 1" ProcessUsage="Marks" Usage="Input" rRef="r_181029_114134254_002070" />  
        <ColorantControlLink CombinedProcessIndex="1" Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_0" SignatureName="SIG001" />  
        </ColorantControlLink>
      </ResourceLinkPool>
      <ResourcePool>
        <ExposedMedia Class="Handling" ID="r_181029_114121556_001952" PartIDKeys="SignatureName SheetName" PartUsage="Explicit" ProofType="Imposition" Status="Unavailable">  
          <Media MediaType="Paper" />  
          <MediaRef rRef="r_181029_114134285_002072" />  
          <ExposedMedia SignatureName="SIG001">  
            <ExposedMedia SheetName="Bg_0" />  
          </ExposedMedia>
        </ExposedMedia>
        <NodeInfo Class="Parameter" ID="r_181029_114121556_001953" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG001">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_0" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Computer to Plate Tester TopSetter" DeviceType="Computer to Plate Tester TopSetter" FriendlyName="CTP TOP" ID="r_181029_114121556_001954" Status="Available">  
          <CostCenter CostCenterID="3400" />  
        </Device>
        <Media Class="Consumable" ID="r_181029_114134285_002072" MediaType="Paper" PartIDKeys="SignatureName SheetName" Status="Available">  
          <Media SignatureName="SIG001">  
            <Media SheetName="Bg_0" />  
          </Media>
        </Media>
      </ResourcePool>
    </JDF>
  </JDF>
  <JDF DescriptiveName="Bg_1" HDM:SheetGroupID="1" HDM:SheetTypeID="0" ID="n_181029_114121478_001910" JobPartID="SG1" Status="Waiting" Type="Product" xsi:type="Product">  
    <AuditPool>
      <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121478_001911" TimeStamp="2018-10-29T11:41:21+01:00" />  
    </AuditPool>
    <ResourceLinkPool>
      <ComponentLink Usage="Output" rRef="r_181029_114121478_001912" />  
      <ColorIntentLink Usage="Input" rRef="r_181029_114121478_001913" />  
      <LayoutIntentLink Usage="Input" rRef="r_181029_114121478_001914" />  
      <MediaIntentLink Usage="Input" rRef="r_181029_114121478_001915" />  
    </ResourceLinkPool>
    <ResourcePool>
      <ColorIntent Class="Intent" ID="r_181029_114121478_001913" Status="Available">  
        <ColorPoolRef rRef="r_181029_114121462_001902" />  
        <ColorStandard Actual="Euroskala" DataType="NameSpan" Preferred="Euroskala" />  
        <Coverage Actual="40" DataType="NumberSpan" Preferred="40" />  
        <ColorsUsed>
          <SeparationSpec Name="Cyan" />  
          <SeparationSpec Name="Magenta" />  
          <SeparationSpec Name="Yellow" />  
          <SeparationSpec Name="Black" />  
        </ColorsUsed>
      </ColorIntent>
      <LayoutIntent Class="Intent" ID="r_181029_114121478_001914" Sides="TwoSidedHeadToHead" Status="Available">  
        <Pages Actual="96" DataType="IntegerSpan" Preferred="96" />  
        <FinishedDimensions Actual="595.27559055 841.88976378 0" DataType="ShapeSpan" Preferred="595.27559055 841.88976378 0" />  
        <Dimensions Actual="1190.5511811 841.88976378" DataType="XYPairSpan" Preferred="1190.5511811 841.88976378" />  
      </LayoutIntent>
      <MediaIntent Class="Intent" ID="r_181029_114121478_001915" ProductID="201-090-088063-01-7U" Status="Available">  
        <Dimensions Actual="2494.48818898 1785.82677165" DataType="XYPairSpan" Preferred="2494.48818898 1785.82677165" />  
        <Weight Actual="90" DataType="NumberSpan" Preferred="90" />  
        <Thickness Actual="72" DataType="NumberSpan" Preferred="72" />  
        <StockBrand Actual="MultiArt gloss , PEFC" DataType="StringSpan" Preferred="MultiArt gloss , PEFC" />  
      </MediaIntent>
      <Component Class="Quantity" ComponentType="PartialProduct" ID="r_181029_114121618_001970" PartIDKeys="SignatureName SheetName" Status="Unavailable">  
        <Component SignatureName="SIG002">  
          <Component DescriptiveName="Bg_1_1" SheetName="SIG002" />  
        </Component>
      </Component>
      <ConventionalPrintingParams Class="Parameter" ID="r_181029_114121618_001971" PrintingType="SheetFed" Status="Incomplete" WorkStyle="Perfecting" />  
      <ApprovalSuccess Class="Parameter" ID="r_181029_114121649_001982" PartIDKeys="SignatureName SheetName" PartUsage="Explicit" Status="Unavailable" />  
      <Component Class="Quantity" ComponentType="PartialProduct" ID="r_181029_114121681_001995" PartIDKeys="SignatureName SheetName" Status="Unavailable">  
        <Component SignatureName="SIG003">  
          <Component DescriptiveName="Bg_1_2" SheetName="SIG003" />  
        </Component>
      </Component>
      <ConventionalPrintingParams Class="Parameter" ID="r_181029_114121681_001996" PrintingType="SheetFed" Status="Incomplete" WorkStyle="Perfecting" />  
      <Component Class="Quantity" ComponentType="PartialProduct" ID="r_181029_114121743_002008" PartIDKeys="SignatureName SheetName" Status="Unavailable">  
        <Component SignatureName="SIG004">  
          <Component DescriptiveName="Bg_1_3" SheetName="SIG004" />  
        </Component>
      </Component>
      <ConventionalPrintingParams Class="Parameter" ID="r_181029_114121743_002009" PrintingType="SheetFed" Status="Incomplete" WorkStyle="Perfecting" />  
      <Component Class="Quantity" ComponentType="PartialProduct" ID="r_181029_114121821_002021" PartIDKeys="SignatureName SheetName" Status="Unavailable">  
        <Component SignatureName="SIG005">  
          <Component DescriptiveName="Bg_1_4" SheetName="SIG005" />  
        </Component>
      </Component>
      <ConventionalPrintingParams Class="Parameter" ID="r_181029_114121821_002022" PrintingType="SheetFed" Status="Incomplete" WorkStyle="Perfecting" />  
      <Component Class="Quantity" ComponentType="PartialProduct" ID="r_181029_114121883_002034" PartIDKeys="SignatureName SheetName" Status="Unavailable">  
        <Component SignatureName="SIG006">  
          <Component DescriptiveName="Bg_2_1" SheetName="SIG006" />  
        </Component>
      </Component>
      <ConventionalPrintingParams Class="Parameter" ID="r_181029_114121883_002035" PrintingType="SheetFed" Status="Incomplete" WorkStyle="Perfecting" />  
      <ApprovalSuccess Class="Parameter" ID="r_181029_114121930_002046" PartIDKeys="SignatureName SheetName" PartUsage="Explicit" Status="Unavailable" />  
      <Component Class="Quantity" ComponentType="PartialProduct" ID="r_181029_114121961_002060" PartIDKeys="SignatureName SheetName" Status="Unavailable">  
        <Component SignatureName="SIG007">  
          <Component DescriptiveName="Bg_2_2" SheetName="SIG007" />  
        </Component>
      </Component>
      <ConventionalPrintingParams Class="Parameter" ID="r_181029_114121961_002061" PrintingType="SheetFed" Status="Incomplete" WorkStyle="Perfecting" />  
    </ResourcePool>
    <JDF Category="MISFin.SheetFin" DescriptiveName="Bg_1_1(KDL 78)" HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3" ID="n_181029_114121603_001962" JobPartID="1006" Status="Waiting" Type="ProcessGroup" Types="HoleMaking" xsi:type="HoleMaking">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121603_001963" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121603_001964" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink CombinedProcessIndex="0" Usage="Output" rRef="r_181029_114121478_001912">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <AmountPool>
            <PartAmount Amount="6000">  
              <Part Condition="Good" SheetName="Bg_1_1" SignatureName="SIG002" />  
            </PartAmount>
            <PartAmount Amount="0">  
              <Part Condition="Waste" SheetName="Bg_1_1" SignatureName="SIG002" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121603_001965">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121603_001966" />  
        <ComponentLink CombinedProcessIndex="0" Usage="Input" rRef="r_181029_114121618_001970">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </ComponentLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121603_001965" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG002">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT13M" SheetName="Bg_1_1" TotalDuration="PT54M24S" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Test Stahlfolder KDL 78" DeviceType="Test Stahlfolder KDL 78" FriendlyName="KDL 78" ID="r_181029_114121603_001966" Status="Available">  
          <CostCenter CostCenterID="5230" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF DescriptiveName="Bg_1_1(XL105-8P)" ID="n_181029_114121618_001967" JobPartID="1007" Status="Waiting" Type="ConventionalPrinting" xsi:type="ConventionalPrinting">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121618_001968" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121618_001969" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink Usage="Output" rRef="r_181029_114121618_001970">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <AmountPool>
            <PartAmount Amount="6060">  
              <Part Condition="Good" SheetName="Bg_1_1" SignatureName="SIG002" />  
            </PartAmount>
            <PartAmount Amount="1810">  
              <Part Condition="Waste" SheetName="Bg_1_1" SignatureName="SIG002" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <ConventionalPrintingParamsLink Usage="Input" rRef="r_181029_114121618_001971" />  
        <DeviceLink Usage="Input" rRef="r_181029_114121618_001972">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </DeviceLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121618_001973">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </NodeInfoLink>
        <MediaLink Usage="Input" rRef="r_181029_114121525_001934">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </MediaLink>
        <ExposedMediaLink ProcessUsage="Plate" Usage="Input" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </ExposedMediaLink>
        <InkLink Usage="Input" rRef="r_181029_114121540_001937">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </InkLink>
        <ColorantControlLink Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </ColorantControlLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
        <PreviewLink Usage="Input" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        </PreviewLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121618_001973" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG002">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT7M24S" SheetName="Bg_1_1" TotalDuration="PT42M49S" />  
          </NodeInfo>
        </NodeInfo>
      </ResourcePool>
    </JDF>
    <JDF Category="MISPRE.PlateMaking" DescriptiveName="Bg_1(CTP TOP)" ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121634_001974" JobPartID="1026" Status="Waiting" Type="ProcessGroup" Types="Imposition RIPing PreviewGeneration ImageSetting" xsi:type="ProcessGroup">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121634_001975" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121634_001976" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ExposedMediaLink Amount="1" CombinedProcessIndex="3" Usage="Output" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </ExposedMediaLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121634_001977">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121634_001978" />  
        <RunListLink CombinedProcessIndex="0 2 3" ProcessUsage="Document" Usage="Input" rRef="r_181029_114121556_001947" />  
        <ApprovalSuccessLink CombinedProcessIndex="0 1 2 3" Usage="Input" rRef="r_181029_114121649_001982" />  
        <LayoutLink CombinedProcessIndex="0 1" Usage="Input" rRef="r_181029_114121571_001958" />  
        <RunListLink CombinedProcessIndex="0 2 3" ProcessUsage="Marks" Usage="Input" rRef="r_181029_114134254_002070" />  
        <PreviewLink ProcessUsage="Previews" Usage="Output" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </PreviewLink>
        <MediaLink CombinedProcessIndex="1 3" Usage="Input" rRef="r_181029_114121540_001935">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </MediaLink>
        <ColorantControlLink CombinedProcessIndex="1 2 3" Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </ColorantControlLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121634_001977" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG002">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_1_1" />  
          </NodeInfo>
          <NodeInfo SignatureName="SIG003">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_1_2" />  
          </NodeInfo>
          <NodeInfo SignatureName="SIG004">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_1_3" />  
          </NodeInfo>
          <NodeInfo SignatureName="SIG005">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_1_4" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Computer to Plate Tester TopSetter" DeviceType="Computer to Plate Tester TopSetter" FriendlyName="CTP TOP" ID="r_181029_114121634_001978" Status="Available">  
          <CostCenter CostCenterID="3400" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF Category="MISPRE.ImpositionProofing" DescriptiveName="Bg_1(CTP TOP)" ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121649_001979" JobPartID="1028" Status="Waiting" Type="ProcessGroup" Types="Imposition ProofImaging" xsi:type="ProcessGroup">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121649_001980" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121649_001981" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ApprovalSuccessLink CombinedProcessIndex="1" Usage="Output" rRef="r_181029_114121649_001982" />  
        <ExposedMediaLink Amount="1" CombinedProcessIndex="1" Usage="Output" rRef="r_181029_114121649_001983" />  
        <NodeInfoLink Usage="Input" rRef="r_181029_114121649_001984">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121649_001985" />  
        <LayoutLink CombinedProcessIndex="0 1" Usage="Input" rRef="r_181029_114121571_001958" />  
        <MediaLink CombinedProcessIndex="1" Usage="Input" rRef="r_181029_114134285_002073">  
          <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </MediaLink>
        <RunListLink CombinedProcessIndex="0 1" ProcessUsage="Document" Usage="Input" rRef="r_181029_114121556_001947" />  
        <RunListLink CombinedProcessIndex="0 1" ProcessUsage="Marks" Usage="Input" rRef="r_181029_114134254_002070" />  
        <ColorantControlLink CombinedProcessIndex="1" Usage="Input" rRef="r_181029_114121540_001938" />  
      </ResourceLinkPool>
      <ResourcePool>
        <ExposedMedia Class="Handling" ID="r_181029_114121649_001983" PartIDKeys="SignatureName SheetName" PartUsage="Explicit" ProofType="Imposition" Status="Unavailable">  
          <Media MediaType="Paper" />  
          <MediaRef rRef="r_181029_114134285_002073" />  
          <ExposedMedia SignatureName="SIG002">  
            <ExposedMedia SheetName="Bg_1_1" />  
          </ExposedMedia>
          <ExposedMedia SignatureName="SIG003">  
            <ExposedMedia SheetName="Bg_1_2" />  
          </ExposedMedia>
          <ExposedMedia SignatureName="SIG004">  
            <ExposedMedia SheetName="Bg_1_3" />  
          </ExposedMedia>
          <ExposedMedia SignatureName="SIG005">  
            <ExposedMedia SheetName="Bg_1_4" />  
          </ExposedMedia>
        </ExposedMedia>
        <NodeInfo Class="Parameter" ID="r_181029_114121649_001984" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG002">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_1_1" />  
          </NodeInfo>
          <NodeInfo SignatureName="SIG003">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_1_2" />  
          </NodeInfo>
          <NodeInfo SignatureName="SIG004">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_1_3" />  
          </NodeInfo>
          <NodeInfo SignatureName="SIG005">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_1_4" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Computer to Plate Tester TopSetter" DeviceType="Computer to Plate Tester TopSetter" FriendlyName="CTP TOP" ID="r_181029_114121649_001985" Status="Available">  
          <CostCenter CostCenterID="3400" />  
        </Device>
        <Media Class="Consumable" ID="r_181029_114134285_002073" MediaType="Paper" PartIDKeys="SignatureName SheetName" Status="Available">  
          <Media SignatureName="SIG002">  
            <Media SheetName="Bg_1_1" />  
          </Media>
          <Media SignatureName="SIG003">  
            <Media SheetName="Bg_1_2" />  
          </Media>
          <Media SignatureName="SIG004">  
            <Media SheetName="Bg_1_3" />  
          </Media>
          <Media SignatureName="SIG005">  
            <Media SheetName="Bg_1_4" />  
          </Media>
        </Media>
      </ResourcePool>
    </JDF>
    <JDF Category="MISFin.SheetFin" DescriptiveName="Bg_1_2(KDL 78)" HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3" ID="n_181029_114121665_001987" JobPartID="1012" Status="Waiting" Type="ProcessGroup" Types="HoleMaking" xsi:type="HoleMaking">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121681_001988" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121681_001989" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink CombinedProcessIndex="0" Usage="Output" rRef="r_181029_114121478_001912">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <AmountPool>
            <PartAmount Amount="6000">  
              <Part Condition="Good" SheetName="Bg_1_2" SignatureName="SIG003" />  
            </PartAmount>
            <PartAmount Amount="0">  
              <Part Condition="Waste" SheetName="Bg_1_2" SignatureName="SIG003" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121681_001990">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121681_001991" />  
        <ComponentLink CombinedProcessIndex="0" Usage="Input" rRef="r_181029_114121681_001995">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </ComponentLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121681_001990" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG003">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT13M" SheetName="Bg_1_2" TotalDuration="PT54M24S" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Test Stahlfolder KDL 78" DeviceType="Test Stahlfolder KDL 78" FriendlyName="KDL 78" ID="r_181029_114121681_001991" Status="Available">  
          <CostCenter CostCenterID="5230" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF DescriptiveName="Bg_1_2(XL105-8P)" ID="n_181029_114121681_001992" JobPartID="1013" Status="Waiting" Type="ConventionalPrinting" xsi:type="ConventionalPrinting">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121681_001993" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121681_001994" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink Usage="Output" rRef="r_181029_114121681_001995">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
          <AmountPool>
            <PartAmount Amount="6060">  
              <Part Condition="Good" SheetName="Bg_1_2" SignatureName="SIG003" />  
            </PartAmount>
            <PartAmount Amount="1810">  
              <Part Condition="Waste" SheetName="Bg_1_2" SignatureName="SIG003" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <ConventionalPrintingParamsLink Usage="Input" rRef="r_181029_114121681_001996" />  
        <DeviceLink Usage="Input" rRef="r_181029_114121681_001997">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </DeviceLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121681_001998">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </NodeInfoLink>
        <MediaLink Usage="Input" rRef="r_181029_114121525_001934">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </MediaLink>
        <ExposedMediaLink ProcessUsage="Plate" Usage="Input" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </ExposedMediaLink>
        <InkLink Usage="Input" rRef="r_181029_114121540_001937">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </InkLink>
        <ColorantControlLink Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </ColorantControlLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
        <PreviewLink Usage="Input" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        </PreviewLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121681_001998" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG003">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT7M24S" SheetName="Bg_1_2" TotalDuration="PT42M49S" />  
          </NodeInfo>
        </NodeInfo>
      </ResourcePool>
    </JDF>
    <JDF Category="MISFin.SheetFin" DescriptiveName="Bg_1_3(KDL 78)" HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3" ID="n_181029_114121727_002000" JobPartID="1018" Status="Waiting" Type="ProcessGroup" Types="HoleMaking" xsi:type="HoleMaking">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121727_002001" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121727_002002" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink CombinedProcessIndex="0" Usage="Output" rRef="r_181029_114121478_001912">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <AmountPool>
            <PartAmount Amount="6000">  
              <Part Condition="Good" SheetName="Bg_1_3" SignatureName="SIG004" />  
            </PartAmount>
            <PartAmount Amount="0">  
              <Part Condition="Waste" SheetName="Bg_1_3" SignatureName="SIG004" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121743_002003">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121743_002004" />  
        <ComponentLink CombinedProcessIndex="0" Usage="Input" rRef="r_181029_114121743_002008">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </ComponentLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121743_002003" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG004">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT13M" SheetName="Bg_1_3" TotalDuration="PT54M24S" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Test Stahlfolder KDL 78" DeviceType="Test Stahlfolder KDL 78" FriendlyName="KDL 78" ID="r_181029_114121743_002004" Status="Available">  
          <CostCenter CostCenterID="5230" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF DescriptiveName="Bg_1_3(XL105-8P)" ID="n_181029_114121743_002005" JobPartID="1019" Status="Waiting" Type="ConventionalPrinting" xsi:type="ConventionalPrinting">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121743_002006" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121743_002007" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink Usage="Output" rRef="r_181029_114121743_002008">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
          <AmountPool>
            <PartAmount Amount="6060">  
              <Part Condition="Good" SheetName="Bg_1_3" SignatureName="SIG004" />  
            </PartAmount>
            <PartAmount Amount="1810">  
              <Part Condition="Waste" SheetName="Bg_1_3" SignatureName="SIG004" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <ConventionalPrintingParamsLink Usage="Input" rRef="r_181029_114121743_002009" />  
        <DeviceLink Usage="Input" rRef="r_181029_114121743_002010">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </DeviceLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121743_002011">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </NodeInfoLink>
        <MediaLink Usage="Input" rRef="r_181029_114121525_001934">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </MediaLink>
        <ExposedMediaLink ProcessUsage="Plate" Usage="Input" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </ExposedMediaLink>
        <InkLink Usage="Input" rRef="r_181029_114121540_001937">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </InkLink>
        <ColorantControlLink Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </ColorantControlLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
        <PreviewLink Usage="Input" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        </PreviewLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121743_002011" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG004">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT7M24S" SheetName="Bg_1_3" TotalDuration="PT42M49S" />  
          </NodeInfo>
        </NodeInfo>
      </ResourcePool>
    </JDF>
    <JDF Category="MISFin.SheetFin" DescriptiveName="Bg_1_4(KDL 78)" HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3" ID="n_181029_114121805_002013" JobPartID="1024" Status="Waiting" Type="ProcessGroup" Types="HoleMaking" xsi:type="HoleMaking">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121805_002014" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121805_002015" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink CombinedProcessIndex="0" Usage="Output" rRef="r_181029_114121478_001912">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
          <AmountPool>
            <PartAmount Amount="6000">  
              <Part Condition="Good" SheetName="Bg_1_4" SignatureName="SIG005" />  
            </PartAmount>
            <PartAmount Amount="0">  
              <Part Condition="Waste" SheetName="Bg_1_4" SignatureName="SIG005" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121805_002016">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121805_002017" />  
        <ComponentLink CombinedProcessIndex="0" Usage="Input" rRef="r_181029_114121821_002021">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </ComponentLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121805_002016" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG005">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT13M" SheetName="Bg_1_4" TotalDuration="PT54M24S" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Test Stahlfolder KDL 78" DeviceType="Test Stahlfolder KDL 78" FriendlyName="KDL 78" ID="r_181029_114121805_002017" Status="Available">  
          <CostCenter CostCenterID="5230" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF DescriptiveName="Bg_1_4(XL105-8P)" ID="n_181029_114121821_002018" JobPartID="1025" Status="Waiting" Type="ConventionalPrinting" xsi:type="ConventionalPrinting">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121821_002019" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121821_002020" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink Usage="Output" rRef="r_181029_114121821_002021">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
          <AmountPool>
            <PartAmount Amount="6060">  
              <Part Condition="Good" SheetName="Bg_1_4" SignatureName="SIG005" />  
            </PartAmount>
            <PartAmount Amount="1810">  
              <Part Condition="Waste" SheetName="Bg_1_4" SignatureName="SIG005" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <ConventionalPrintingParamsLink Usage="Input" rRef="r_181029_114121821_002022" />  
        <DeviceLink Usage="Input" rRef="r_181029_114121821_002023">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </DeviceLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121821_002024">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </NodeInfoLink>
        <MediaLink Usage="Input" rRef="r_181029_114121525_001934">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </MediaLink>
        <ExposedMediaLink ProcessUsage="Plate" Usage="Input" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </ExposedMediaLink>
        <InkLink Usage="Input" rRef="r_181029_114121540_001937">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </InkLink>
        <ColorantControlLink Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </ColorantControlLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
        <PreviewLink Usage="Input" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        </PreviewLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121821_002024" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG005">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT7M24S" SheetName="Bg_1_4" TotalDuration="PT42M49S" />  
          </NodeInfo>
        </NodeInfo>
      </ResourcePool>
    </JDF>
    <JDF Category="MISFin.SheetFin" DescriptiveName="Bg_2_1(POL 137)" HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3" ID="n_181029_114121883_002026" JobPartID="1030" Status="Waiting" Type="ProcessGroup" Types="HoleMaking" xsi:type="HoleMaking">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121883_002027" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121883_002028" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink CombinedProcessIndex="0" Usage="Output" rRef="r_181029_114121478_001912">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <AmountPool>
            <PartAmount Amount="6000">  
              <Part Condition="Good" SheetName="Bg_2_1" SignatureName="SIG006" />  
            </PartAmount>
            <PartAmount Amount="0">  
              <Part Condition="Waste" SheetName="Bg_2_1" SignatureName="SIG006" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121883_002029">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121883_002030" />  
        <ComponentLink CombinedProcessIndex="0" Usage="Input" rRef="r_181029_114121883_002034">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </ComponentLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121883_002029" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG006">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT21M" SheetName="Bg_2_1" TotalDuration="PT1H33M36S" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Planschneider Polar XT 137" DeviceType="Planschneider Polar XT 137" FriendlyName="POL 137" ID="r_181029_114121883_002030" Status="Available">  
          <CostCenter CostCenterID="5120" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF DescriptiveName="Bg_2_1(XL105-8P)" ID="n_181029_114121883_002031" JobPartID="1031" Status="Waiting" Type="ConventionalPrinting" xsi:type="ConventionalPrinting">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121883_002032" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121883_002033" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink Usage="Output" rRef="r_181029_114121883_002034">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <AmountPool>
            <PartAmount Amount="6060">  
              <Part Condition="Good" SheetName="Bg_2_1" SignatureName="SIG006" />  
            </PartAmount>
            <PartAmount Amount="2200">  
              <Part Condition="Waste" SheetName="Bg_2_1" SignatureName="SIG006" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <ConventionalPrintingParamsLink Usage="Input" rRef="r_181029_114121883_002035" />  
        <DeviceLink Usage="Input" rRef="r_181029_114121883_002036">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </DeviceLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121883_002037">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </NodeInfoLink>
        <MediaLink Usage="Input" rRef="r_181029_114121525_001934">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </MediaLink>
        <ExposedMediaLink ProcessUsage="Plate" Usage="Input" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </ExposedMediaLink>
        <InkLink Usage="Input" rRef="r_181029_114121540_001937">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </InkLink>
        <ColorantControlLink Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </ColorantControlLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
        <PreviewLink Usage="Input" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        </PreviewLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121883_002037" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG006">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT8M24S" SheetName="Bg_2_1" TotalDuration="PT45M34S" />  
          </NodeInfo>
        </NodeInfo>
      </ResourcePool>
    </JDF>
    <JDF Category="MISPRE.PlateMaking" DescriptiveName="Bg_2(CTP TOP)" ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121899_002038" JobPartID="1038" Status="Waiting" Type="ProcessGroup" Types="Imposition RIPing PreviewGeneration ImageSetting" xsi:type="ProcessGroup">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121899_002039" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121899_002040" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ExposedMediaLink Amount="1" CombinedProcessIndex="3" Usage="Output" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </ExposedMediaLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121915_002041">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121915_002042" />  
        <RunListLink CombinedProcessIndex="0 2 3" ProcessUsage="Document" Usage="Input" rRef="r_181029_114121556_001947" />  
        <ApprovalSuccessLink CombinedProcessIndex="0 1 2 3" Usage="Input" rRef="r_181029_114121930_002046" />  
        <LayoutLink CombinedProcessIndex="0 1" Usage="Input" rRef="r_181029_114121571_001958" />  
        <RunListLink CombinedProcessIndex="0 2 3" ProcessUsage="Marks" Usage="Input" rRef="r_181029_114134254_002070" />  
        <PreviewLink ProcessUsage="Previews" Usage="Output" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </PreviewLink>
        <MediaLink CombinedProcessIndex="1 3" Usage="Input" rRef="r_181029_114121540_001935">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </MediaLink>
        <ColorantControlLink CombinedProcessIndex="1 2 3" Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </ColorantControlLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121915_002041" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG006">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_2_1" />  
          </NodeInfo>
          <NodeInfo SignatureName="SIG007">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_2_2" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Computer to Plate Tester TopSetter" DeviceType="Computer to Plate Tester TopSetter" FriendlyName="CTP TOP" ID="r_181029_114121915_002042" Status="Available">  
          <CostCenter CostCenterID="3400" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF Category="MISPRE.ImpositionProofing" DescriptiveName="Bg_2(CTP TOP)" ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121930_002043" JobPartID="1040" Status="Waiting" Type="ProcessGroup" Types="Imposition ProofImaging" xsi:type="ProcessGroup">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121930_002044" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121930_002045" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ApprovalSuccessLink CombinedProcessIndex="1" Usage="Output" rRef="r_181029_114121930_002046" />  
        <ExposedMediaLink Amount="1" CombinedProcessIndex="1" Usage="Output" rRef="r_181029_114121930_002047" />  
        <NodeInfoLink Usage="Input" rRef="r_181029_114121930_002048">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121930_002049" />  
        <LayoutLink CombinedProcessIndex="0 1" Usage="Input" rRef="r_181029_114121571_001958" />  
        <MediaLink CombinedProcessIndex="1" Usage="Input" rRef="r_181029_114134285_002074">  
          <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </MediaLink>
        <RunListLink CombinedProcessIndex="0 1" ProcessUsage="Document" Usage="Input" rRef="r_181029_114121556_001947" />  
        <RunListLink CombinedProcessIndex="0 1" ProcessUsage="Marks" Usage="Input" rRef="r_181029_114134254_002070" />  
        <ColorantControlLink CombinedProcessIndex="1" Usage="Input" rRef="r_181029_114121540_001938" />  
      </ResourceLinkPool>
      <ResourcePool>
        <ExposedMedia Class="Handling" ID="r_181029_114121930_002047" PartIDKeys="SignatureName SheetName" PartUsage="Explicit" ProofType="Imposition" Status="Unavailable">  
          <Media MediaType="Paper" />  
          <MediaRef rRef="r_181029_114134285_002074" />  
          <ExposedMedia SignatureName="SIG006">  
            <ExposedMedia SheetName="Bg_2_1" />  
          </ExposedMedia>
          <ExposedMedia SignatureName="SIG007">  
            <ExposedMedia SheetName="Bg_2_2" />  
          </ExposedMedia>
        </ExposedMedia>
        <NodeInfo Class="Parameter" ID="r_181029_114121930_002048" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG006">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_2_1" />  
          </NodeInfo>
          <NodeInfo SignatureName="SIG007">  
            <NodeInfo NodeStatus="Waiting" SheetName="Bg_2_2" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Computer to Plate Tester TopSetter" DeviceType="Computer to Plate Tester TopSetter" FriendlyName="CTP TOP" ID="r_181029_114121930_002049" Status="Available">  
          <CostCenter CostCenterID="3400" />  
        </Device>
        <Media Class="Consumable" ID="r_181029_114134285_002074" MediaType="Paper" PartIDKeys="SignatureName SheetName" Status="Available">  
          <Media SignatureName="SIG006">  
            <Media SheetName="Bg_2_1" />  
          </Media>
          <Media SignatureName="SIG007">  
            <Media SheetName="Bg_2_2" />  
          </Media>
        </Media>
      </ResourcePool>
    </JDF>
    <JDF Category="MISFin.SheetFin" DescriptiveName="Bg_2_2(POL 137)" HDM:SequenceType="SheetFinishing" ICSVersions="MISFIN_L1-1.3" ID="n_181029_114121961_002052" JobPartID="1036" Status="Waiting" Type="ProcessGroup" Types="HoleMaking" xsi:type="HoleMaking">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121961_002053" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121961_002054" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink CombinedProcessIndex="0" Usage="Output" rRef="r_181029_114121478_001912">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
          <AmountPool>
            <PartAmount Amount="6000">  
              <Part Condition="Good" SheetName="Bg_2_2" SignatureName="SIG007" />  
            </PartAmount>
            <PartAmount Amount="0">  
              <Part Condition="Waste" SheetName="Bg_2_2" SignatureName="SIG007" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121961_002055">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </NodeInfoLink>
        <DeviceLink Usage="Input" rRef="r_181029_114121961_002056" />  
        <ComponentLink CombinedProcessIndex="0" Usage="Input" rRef="r_181029_114121961_002060">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </ComponentLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121961_002055" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG007">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT21M" SheetName="Bg_2_2" TotalDuration="PT1H33M36S" />  
          </NodeInfo>
        </NodeInfo>
        <Device Class="Implementation" DescriptiveName="Planschneider Polar XT 137" DeviceType="Planschneider Polar XT 137" FriendlyName="POL 137" ID="r_181029_114121961_002056" Status="Available">  
          <CostCenter CostCenterID="5120" />  
        </Device>
      </ResourcePool>
    </JDF>
    <JDF DescriptiveName="Bg_2_2(XL105-8P)" ID="n_181029_114121961_002057" JobPartID="1037" Status="Waiting" Type="ConventionalPrinting" xsi:type="ConventionalPrinting">  
      <AuditPool>
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121961_002058" TimeStamp="2018-10-29T11:41:21+01:00" />  
        <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121961_002059" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
      </AuditPool>
      <ResourceLinkPool>
        <ComponentLink Usage="Output" rRef="r_181029_114121961_002060">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
          <AmountPool>
            <PartAmount Amount="6060">  
              <Part Condition="Good" SheetName="Bg_2_2" SignatureName="SIG007" />  
            </PartAmount>
            <PartAmount Amount="2200">  
              <Part Condition="Waste" SheetName="Bg_2_2" SignatureName="SIG007" />  
            </PartAmount>
          </AmountPool>
        </ComponentLink>
        <ConventionalPrintingParamsLink Usage="Input" rRef="r_181029_114121961_002061" />  
        <DeviceLink Usage="Input" rRef="r_181029_114121961_002062">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </DeviceLink>
        <NodeInfoLink Usage="Input" rRef="r_181029_114121961_002063">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </NodeInfoLink>
        <MediaLink Usage="Input" rRef="r_181029_114121525_001934">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </MediaLink>
        <ExposedMediaLink ProcessUsage="Plate" Usage="Input" rRef="r_181029_114121540_001936">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </ExposedMediaLink>
        <InkLink Usage="Input" rRef="r_181029_114121540_001937">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </InkLink>
        <ColorantControlLink Usage="Input" rRef="r_181029_114121540_001938">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </ColorantControlLink>
        <LayoutLink Usage="Input" rRef="r_181029_114121571_001958" />  
        <PreviewLink Usage="Input" rRef="r_181029_114134254_002071">  
          <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
        </PreviewLink>
      </ResourceLinkPool>
      <ResourcePool>
        <NodeInfo Class="Parameter" ID="r_181029_114121961_002063" PartIDKeys="SignatureName SheetName" PartUsage="Implicit" Status="Available">  
          <NodeInfo SignatureName="SIG007">  
            <NodeInfo NodeStatus="Waiting" SetupDuration="PT8M24S" SheetName="Bg_2_2" TotalDuration="PT45M34S" />  
          </NodeInfo>
        </NodeInfo>
      </ResourcePool>
    </JDF>
  </JDF>
  <JDF Category="MISPRE.PrePressPreparation" DescriptiveName="Gesamtes Produkt" ICSVersions="MISPRE_L1-1.3" ID="n_181029_114121556_001944" JobPartID="1039" Status="Waiting" Type="ProcessGroup" Types="PrePressPreparation" xsi:type="ProcessGroup">  
    <AuditPool>
      <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121556_001945" TimeStamp="2018-10-29T11:41:21+01:00" />  
      <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121556_001946" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
    </AuditPool>
    <ResourceLinkPool>
      <RunListLink CombinedProcessIndex="0" Usage="Output" rRef="r_181029_114121556_001947" />  
      <RunListLink CombinedProcessIndex="0" ProcessUsage="Document" Usage="Input" rRef="r_181029_114134285_002075" />  
    </ResourceLinkPool>
    <ResourcePool>
      <RunList Class="Parameter" DescriptiveName="The RunList" ID="r_181029_114134285_002075" NPage="100" Status="Available" />  
    </ResourcePool>
  </JDF>
  <JDF DescriptiveName="Bg_2(Stripping)" ID="n_181029_114121571_001955" JobPartID="1041" Status="Waiting" Type="Stripping" xsi:type="Stripping">  
    <AuditPool>
      <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" ID="a_181029_114121571_001956" TimeStamp="2018-10-29T11:41:21+01:00" />  
      <Created AgentName="CIP4 JDF Writer Java" AgentVersion="1.4a BLD 74" Author="ProcessEditorFrameWork" ID="a_181029_114121571_001957" TimeStamp="2018-10-29T11:41:21+01:00" XPath="." />  
    </AuditPool>
    <ResourceLinkPool>
      <LayoutLink Usage="Output" rRef="r_181029_114121571_001958" />  
      <StrippingParamsLink Usage="Input" rRef="r_181029_114121571_001959">  
        <Part SheetName="Bg_0" SignatureName="SIG001" />  
        <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
      </StrippingParamsLink>
      <AssemblyLink Usage="Input" rRef="r_181029_114121603_001961" />  
      <RunListLink ProcessUsage="Marks" Usage="Output" rRef="r_181029_114134254_002070" />  
    </ResourceLinkPool>
    <ResourcePool />
  </JDF>
</JDF>
Mitglied: 137443
137443 Oct 29, 2018 updated at 11:48:59 (UTC)
Goto Top
Zitat von @Jensxx1975:
Beim ersten Script habe ich ja noch halbwegs durchgeblickt, hier aber nicht mehr. Daher meine Frage: Soll das jetzt alles "erschlagen", also sämtliche Attribute von SheetName korrekt überschreiben?
Japp, holt sich alle Component Knoten mit einem Signature-Attribut und setzt in dessen Componentn Unterknoten den Inhalt vom Attribut SheetName auf den Inhalt des Signature Attributs. Der zusätzliche Overheat ist für die Namespaces beim Selektieren der Konten via XPath-Language.
Funktioniert beim Testlauf in meiner Umgebung leider nicht, siehe xml anbei.
Hier schon, wenn man die Fehler der Quell-XML wie ich oben schon geschrieben habe korrigiert! Diese XML ist nicht XML konform.
Test +Test + Test GmbH & Co. KG
Ist z.B. das & nicht escaped, usw..
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 11:50:27 (UTC)
Goto Top
Oh, sorry - das hatte ich überlesen.
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 12:31:03 (UTC)
Goto Top
Hallo nochmal,

ein Punkt bzgl der Knoten/Unterkonten verstehe ich noch nicht.

Hier funktioniert's

$xml.SelectNodes('default:Component[@SignatureName]',$ns) | %{$_.Component.SheetName = $_.SignatureName}

<Component SignatureName="SIG002">  
        <Component ComponentType="PartialProduct" HDM:P4SheetTypeNr="0" ProductType="Text" SheetName="SIG002" Status="Unavailable" /> </Component>  

hier auch:

$xml.SelectNodes('
default:Media[@SignatureName]',$ns) | %{$_.Media.SheetName = $_.SignatureName}

<Media SignatureName="SIG001">  
        <Media Brand="Maxigloss" DescriptiveName="Maxigloss" Dimension="2494.48818898 1785.82677165" Grade="1" GrainDirection="ShortEdge" HDM:RawDimension="2494.48818898 1785.82677165" ProductID="202-250-088063-01-5U" SheetName="SIG001" Thickness="200" Weight="250" />  
      </Media>

aber hier NICHT:

$xml.SelectNodes('//default:StrippingParamsLink[@SignatureName]',$ns) | %{$_.Part.SheetName = $_.SignatureName}

<ResourceLinkPool>
      <LayoutLink Usage="Output" rRef="r_181029_114121571_001958" />  
      <StrippingParamsLink Usage="Input" rRef="r_181029_114121571_001959">  
        <Part SheetName="Bg_0" SignatureName="SIG001" />  
        <Part SheetName="Bg_1_1" SignatureName="SIG002" />  
        <Part SheetName="Bg_1_2" SignatureName="SIG003" />  
        <Part SheetName="Bg_1_3" SignatureName="SIG004" />  
        <Part SheetName="Bg_1_4" SignatureName="SIG005" />  
        <Part SheetName="Bg_2_1" SignatureName="SIG006" />  
        <Part SheetName="Bg_2_2" SignatureName="SIG007" />  
      </StrippingParamsLink>
      <AssemblyLink Usage="Input" rRef="r_181029_114121603_001961" />  
      <RunListLink ProcessUsage="Marks" Usage="Output" rRef="r_181029_114134254_002070" />  
    </ResourceLinkPool>
    <ResourcePool />

Befindet sich ganz unten am kompletten xml.

Gruß JENS
Mitglied: 137443
Solution 137443 Oct 29, 2018 updated at 12:45:19 (UTC)
Goto Top
Ist ja dort auch ein anderer Unterknoten namens StrippingParamsLink in dem sich das Part befindet und auch kein übergeordneter Knoten mit SignatureName Attribut, da hilft keine Copy n' Paste face-wink
$xml.SelectNodes('//default:StrippingParamsLink/default:Part[@SignatureName]',$ns) | %{$_.SheetName = $_.SignatureName}  
XPath Tutorial
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 14:19:14 (UTC)
Goto Top
Copy n' Paste hilft oft, aber nicht immer.

Zumindest ist es mir gelungen eine Zeile selbst so umzustellen um den Wert eines anderen Attributs als "SheetName" zu verändern. face-smile

Das sieht für den Moment echt seeeehr gut aus. 1.000 Dank, da hätte ich vermutlich zwei Wochen zugebracht und meine Lösung wäre nicht halb so elegant ausgefallen.


Gruß JENS
Mitglied: 137443
137443 Oct 29, 2018 updated at 14:33:38 (UTC)
Goto Top
Na dann ...
Denk aber dran das die JDF Spezifikation noch zig weitere Elemente kennt die du hier gerade versuchst alle zu erfassen, aber in deinem Dokument nur noch nicht vorkommen!
Member: Jensxx1975
Jensxx1975 Oct 29, 2018 at 14:46:32 (UTC)
Goto Top
Ist mir bekannt, aber trotzdem Danke für den Hinweis.
Member: Jensxx1975
Jensxx1975 Oct 30, 2018 at 10:28:42 (UTC)
Goto Top
Hallo!

Ich habe doch noch eine Frage, aber vorweg: Mir reicht als Antwort nur „geht“ oder „geht nicht“ – die Lösung kann ich dann selbst suchen.
Ich erwarte/erhoffe hier kein neues/geändertes Script – Ich habe hier schon mehr Hilfe bekommen als ich erwarten durfte.

Zur Frage: Ist es möglich die Anzahl der Attribute „SheetName“ in den jeweiligen Containern (z.B. Component) zu ermitteln, einen Wert mit dem die Attribute „SheetName“ gefüllt werden sollen fest zu hinterlegen (z.B. xyz) und dann hochzuzählen (xyz_0, xyz_1) anstatt jetzt SIG001, SIG002.

Besten Dank vorab!


Gruß JENS
Mitglied: 137443
137443 Oct 30, 2018 updated at 10:32:43 (UTC)
Goto Top
Ja, geht......
# Variable definieren
$prefix = "xyz_"  

# Zählervariable erstellen
$cnt = 0
# dann in den obigen FOREACH-Schleife ausgeben und den Zähler darin hochzählen:
"$prefix$cnt"  
$cnt++
Member: Jensxx1975
Jensxx1975 Oct 30, 2018 at 14:17:09 (UTC)
Goto Top
# Variable definieren
    $prefix = "xyz_"  

    # Zählervariable erstellen
    $cnt = 0

    $xml.SelectNodes('//default:Component[@SignatureName]',$ns) | %{$_.Component.SheetName = "$prefix_$cnt" $cnt++}  

So?
Mitglied: 137443
137443 Oct 30, 2018 at 14:24:27 (UTC)
Goto Top
Nicht ganz, die zwei Befehle in der Schleife entweder mit Zeilenumbruch trennen oder ein Semikolon dazwischen setzen.
Member: Jensxx1975
Jensxx1975 Oct 30, 2018 at 14:38:42 (UTC)
Goto Top
...und welchen Kunstgriff muss ich anwenden um nicht 0,1, 2, 3 sondern 00, 01, 02, 03 hochzuzählen face-smile
Mitglied: 137443
137443 Oct 30, 2018 updated at 14:45:14 (UTC)
Goto Top
Kindergartenfragestunde oder was
"$prefix_$($cnt.toString().padleft(2,'0'))"  
Member: Jensxx1975
Jensxx1975 Oct 30, 2018 at 15:19:53 (UTC)
Goto Top
Kindergartenfragestunde oder was

...wenn man so will. Was scripten angeht bin ich vermutlich tatsächlich noch im Kindergarten.

Danke nochmal


Gruß JENS
Member: Jensxx1975
Jensxx1975 Oct 31, 2018 updated at 14:24:18 (UTC)
Goto Top
Hallo!

Ich muss nochmal nerven face-smile

Im Laufe der Testphase hat sich gezeigt, dass unter gewissen Umständen der Wert des Attributs "SheetName" innerhalb eines Containrer teilweise nicht geändert werden soll.

Mein Versuch:
 $xml.SelectNodes('//default:Component[@SignatureName]',$ns) | if ($_.Component.SheetName -eq "Bg_0") {$_.Component.SheetName = "Bg_0"} [else] | %{$_.Component.SheetName = "$prefix$($cnt.toString().padleft(2,'0'))"; $cnt++}  

Wirft leider eine Fehlermeldung:
if : Die Benennung "if" wurde nicht als Name eines Cmdlet, einer Funktion, einer Skriptdatei oder eines ausführbaren Programms erkannt. Überprüfen Sie die Schreibweise des Namens, oder ob der Pfad korrekt ist (sofern enthalten), und wiederholen Sie den
Vorgang.

Danke!

Gruß JENS